src/views/basicData/mdm/unit/data.ts
@@ -128,4 +128,28 @@ slots: { default: 'actions' }, }, ]; } /** 计量单位导入的表单 */ export function useImportFormSchema(): VbenFormSchema[] { return [ { fieldName: 'file', label: '单位数据', component: 'Upload', rules: 'required', help: '仅允许导入 xls、xlsx 格式文件', }, { fieldName: 'updateSupport', label: '是否覆盖', component: 'Switch', componentProps: { checkedChildren: '是', unCheckedChildren: '否', }, rules: z.boolean().default(false), help: '是否更新已经存在的单位数据', }, ]; }