发起单位

This commit is contained in:
孙景学
2025-07-18 14:23:55 +08:00
parent 34e91ac28c
commit c7fd8ebe76
5 changed files with 14 additions and 2 deletions

View File

@ -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>

View File

@ -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>