准入单位
This commit is contained in:
@ -8,6 +8,7 @@ import ViewModal from './components/ViewModal';
|
||||
import CreateModal from './components/CreateModal';
|
||||
import CategorySelector from '@/components/CategorySelector';
|
||||
import AdmissionTypeSelect from '@/components/CommonSelect/AdmissionTypeSelect';
|
||||
import AccessDepartmentSelect from "@/components/AccessDepartmentSelect"
|
||||
//接口
|
||||
import { getPage, startApprove } from './services'
|
||||
import { getDictList } from '@/servers/api/dicts'
|
||||
@ -132,8 +133,7 @@ const SupplierCategoryEntry: React.FC = () => {
|
||||
<AdmissionTypeSelect/>
|
||||
</Form.Item>
|
||||
<Form.Item name="deptId" label="准入单位">
|
||||
<Select style={{ width: 150 }} placeholder="请选择" allowClear>
|
||||
</Select>
|
||||
<AccessDepartmentSelect placeholder={'请选择准入单位'} />
|
||||
</Form.Item>
|
||||
<Form.Item name="categoryId" label="准入品类">
|
||||
<CategorySelector multiple={false} style={{ width: 150 }} />
|
||||
|
@ -7,6 +7,7 @@ import ViewModal from './components/ViewModal';
|
||||
import CategorySelector from '@/components/CategorySelector';
|
||||
import AdmissionTypeSelect from '@/components/CommonSelect/AdmissionTypeSelect';
|
||||
import AccessStatusSelect from '@/components/CommonSelect/AccessStatusSelect';
|
||||
import AccessDepartmentSelect from "@/components/AccessDepartmentSelect"
|
||||
//接口
|
||||
import { getPage } from './services'
|
||||
//统一列表分页
|
||||
@ -99,8 +100,7 @@ const SupplierCategoryEntryReview: React.FC = () => {
|
||||
<AdmissionTypeSelect/>
|
||||
</Form.Item>
|
||||
<Form.Item name="deptId" label="准入单位">
|
||||
<Select style={{ width: 150 }} placeholder="请选择" allowClear>
|
||||
</Select>
|
||||
<AccessDepartmentSelect placeholder={'请选择准入单位'} />
|
||||
</Form.Item>
|
||||
<Form.Item name="categoryId" label="准入品类">
|
||||
<CategorySelector multiple={false} style={{ width: 150 }} />
|
||||
|
@ -1,5 +1,5 @@
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import { Form, Select, Button, Table, Space, Modal, message } from 'antd';
|
||||
import { Form, Button, Table, Space, Modal, message } from 'antd';
|
||||
import { SearchOutlined, DeleteOutlined } from '@ant-design/icons';
|
||||
import type { ColumnsType, TablePaginationConfig } from 'antd/es/table';
|
||||
//查看弹窗
|
||||
@ -11,6 +11,7 @@ import CreateModal from './components/CreateModal';
|
||||
import CategorySelector from '@/components/CategorySelector';
|
||||
import AdmissionTypeSelect from '@/components/CommonSelect/AdmissionTypeSelect';
|
||||
import AccessStatusSelect from '@/components/CommonSelect/AccessStatusSelect';
|
||||
import AccessDepartmentSelect from "@/components/AccessDepartmentSelect"
|
||||
//接口
|
||||
import { getPage, startApprove } from './services'
|
||||
//统一列表分页
|
||||
@ -140,8 +141,7 @@ const AccessManagement: React.FC = () => {
|
||||
<AdmissionTypeSelect />
|
||||
</Form.Item>
|
||||
<Form.Item name="deptId" label="准入单位">
|
||||
<Select style={{ width: 150 }} placeholder="请选择" allowClear>
|
||||
</Select>
|
||||
<AccessDepartmentSelect placeholder={'请选择准入单位'} />
|
||||
</Form.Item>
|
||||
<Form.Item name="categoryId" label="准入品类">
|
||||
<CategorySelector multiple={false} style={{ width: 150 }} />
|
||||
|
@ -7,6 +7,7 @@ import { SearchOutlined, DeleteOutlined } from '@ant-design/icons';
|
||||
import { getCategoryPage } from './services';
|
||||
//组件
|
||||
import CategorySelector from '@/components/CategorySelector';
|
||||
import AccessDepartmentSelect from "@/components/AccessDepartmentSelect"
|
||||
//统一列表分页
|
||||
import tableProps from '@/utils/tableProps'
|
||||
|
||||
@ -117,7 +118,7 @@ const CooperateEnterprise: React.FC = () => {
|
||||
className="filter-form"
|
||||
>
|
||||
<Form.Item name="deptId" label="准入单位">
|
||||
{/* <CategorySelector multiple={false} style={{ width: 200 }} /> */}
|
||||
<AccessDepartmentSelect placeholder={'请选择准入单位'} />
|
||||
</Form.Item>
|
||||
<Form.Item name="categoryId" label="准入品类">
|
||||
<CategorySelector multiple={false} style={{ width: 200 }} />
|
||||
|
Reference in New Issue
Block a user