Files
fe_supplier_frontend/src/pages/supplier/backend/changeProgressInquiry/index.tsx
2025-07-10 15:38:05 +08:00

203 lines
6.3 KiB
TypeScript

import React, { useEffect, useState } from "react";
import { useIntl } from 'umi';
import { Form, Button, Table, Select, DatePicker, Input } from 'antd';
import type { ColumnsType, TablePaginationConfig } from 'antd/es/table';
import { SearchOutlined, DeleteOutlined } from '@ant-design/icons';
//时间转换
import moment from 'moment';
//查看组件
import DetailView from './components/DetailView';
//字典与接口
import { getSupplierChangePage } from './services';
import { getDictList } from '@/servers/api/dicts'
//统一列表分页
import tableProps from '@/utils/tableProps'
interface Data {
deptName: string;
categoryName: string;
createTime: string;
exitTime: string;
exitReason: string;
id?: string;
}
interface Dict {
dicName: string;
code: string;
}
const CooperateEnterprise: React.FC = () => {
//双语
const intl = useIntl();
//查询
const [searchForm] = Form.useForm();
//列表数据
const [data, setData] = useState<Data[]>([]);
//
const [enterpriseType, setEnterpriseType] = useState<Dict[]>();
//列表加载
const [loading, setLoading] = useState(false);
//列表分页
const [pagination, setPagination] = useState<TablePaginationConfig>({ current: 1, pageSize: 10, total: 0 });
//弹出组件开关状态
const [detailVisible, setDetailVisible] = useState(false);
//弹出组件参数
const [currentDetail, setCurrentDetail] = useState('');
//列表头部
const columns: ColumnsType<Data> = [
{
title: '序号',
dataIndex: 'index',
key: 'index',
width: 80,
align: 'center',
render: (_: any, __: any, idx: number) => (((pagination.current ?? 1) - 1) * (pagination.pageSize ?? 10)) + idx + 1,
},
{
title: '变更内容',
dataIndex: 'changeDesc',
key: 'changeDesc',
},
{
title: '提交时间',
dataIndex: 'updateTime',
key: 'updateTime',
},
{
title: '审批单位',
dataIndex: 'deptNames',
key: 'deptNames',
},
{
title: '审批状态',
dataIndex: 'enterpriseType',
key: 'enterpriseType',
},
{
title: '审批时间',
dataIndex: 'updateTime',
key: 'updateTime',
},
{
title: '操作',
key: 'action',
render: (text: string, record: Data) => (
<Button type="link" onClick={() => handleDetail(record)}>
</Button>
),
},
];
//重置
const handleReset = () => {
searchForm.resetFields();
getList({ pageNo: 1, pageSize: pagination.pageSize ?? 10 });
};
//搜索
const handleSearch = () => {
getList({
pageNo: 1,
pageSize: pagination.pageSize ?? 10,
});
};
//开启弹出
const handleDetail = (record: Data) => {
setCurrentDetail(record.id || '');
setDetailVisible(true);
};
//关闭演出
const handleDetailClose = () => {
setDetailVisible(false);
};
//列表数据请求
const getList = async (params: { pageNo: number; pageSize: number; }) => {
setLoading(true);
try {
const values = searchForm.getFieldsValue();
const { changeDesc, createTime, deptNames, enterpriseType } = values;
const startTime = createTime ? moment(createTime[0]).format('YYYY-MM-DD') : '';
const endTime = createTime ? moment(createTime[1]).format('YYYY-MM-DD') : '';
const { code, data } = await getSupplierChangePage({ ...params, changeDesc, deptNames, enterpriseType, startTime, endTime });
if (code === 200) {
setData(data.records);
setPagination({ current: params.pageNo, pageSize: params.pageSize, total: data.total });
}
} catch (error) {
console.error('Failed to fetch data:', error);
} finally {
setLoading(false);
}
};
//初始化
useEffect(() => {
getDictList('approve_type').then((res) => {
if (res.code == 200) {
setEnterpriseType(res.data)
}
})
getList({ pageNo: 1, pageSize: 10 });
}, []);
return (
<>
<div className="common-container">
<div className="filter-action-row">
<Form
form={searchForm}
layout="inline"
onFinish={handleSearch}
className="filter-form"
>
<Form.Item name="changeDesc" label="变更内容">
<Input style={{ width: 160 }} placeholder="请输入变更内容" allowClear maxLength={50} />
</Form.Item>
<Form.Item name="deptNames" label="审批单位">
<Select style={{ width: 160 }} placeholder="请选择审批单位" allowClear>
<Select.Option value="品类1">1</Select.Option>
<Select.Option value="品类2">2</Select.Option>
<Select.Option value="品类3">3</Select.Option>
</Select>
</Form.Item>
<Form.Item name="createTime" label="提交时间">
<DatePicker.RangePicker placeholder={['开始时间', '结束时间']} allowClear />
</Form.Item>
<Form.Item name="enterpriseType" label="审批状态">
<Select style={{ width: 160 }} placeholder="请选择审批状态" allowClear>
{enterpriseType?.map(item => (
<Select.Option key={item.code} value={item.code}>{item.dicName}</Select.Option>
))}
</Select>
</Form.Item>
<Form.Item>
<Button className="buttonSubmit" type="primary" htmlType="submit" icon={<SearchOutlined />}>
</Button>
</Form.Item>
<Form.Item>
<Button className="buttonReset" icon={<DeleteOutlined />} onClick={handleReset} ></Button>
</Form.Item>
</Form>
</div>
<Table
rowKey="id"
className="custom-table"
columns={columns}
dataSource={data}
pagination={{...tableProps.pagination, total: pagination.total }}
loading={loading}
onChange={(pagination) => getList({ pageNo: pagination.current!, pageSize: pagination.pageSize! })}
style={{ flex: 1, minHeight: 0 }}
scroll={{ y: 'calc(100vh - 350px)' }}
/>
<DetailView
visible={detailVisible}
onClose={handleDetailClose}
detailId={currentDetail}
/>
</div>
</>
);
};
export default CooperateEnterprise;