会议管理

This commit is contained in:
FLL
2025-07-05 17:47:26 +08:00
parent ddf8251ce8
commit 1d7fbf78b6
15 changed files with 309 additions and 507 deletions

View File

@@ -40,6 +40,11 @@ export const columns: VxeGridProps['columns'] = [
{
title: '单位',
field: 'unit',
slots: {
default: ({ row }) => {
return renderDict(row.unit, 'pro_product_unit');
},
},
},
{
title: '类型',
@@ -93,8 +98,11 @@ export const modalSchema: FormSchemaGetter = () => [
{
label: '单位',
fieldName: 'unit',
component: 'Input',
rules: 'required',
component: 'Select',
componentProps: {
options: getDictOptions('pro_product_unit'),
},
rules: 'selectRequired',
},
{
label: '类型',