调优化供应商用户列表的请求接口和加载状态处理。
This commit is contained in:
@ -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>
|
||||
);
|
||||
|
Reference in New Issue
Block a user