调优化供应商用户列表的请求接口和加载状态处理。

This commit is contained in:
刘倡
2025-08-05 17:39:05 +08:00
parent 6eaf1c7397
commit b06c637ec4
5 changed files with 105 additions and 59 deletions

View File

@ -23,12 +23,18 @@ const Index: React.FC<{}> = () => {
{
title: '组织名称',
dataIndex: 'orgName',
width: '45%',
width: '35%',
},
{
title: '组织全称',
dataIndex: 'orgFullName',
width: '40%',
width: '30%',
hideInSearch: true,
},
{
title: '公司级别',
dataIndex: 'companyLevelText',
width: '25%',
hideInSearch: true,
},
{
@ -132,6 +138,12 @@ const Index: React.FC<{}> = () => {
<Form.Item label="组织编码" name="orgNum" rules={[{ required: true }]}>
<Input />
</Form.Item>
<Form.Item label="公司级别代码" name="companyLevelCode">
<Input placeholder="请输入公司级别代码" />
</Form.Item>
<Form.Item label="公司级别名称" name="companyLevelText">
<Input placeholder="请输入公司级别名称" />
</Form.Item>
</Form>
</Modal>
);