搜索中单位deptId换成orgId
This commit is contained in:
@ -18,6 +18,7 @@ import tableProps from '@/utils/tableProps'
|
||||
interface Data {
|
||||
id: string;
|
||||
deptId: string;
|
||||
orgId: string;
|
||||
accessTypeText: string;
|
||||
createTime: string;
|
||||
approveStatus: string;
|
||||
@ -132,7 +133,7 @@ const SupplierCategoryEntry: React.FC = () => {
|
||||
<Form.Item name="accessType" label="准入方式">
|
||||
<AdmissionTypeSelect/>
|
||||
</Form.Item>
|
||||
<Form.Item name="deptId" label="准入单位">
|
||||
<Form.Item name="orgId" label="准入单位">
|
||||
<AccessDepartmentSelect placeholder={'请选择准入单位'} />
|
||||
</Form.Item>
|
||||
<Form.Item name="categoryId" label="准入品类">
|
||||
|
@ -1,5 +1,5 @@
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import { Form, Select, Button, Table, Space } from 'antd';
|
||||
import { Form, Button, Table, Space } from 'antd';
|
||||
import { SearchOutlined, DeleteOutlined } from '@ant-design/icons';
|
||||
import type { ColumnsType, TablePaginationConfig } from 'antd/es/table';
|
||||
//查看弹窗
|
||||
@ -16,6 +16,7 @@ import tableProps from '@/utils/tableProps'
|
||||
interface Data {
|
||||
id: string;
|
||||
deptId: string;
|
||||
orgId: string;
|
||||
accessTypeText: string;
|
||||
createTime: string;
|
||||
approveStatus: string;
|
||||
@ -99,7 +100,7 @@ const SupplierCategoryEntryReview: React.FC = () => {
|
||||
<Form.Item name="accessType" label="准入方式">
|
||||
<AdmissionTypeSelect/>
|
||||
</Form.Item>
|
||||
<Form.Item name="deptId" label="准入单位">
|
||||
<Form.Item name="orgId" label="准入单位">
|
||||
<AccessDepartmentSelect placeholder={'请选择准入单位'} />
|
||||
</Form.Item>
|
||||
<Form.Item name="categoryId" label="准入品类">
|
||||
|
@ -20,6 +20,7 @@ import tableProps from '@/utils/tableProps'
|
||||
interface Data {
|
||||
id: string;
|
||||
deptId: string;
|
||||
orgId: string;
|
||||
accessTypeText: string;
|
||||
createTime: string;
|
||||
approveStatus: string;
|
||||
@ -140,7 +141,7 @@ const AccessManagement: React.FC = () => {
|
||||
<Form.Item name="accessType" label="准入方式">
|
||||
<AdmissionTypeSelect />
|
||||
</Form.Item>
|
||||
<Form.Item name="deptId" label="准入单位">
|
||||
<Form.Item name="orgId" label="准入单位">
|
||||
<AccessDepartmentSelect placeholder={'请选择准入单位'} />
|
||||
</Form.Item>
|
||||
<Form.Item name="categoryId" label="准入品类">
|
||||
|
Reference in New Issue
Block a user