feat(@vben/web-antd): erp-product 新增产品管理功能,包括表单、列表及相关操作

pull/198/head
xuzhiqiang 2025-08-14 16:17:05 +08:00
parent 7fb9f6e064
commit 5076e3ff72
3 changed files with 445 additions and 21 deletions

View File

@ -0,0 +1,220 @@
import type { VbenFormSchema } from '#/adapter/form';
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import { handleTree } from '@vben/utils';
import { z } from '#/adapter/form';
import { getProductCategorySimpleList } from '#/api/erp/product/category';
import { getProductUnitSimpleList } from '#/api/erp/product/unit';
import { CommonStatusEnum, DICT_TYPE, getDictOptions } from '#/utils';
/** 新增/修改的表单 */
export function useFormSchema(): VbenFormSchema[] {
return [
{
component: 'Input',
fieldName: 'id',
dependencies: {
triggerFields: [''],
show: () => false,
},
},
{
component: 'Input',
fieldName: 'name',
label: '名称',
rules: 'required',
componentProps: {
placeholder: '请输入名称',
},
},
{
fieldName: 'barCode',
label: '条码',
component: 'Input',
rules: 'required',
componentProps: {
placeholder: '请输入条码',
},
},
{
fieldName: 'categoryId',
label: '分类',
component: 'ApiTreeSelect',
componentProps: {
api: async () => {
const data = await getProductCategorySimpleList();
return handleTree(data);
},
labelField: 'name',
valueField: 'id',
childrenField: 'children',
placeholder: '请选择分类',
treeDefaultExpandAll: true,
},
rules: 'required',
},
{
fieldName: 'unitId',
label: '单位',
component: 'ApiSelect',
componentProps: {
api: getProductUnitSimpleList,
labelField: 'name',
valueField: 'id',
placeholder: '请选择单位',
},
rules: 'required',
},
{
fieldName: 'status',
label: '状态',
component: 'RadioGroup',
componentProps: {
options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'),
buttonStyle: 'solid',
optionType: 'button',
},
rules: z.number().default(CommonStatusEnum.ENABLE),
},
{
fieldName: 'standard',
label: '规格',
component: 'Input',
componentProps: {
placeholder: '请输入规格',
},
},
{
fieldName: 'expiryDay',
label: '保质期天数',
component: 'InputNumber',
componentProps: {
placeholder: '请输入保质期天数',
},
},
{
fieldName: 'weight',
label: '重量kg',
component: 'InputNumber',
componentProps: {
placeholder: '请输入重量kg',
},
},
{
fieldName: 'purchasePrice',
label: '采购价格',
component: 'InputNumber',
componentProps: {
placeholder: '请输入采购价格,单位:元',
},
},
{
fieldName: 'salePrice',
label: '销售价格',
component: 'InputNumber',
componentProps: {
placeholder: '请输入销售价格,单位:元',
},
},
{
fieldName: 'minPrice',
label: '最低价格',
component: 'InputNumber',
componentProps: {
placeholder: '请输入最低价格,单位:元',
},
},
{
fieldName: 'remark',
label: '备注',
component: 'Textarea',
},
];
}
/** 列表的搜索表单 */
export function useGridFormSchema(): VbenFormSchema[] {
return [
{
fieldName: 'name',
label: '名称',
component: 'Input',
},
{
fieldName: 'categoryId',
label: '分类',
component: 'ApiTreeSelect',
componentProps: {
api: async () => {
const data = await getProductCategorySimpleList();
return handleTree(data);
},
labelField: 'name',
valueField: 'id',
childrenField: 'children',
placeholder: '请选择分类',
treeDefaultExpandAll: true,
},
},
];
}
/** 列表的字段 */
export function useGridColumns(): VxeTableGridOptions['columns'] {
return [
{
field: 'barCode',
title: '条码',
},
{
field: 'name',
title: '名称',
},
{
field: 'standard',
title: '规格',
},
{
field: 'categoryName',
title: '分类',
},
{
field: 'unitName',
title: '单位',
},
{
field: 'purchasePrice',
title: '采购价格',
},
{
field: 'salePrice',
title: '销售价格',
},
{
field: 'minPrice',
title: '最低价格',
},
{
field: 'status',
title: '状态',
cellRender: {
name: 'CellDict',
props: { type: DICT_TYPE.COMMON_STATUS },
},
},
{
field: 'createTime',
title: '创建时间',
formatter: 'formatDateTime',
},
{
title: '操作',
width: 130,
fixed: 'right',
slots: { default: 'actions' },
},
];
}

View File

@ -1,34 +1,152 @@
<script lang="ts" setup> <script lang="ts" setup>
import { DocAlert, Page } from '@vben/common-ui'; import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { ErpProductApi } from '#/api/erp/product/product';
import { Button } from 'ant-design-vue'; import { DocAlert, Page, useVbenModal } from '@vben/common-ui';
import { downloadFileFromBlobPart } from '@vben/utils';
import { message } from 'ant-design-vue';
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
import {
deleteProduct,
exportProduct,
getProductPage,
} from '#/api/erp/product/product';
import { $t } from '#/locales';
import { useGridColumns, useGridFormSchema } from './data';
import Form from './modules/form.vue';
const [FormModal, formModalApi] = useVbenModal({
connectedComponent: Form,
destroyOnClose: true,
});
/** 刷新表格 */
function onRefresh() {
gridApi.query();
}
/** 导出表格 */
async function handleExport() {
const data = await exportProduct(await gridApi.formApi.getValues());
downloadFileFromBlobPart({ fileName: '产品信息.xls', source: data });
}
/** 创建产品 */
function handleCreate() {
formModalApi.setData(null).open();
}
/** 编辑产品 */
function handleEdit(row: ErpProductApi.Product) {
formModalApi.setData(row).open();
}
/** 删除产品 */
async function handleDelete(row: ErpProductApi.Product) {
const hideLoading = message.loading({
content: $t('ui.actionMessage.deleting', [row.name]),
key: 'action_key_msg',
});
try {
await deleteProduct(row.id as number);
message.success({
content: $t('ui.actionMessage.deleteSuccess', [row.name]),
key: 'action_key_msg',
});
onRefresh();
} finally {
hideLoading();
}
}
const [Grid, gridApi] = useVbenVxeGrid({
formOptions: {
schema: useGridFormSchema(),
},
gridOptions: {
columns: useGridColumns(),
height: 'auto',
keepSource: true,
proxyConfig: {
ajax: {
query: async ({ page }, formValues) => {
return await getProductPage({
pageNo: page.currentPage,
pageSize: page.pageSize,
...formValues,
});
},
},
},
rowConfig: {
keyField: 'id',
isHover: true,
},
toolbarConfig: {
refresh: true,
search: true,
},
} as VxeTableGridOptions<ErpProductApi.Product>,
});
</script> </script>
<template> <template>
<Page> <Page auto-content-height>
<template #doc> <template #doc>
<DocAlert <DocAlert
title="【产品】产品信息、分类、单位" title="【产品】产品信息、分类、单位"
url="https://doc.iocoder.cn/erp/product/" url="https://doc.iocoder.cn/erp/product/"
/> />
</template> </template>
<Button <FormModal @success="onRefresh" />
danger <Grid table-title="">
type="link" <template #toolbar-tools>
target="_blank" <TableAction
href="https://github.com/yudaocode/yudao-ui-admin-vue3" :actions="[
> {
该功能支持 Vue3 + element-plus 版本 label: $t('ui.actionTitle.create', ['产品']),
</Button> type: 'primary',
<br /> icon: ACTION_ICON.ADD,
<Button auth: ['erp:product:create'],
type="link" onClick: handleCreate,
target="_blank" },
href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/product/product/index" {
> label: $t('ui.actionTitle.export'),
可参考 type: 'primary',
https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/erp/product/product/index icon: ACTION_ICON.DOWNLOAD,
代码pull request 贡献给我们 auth: ['erp:product:export'],
</Button> onClick: handleExport,
},
]"
/>
</template>
<template #actions="{ row }">
<TableAction
:actions="[
{
label: $t('common.edit'),
type: 'link',
icon: ACTION_ICON.EDIT,
auth: ['erp:product:update'],
onClick: handleEdit.bind(null, row),
},
{
label: $t('common.delete'),
type: 'link',
danger: true,
icon: ACTION_ICON.DELETE,
auth: ['erp:product:delete'],
popConfirm: {
title: $t('ui.actionMessage.deleteConfirm', [row.name]),
confirm: handleDelete.bind(null, row),
},
},
]"
/>
</template>
</Grid>
</Page> </Page>
</template> </template>

View File

@ -0,0 +1,86 @@
<script lang="ts" setup>
import type { ErpProductApi } from '#/api/erp/product/product';
import { computed, ref } from 'vue';
import { useVbenModal } from '@vben/common-ui';
import { message } from 'ant-design-vue';
import { useVbenForm } from '#/adapter/form';
import {
createProduct,
getProduct,
updateProduct,
} from '#/api/erp/product/product';
import { $t } from '#/locales';
import { useFormSchema } from '../data';
const emit = defineEmits(['success']);
const formData = ref<ErpProductApi.Product>();
const getTitle = computed(() => {
return formData.value?.id
? $t('ui.actionTitle.edit', ['产品'])
: $t('ui.actionTitle.create', ['产品']);
});
const [Form, formApi] = useVbenForm({
commonConfig: {
componentProps: {
class: 'w-full',
},
},
// 2
wrapperClass: 'grid-cols-2',
layout: 'horizontal',
schema: useFormSchema(),
showDefaultActions: false,
});
const [Modal, modalApi] = useVbenModal({
async onConfirm() {
const { valid } = await formApi.validate();
if (!valid) {
return;
}
modalApi.lock();
//
const data = (await formApi.getValues()) as ErpProductApi.Product;
try {
await (formData.value?.id ? updateProduct(data) : createProduct(data));
//
await modalApi.close();
emit('success');
message.success($t('ui.actionMessage.operationSuccess'));
} finally {
modalApi.unlock();
}
},
async onOpenChange(isOpen: boolean) {
if (!isOpen) {
formData.value = undefined;
return;
}
//
const data = modalApi.getData<ErpProductApi.Product>();
if (!data || !data.id) {
return;
}
modalApi.lock();
try {
formData.value = await getProduct(data.id as number);
// values
await formApi.setValues(formData.value);
} finally {
modalApi.unlock();
}
},
});
</script>
<template>
<Modal class="w-2/5" :title="getTitle">
<Form class="mx-4" />
</Modal>
</template>