发起单位
This commit is contained in:
@ -2,6 +2,7 @@ import React, { useEffect, useState } from "react";
|
||||
import { Form, Button, Table, Select, Input, DatePicker, Modal, message } from "antd";
|
||||
import { SearchOutlined, DeleteOutlined } from "@ant-design/icons";
|
||||
import type { ColumnsType } from 'antd/es/table';
|
||||
import AccessDepartmentSelect from "@/components/AccessDepartmentSelect"
|
||||
import moment from 'moment';
|
||||
//接口
|
||||
import { getDictList } from '@/servers/api/dicts'
|
||||
@ -138,6 +139,7 @@ const blacklistManage: React.FC = () => {
|
||||
<Input placeholder="请输入供应商名称关键字" style={{ width: 150 }} allowClear maxLength={50} />
|
||||
</Form.Item>
|
||||
<Form.Item name="deptId" label="发起单位">
|
||||
<AccessDepartmentSelect placeholder={'请选择发起单位'} />
|
||||
</Form.Item>
|
||||
<Form.Item name="approveStatus" label="审批记录状态">
|
||||
<Select style={{ width: 150 }} placeholder="请选择审批记录状态" allowClear>
|
||||
|
@ -5,6 +5,7 @@ import type { ColumnsType } from 'antd/es/table';
|
||||
//组件
|
||||
import ViewBlacklistModal from './components/ViewBlacklistModal';
|
||||
import CreateBlacklistModal from './components/CreateBlacklistModal'
|
||||
import AccessDepartmentSelect from "@/components/AccessDepartmentSelect"
|
||||
import moment from 'moment';
|
||||
//字典与接口
|
||||
import { getDictList } from '@/servers/api/dicts'
|
||||
@ -127,6 +128,7 @@ const blacklistManage: React.FC = () => {
|
||||
<Input placeholder="请输入供应商名称关键字" style={{ width: 150 }} allowClear maxLength={50} />
|
||||
</Form.Item>
|
||||
<Form.Item name="deptId" label="发起单位">
|
||||
<AccessDepartmentSelect placeholder={'请选择发起单位'} />
|
||||
</Form.Item>
|
||||
<Form.Item name="approveStatus" label="审批记录状态">
|
||||
<Select style={{ width: 150 }} placeholder="请选择审批记录状态" allowClear>
|
||||
|
Reference in New Issue
Block a user