feat(@vben/web-antd): erp-purchase-supplier-供应商管理页面

- 移除状态字段,增加联系电话字段
- 调整供应商列表的展示逻辑
- 优化搜索和导出功能
- 使用 useVbenVxeGrid 替代原有的表格实现
- 用 downloadFileFromBlobPart 处理文件下载
This commit is contained in:
nehc
2025-07-30 14:32:32 +08:00
parent 93c0d9e486
commit 33cec7caee
3 changed files with 26 additions and 95 deletions

View File

@@ -163,13 +163,12 @@ export function useGridFormSchema(): VbenFormSchema[] {
},
},
{
fieldName: 'status',
label: '状态',
component: 'Select',
fieldName: 'telephone',
label: '联系电话',
component: 'Input',
componentProps: {
placeholder: '请选择状态',
placeholder: '请输入联系电话',
allowClear: true,
options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'),
},
},
];