feat:【antd】【erp 系统】supplier 迁移

This commit is contained in:
YunaiV
2025-10-03 10:12:00 +08:00
parent eeb1f1ebf9
commit 85b6d0c4d6
3 changed files with 36 additions and 47 deletions

View File

@@ -1,9 +1,11 @@
import type { VbenFormSchema } from '#/adapter/form';
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import { DICT_TYPE } from '@vben/constants';
import { CommonStatusEnum, DICT_TYPE } from '@vben/constants';
import { getDictOptions } from '@vben/hooks';
import { z } from '#/adapter/form';
/** 新增/修改的表单 */
export function useFormSchema(): VbenFormSchema[] {
return [
@@ -19,10 +21,10 @@ export function useFormSchema(): VbenFormSchema[] {
fieldName: 'name',
label: '供应商名称',
component: 'Input',
rules: 'required',
componentProps: {
placeholder: '请输入供应商名称',
},
rules: 'required',
},
{
fieldName: 'contact',
@@ -70,9 +72,11 @@ export function useFormSchema(): VbenFormSchema[] {
component: 'RadioGroup',
componentProps: {
options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'),
buttonStyle: 'solid',
optionType: 'button',
},
rules: 'required',
defaultValue: 0,
defaultValue: CommonStatusEnum.ENABLE,
},
{
fieldName: 'sort',
@@ -80,11 +84,8 @@ export function useFormSchema(): VbenFormSchema[] {
component: 'InputNumber',
componentProps: {
placeholder: '请输入排序',
precision: 0,
class: 'w-full',
},
rules: 'required',
defaultValue: 0,
},
{
fieldName: 'taxNo',
@@ -102,7 +103,6 @@ export function useFormSchema(): VbenFormSchema[] {
placeholder: '请输入税率',
min: 0,
precision: 2,
class: 'w-full',
},
},
{
@@ -206,7 +206,7 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
{
field: 'status',
title: '状态',
width: 100,
minWidth: 100,
cellRender: {
name: 'CellDict',
props: { type: DICT_TYPE.COMMON_STATUS },
@@ -215,7 +215,7 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
{
field: 'sort',
title: '排序',
width: 80,
minWidth: 80,
},
{
field: 'remark',
@@ -224,10 +224,9 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
showOverflow: 'tooltip',
},
{
field: 'actions',
title: '操作',
width: 130,
fixed: 'right',
width: 160,
slots: { default: 'actions' },
},
];