generated from Leo_Ding/web-template
251 lines
9.8 KiB
Vue
251 lines
9.8 KiB
Vue
<template>
|
|
<x-search-bar class="mb-8-2">
|
|
<template #default="{ gutter, colSpan }">
|
|
<a-form :model="searchFormData" layout="inline">
|
|
<a-row :gutter="gutter">
|
|
<!-- <a-col v-bind="colSpan">
|
|
<a-form-item label="产品类别名称" name="title">
|
|
<a-input placeholder="请输入产品名称" v-model:value="searchFormData.title"></a-input>
|
|
</a-form-item>
|
|
</a-col> -->
|
|
<a-col v-bind="colSpan">
|
|
<a-form-item label="产品名称" name="code">
|
|
<a-input placeholder="请输入产品名称" v-model:value="searchFormData.code"></a-input>
|
|
</a-form-item>
|
|
</a-col>
|
|
|
|
<a-col v-bind="colSpan">
|
|
<a-form-item label="状态" name="status">
|
|
<a-select v-model:value="searchFormData.status" allowClear>
|
|
<a-select-option value="">全部</a-select-option>
|
|
<a-select-option value="enabled">启用</a-select-option>
|
|
<a-select-option value="disabled">停用</a-select-option>
|
|
</a-select>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col class="align-right" v-bind="colSpan">
|
|
<a-space>
|
|
<a-button @click="handleResetSearch">{{ $t('button.reset') }}</a-button>
|
|
<a-button ghost type="primary" @click="handleSearch">
|
|
{{ $t('button.search') }}
|
|
</a-button>
|
|
</a-space>
|
|
</a-col>
|
|
</a-row>
|
|
</a-form>
|
|
</template>
|
|
</x-search-bar>
|
|
<a-row :gutter="8" :wrap="false">
|
|
<a-col flex="auto">
|
|
<a-card type="flex">
|
|
<x-action-bar class="mb-8-2">
|
|
<a-button type="primary" @click="$refs.editDialogRef.handleCreate()">
|
|
<template #icon>
|
|
<plus-outlined></plus-outlined>
|
|
</template>
|
|
新增产品
|
|
</a-button>
|
|
</x-action-bar>
|
|
<a-table :columns="columns" :data-source="listData" bordered="true" :loading="loading"
|
|
:pagination="paginationState" :scroll="{ x: 1000 }" @change="onTableChange">
|
|
<template #bodyCell="{ column, record }">
|
|
<template v-if="column.dataIndex === 'title'">
|
|
<a-tooltip :title="record.title">
|
|
<div class="text-ellipsis">{{ record.title }}</div>
|
|
</a-tooltip>
|
|
</template>
|
|
<template v-if="column.dataIndex === 'categoryID'">
|
|
<a-tooltip :title="record.categoryID">
|
|
<div class="text-ellipsis">{{ record.categoryID }}</div>
|
|
</a-tooltip>
|
|
</template>
|
|
<template v-if="column.dataIndex === 'target'">
|
|
<a-tooltip :title="record.target">
|
|
<div class="text-ellipsis">{{ record.target }}</div>
|
|
</a-tooltip>
|
|
</template>
|
|
<template v-if="column.dataIndex === 'CategoryRootID'">
|
|
<a-tooltip :title="record.CategoryRootID">
|
|
<div class="text-ellipsis">{{ record.CategoryRootID }}</div>
|
|
</a-tooltip>
|
|
</template>
|
|
<template v-if="column.dataIndex === 'compose'">
|
|
<a-tooltip :title="record.compose">
|
|
<div class="text-ellipsis">{{ record.compose }}</div>
|
|
</a-tooltip>
|
|
</template>
|
|
<template v-if="'mainImage' === column.dataIndex">
|
|
<a-image :width="60" :alt="column.title" :src="config('http.apiBasic') + record.mainImage || $imageErr.imgErr" />
|
|
</template>
|
|
<template v-if="'contentImage' === column.dataIndex">
|
|
<a-image :width="60" :alt="column.title" :src="config('http.apiBasic') + record.contentImage || $imageErr.imgErr" />
|
|
</template>
|
|
<template v-if="'status' === column.dataIndex">
|
|
<a-tag v-if="record.status === 'enabled'" :color="'green'">启用</a-tag>
|
|
<a-tag v-if="record.status === 'disabled'" :color="'red'">停用</a-tag>
|
|
</template>
|
|
|
|
<template v-if="'action' === column.key">
|
|
<x-action-button @click="$refs.editDialogRef.handleEdit(record)">
|
|
<a-tooltip>
|
|
<template #title> {{ $t('pages.system.user.edit') }}</template>
|
|
<edit-outlined /> </a-tooltip></x-action-button>
|
|
<x-action-button @click="handleDelete(record)">
|
|
<a-tooltip>
|
|
<template #title>{{ $t('pages.system.delete') }}</template>
|
|
<delete-outlined style="color: #ff4d4f" /> </a-tooltip></x-action-button>
|
|
</template>
|
|
</template>
|
|
</a-table>
|
|
</a-card>
|
|
</a-col>
|
|
</a-row>
|
|
|
|
<edit-dialog ref="editDialogRef" @ok="onOk"></edit-dialog>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { message, Modal } from 'ant-design-vue'
|
|
import { ref } from 'vue'
|
|
import apis from '@/apis'
|
|
import { formatUtcDateTime } from '@/utils/util'
|
|
import { config } from '@/config'
|
|
import { statusUserTypeEnum } from '@/enums/system'
|
|
import { usePagination } from '@/hooks'
|
|
|
|
import EditDialog from './components/EditDialog.vue'
|
|
import { PlusOutlined, EditOutlined, DeleteOutlined } from '@ant-design/icons-vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
import { delProductsItem, getProductsList } from '@/apis/modules/products'
|
|
defineOptions({
|
|
name: 'components',
|
|
})
|
|
const { t } = useI18n() // 解构出t方法
|
|
const columns = [
|
|
{ title: '产品名称', dataIndex: 'code', width: 120, ellipsis:true},
|
|
{ title: '产品类别', dataIndex: 'categoryRootName', key: 'categoryRootName', width: 120 },
|
|
{ title: '适用对象', dataIndex: 'target', width: 120 },
|
|
{ title: '原料组成', dataIndex: 'compose', key: 'compose', width: 120 },
|
|
// {
|
|
// title: '产品标准',
|
|
// dataIndex: 'standard',
|
|
// width: 120,
|
|
// align: 'center',
|
|
// customRender: ({ text }) => Array.isArray(text)
|
|
// ? text.map(item => `${item.label}: ${item.fu_hoao}${item.val}${item.prx}`).join(', ')
|
|
// : ''
|
|
// },
|
|
// {
|
|
// title: '产品图片',
|
|
// dataIndex: 'mainImage',
|
|
// width: 120,
|
|
// align: 'center',
|
|
// },
|
|
// {
|
|
// title: '产品内容图片',
|
|
// dataIndex: 'contentImage',
|
|
// width: 120,
|
|
// align: 'center',
|
|
// },
|
|
|
|
{ title: '产品排序', dataIndex: 'sequence', width: 120, align: 'center' },
|
|
{ title: '产品状态', dataIndex: 'status', width: 120, align: 'center' },
|
|
{ title: t('button.action'), key: 'action', fixed: 'right', width: 100, align: 'center' },
|
|
]
|
|
const { listData, loading, showLoading, hideLoading, paginationState, resetPagination, searchFormData } =
|
|
usePagination()
|
|
|
|
const editDialogRef = ref()
|
|
getPageList()
|
|
/**
|
|
* 获取用户列表
|
|
* @returns {Promise<void>}
|
|
*/
|
|
async function getPageList() {
|
|
try {
|
|
showLoading()
|
|
const { pageSize, current } = paginationState
|
|
const { success, data, total } = await apis.products
|
|
.getProductsList({
|
|
pageSize,
|
|
current:current,
|
|
...searchFormData.value,
|
|
})
|
|
.catch(() => {
|
|
throw new Error()
|
|
})
|
|
hideLoading()
|
|
if (config('http.code.success') === success) {
|
|
listData.value = data.map(item => ({
|
|
...item,
|
|
}))
|
|
paginationState.total = total
|
|
}
|
|
} catch (error) {
|
|
hideLoading()
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 删除
|
|
*/
|
|
function handleDelete({ id }) {
|
|
Modal.confirm({
|
|
title: t('pages.system.user.delTip'),
|
|
content: t('button.confirm'),
|
|
okText: t('button.confirm'),
|
|
onOk: () => {
|
|
return new Promise((resolve, reject) => {
|
|
; (async () => {
|
|
try {
|
|
const { success } = await apis.products.delProductsItem(id).catch(() => {
|
|
throw new Error()
|
|
})
|
|
if (config('http.code.success') === success) {
|
|
resolve()
|
|
message.success(t('component.message.success.delete'))
|
|
await getPageList()
|
|
}
|
|
} catch (error) {
|
|
reject()
|
|
}
|
|
})()
|
|
})
|
|
},
|
|
})
|
|
}
|
|
|
|
/**
|
|
* 分页
|
|
*/
|
|
function onTableChange({ current, pageSize }) {
|
|
paginationState.current = current
|
|
paginationState.pageSize = pageSize
|
|
getPageList()
|
|
}
|
|
|
|
/**
|
|
* 搜索
|
|
*/
|
|
function handleSearch() {
|
|
resetPagination()
|
|
getPageList()
|
|
}
|
|
/**
|
|
* 重置
|
|
*/
|
|
function handleResetSearch() {
|
|
searchFormData.value = {}
|
|
resetPagination()
|
|
getPageList()
|
|
}
|
|
/**
|
|
* 编辑完成
|
|
*/
|
|
async function onOk() {
|
|
await getPageList()
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped></style>
|