Files
fe_supplier_frontend/src/pages/supplier/informationRetrieval/registrationQuery/index.tsx

224 lines
6.2 KiB
TypeScript
Raw Normal View History

2025-06-24 10:52:30 +08:00
import React, { useEffect, useState } from "react";
//第三方UI库/组件
import { Form, Button, Table, Select, Input, Space, Tooltip, message } from 'antd';
import { SearchOutlined } from '@ant-design/icons';
//类型定义
import type { ColumnsType, TablePaginationConfig } from 'antd/es/table';
//umi 相关
2025-06-24 11:08:51 +08:00
import { useIntl } from 'umi';
2025-06-24 10:52:30 +08:00
//本地组件、弹窗、业务逻辑
import SupplierViewModal from './components/SupplierViewModal';
import SupplierDetailModal from './components/SupplierDetailModal';
//本地服务/接口
import { systemDict, list } from './services';
// 列表数据接口
interface Data {
id: number;
name: string;
region: string;
supplierType: string;
regTime: string;
status: string;
}
//下拉数据接口
type OptionType = { label: string; value: string };
//准入状态
const statusColor = (status: string) => {
if (status === '已驳回' || status === '已退出') return 'red';
if (status === '已准入') return 'green';
return undefined;
};
// 页面主体
const RegistrationQuery: React.FC = () => {
//双语
const intl = useIntl();
//查询表单
const [form] = Form.useForm();
//列表渲染数据
const [data, setData] = useState<Data[]>([]);
//列表加载
const [loading, setLoading] = useState(false);
//列表分页
const [pagination, setPagination] = useState<TablePaginationConfig>({ current: 1, pageSize: 10, total: 0, });
//查看是否显示状态
const [viewVisible, setViewVisible] = useState(false);
//准入明细是否显示状态
const [detailVisible, setDetailVisible] = useState(false);
//查看、准入明细 参数传递
const [currentRecord, setCurrentRecord] = useState<any>(null);
// 境内/境外下拉数据
const [regionOptions, setRegionOptions] = useState<OptionType[]>([]);
//状态 下拉数据
const [statusOptions, setStatusOptions] = useState<OptionType[]>([]);
// 搜索
const handleSearch = () => {
setPagination({ ...pagination, current: 1 });
getList();
};
// 重置
const handleReset = () => {
form.resetFields();
setPagination({ ...pagination, current: 1 });
getList();
};
//列表方法
const getList = async (page: number = 1, pageSize: number = 10) => {
setLoading(true);
try {
const { code, data, msg, total } = await list({ page, pageSize });
if (code === 200) {
setData(data);
setPagination({ current: page, pageSize, total });
} else {
message.error(msg)
}
} finally {
setLoading(false);
}
};
//初始化
useEffect(() => {
// 境内/境外 下拉
systemDict('regionDict').then((res) => {
const { code, data } = res;
if (code == 200) {
setRegionOptions(data)
}
});
// 状态 下拉
systemDict('status').then((res) => {
const { code, data } = res;
if (code == 200) {
setStatusOptions(data)
}
});
//列表
getList();
}, [])
// 列表头部数据
const columns: ColumnsType<Data> = [
{
title: '序号',
dataIndex: 'index',
key: 'index',
width: 70,
align: 'center',
render: (_: any, __: any, idx: number) => idx + 1,
},
{
title: '供应商名称',
dataIndex: 'name',
key: 'name',
align: 'left',
ellipsis: true,
render: (dom, record) =>
<Tooltip title={record.name}>
{record.name}
</Tooltip>,
},
{
title: '境内/境外',
dataIndex: 'region',
key: 'region',
align: 'center',
},
{
title: '供应商分类',
dataIndex: 'supplierType',
key: 'supplierType',
align: 'center',
},
{
title: '注册时间',
dataIndex: 'regTime',
key: 'regTime',
align: 'center',
},
{
title: '状态',
dataIndex: 'status',
key: 'status',
align: 'center',
render: (val: string) =>
<span style={{
color: statusColor(val) || (val === '未准入' ? '#aaa' : undefined),
}}>{val}</span>
},
{
title: '操作',
key: 'option',
align: 'center',
render: (record) => (
<Space>
<a
style={{ color: '#1677ff' }}
onClick={() => { setCurrentRecord(record); setViewVisible(true); }}
></a>
<a
style={{ color: '#1677ff' }}
onClick={() => { setCurrentRecord(record); setDetailVisible(true); }}
></a>
</Space>
),
},
];
return (
<>
{/* 查询区 */}
<Form
form={form}
layout="inline"
onFinish={handleSearch}
style={{ marginBottom: 16 }}
>
<Form.Item name="name" label="供应商名称">
<Input placeholder="请输入供应商名称关键字" style={{ width: 220 }} />
</Form.Item>
<Form.Item name="region" label="境内/境外">
<Select style={{ width: 160 }}>
{regionOptions.map(opt => (
<Select.Option key={opt.value} value={opt.value}>{opt.label}</Select.Option>
))}
</Select>
</Form.Item>
<Form.Item name="status" label="状态">
<Select style={{ width: 160 }}>
{statusOptions.map(opt => (
<Select.Option key={opt.value} value={opt.value}>{opt.label}</Select.Option>
))}
</Select>
</Form.Item>
<Form.Item>
<Button type="primary" htmlType="submit" icon={<SearchOutlined />}></Button>
</Form.Item>
<Form.Item>
<Button onClick={handleReset}></Button>
</Form.Item>
</Form>
{/* 列表 */}
<Table
rowKey="id"
columns={columns}
dataSource={data}
loading={loading}
pagination={pagination}
onChange={(pagination) => getList(pagination.current!, pagination.pageSize!)}
/>
{/* 查看组件 */}
<SupplierViewModal
visible={viewVisible}
record={currentRecord}
onCancel={() => setViewVisible(false)}
/>
{/* 准入明细组件 */}
<SupplierDetailModal
visible={detailVisible}
record={currentRecord}
onCancel={() => setDetailVisible(false)}
/>
</>
);
};
2025-06-24 11:08:51 +08:00
export default RegistrationQuery;