供应商退出、准入、 工作台

This commit is contained in:
孙景学
2025-06-27 10:41:33 +08:00
parent 527637cce3
commit 4d54b36a16
40 changed files with 3746 additions and 1631 deletions

View File

@ -1,8 +1,9 @@
import React, { useEffect, useState } from 'react';
import { Table } from 'antd';
import { Table, Button } from 'antd';
import type { ColumnsType, TablePaginationConfig } from 'antd/es/table';
import { invoice } from '../services';
import { invoiceGetPage } from '../services';
import { useIntl } from 'umi';
import InvoiceFormModal from './InvoiceFormModal';
interface InvoiceInfo {
id: string;
@ -17,23 +18,6 @@ interface InvoiceInfo {
certificateUrl: string;
}
const columns: ColumnsType<InvoiceInfo> = [
{ title: 'page.workbench.invoice.index', dataIndex: 'index', width: 80, key: 'index', render: (_: any, __: any, index: number) => index + 1 },
{ title: 'page.workbench.invoice.taxpayerType', dataIndex: 'taxpayerType' },
{ title: 'page.workbench.invoice.taxpayerCode', dataIndex: 'taxpayerCode' },
{ title: 'page.workbench.invoice.head', dataIndex: 'head' },
{ title: 'page.workbench.invoice.address', dataIndex: 'address' },
{ title: 'page.workbench.invoice.phone', dataIndex: 'phone' },
{ title: 'page.workbench.invoice.bank', dataIndex: 'bank' },
{ title: 'page.workbench.invoice.account', dataIndex: 'account' },
{ title: 'page.workbench.invoice.updateTime', dataIndex: 'updateTime' },
{
title: 'page.workbench.invoice.qualificationCertificate',
width:'180px',
dataIndex: 'qualificationCertificate',
render: (val: string) => (val ? <a href={val} target="_blank" rel="noreferrer"></a> : '-'),
},
];
const InvoiceTab: React.FC = () => {
//语言切换
@ -44,26 +28,85 @@ const InvoiceTab: React.FC = () => {
const [loading, setLoading] = useState(false);
//列表分页
const [pagination, setPagination] = useState<TablePaginationConfig>({ current: 1, pageSize: 10, total: 0 });
//列表方法
const getList = async (page = 1, pageSize = 10) => {
const getList = async (pageNo = 1, pageSize = 10) => {
setLoading(true);
try {
const { code, data, total } = await invoice({page, pageSize});
const { code, data } = await invoiceGetPage({pageNo, pageSize});
if (code === 200) {
setData(data);
setPagination({ current: page, pageSize, total });
setData(data.records);
setPagination({ current: pageNo, pageSize, total:data.total });
}
} finally {
setLoading(false);
}
};
//增改查
const [formVisible, setFormVisible] = useState(false);
const [editingRecord, setEditingRecord] = useState<InvoiceInfo | null>(null);
const [isViewMode, setIsViewMode] = useState(false);
const handleFormSubmit = () => {
setFormVisible(false);
getList();
};
const handleAdd = () => {
setEditingRecord(null);
setIsViewMode(false);
setFormVisible(true);
};
const handleEdit = (record: InvoiceInfo) => {
setEditingRecord(record);
setIsViewMode(false);
setFormVisible(true);
};
const handleView = (record: InvoiceInfo) => {
setEditingRecord(record);
setIsViewMode(true);
setFormVisible(true);
};
//初始化
useEffect(() => {
getList();
}, []);
const columns: ColumnsType<InvoiceInfo> = [
{ title: 'page.workbench.invoice.index', dataIndex: 'index', width: 80, key: 'index', render: (_: any, __: any, index: number) => index + 1 },
{ title: 'page.workbench.invoice.taxpayerType', dataIndex: 'taxpayerType', ellipsis: true },
{ title: 'page.workbench.invoice.taxpayerCode', dataIndex: 'taxpayerCode', ellipsis: true },
{ title: 'page.workbench.invoice.head', dataIndex: 'head', ellipsis: true },
{ title: 'page.workbench.invoice.address', dataIndex: 'address', ellipsis: true },
{ title: 'page.workbench.invoice.phone', dataIndex: 'phone', ellipsis: true },
{ title: 'page.workbench.invoice.bank', dataIndex: 'bank', ellipsis: true },
{ title: 'page.workbench.invoice.account', dataIndex: 'account', ellipsis: true },
{ title: 'page.workbench.invoice.updateTime', dataIndex: 'updateTime', ellipsis: true },
{
title: 'page.workbench.invoice.qualificationCertificate',
width:'180px',
dataIndex: 'qualificationCertificate',
render: (val: string) => (val ? <a href={val} target="_blank" rel="noreferrer"></a> : '-'),
},
{
title: 'page.workbench.attachments.action',
dataIndex: 'option',
width: 120,
render: (_: any, record: InvoiceInfo) => (
<>
<a style={{ marginRight: 8 }} onClick={() => handleView(record)}></a>
<a onClick={() => handleEdit(record)}></a>
</>
),
},
];
return (
<div style={{ padding: '0 30px 0 0' }}>
<div style={{ marginBottom: 16 }}>
<Button type="primary" onClick={handleAdd}></Button>
</div>
<Table
className="custom-table"
rowKey="id"
@ -76,6 +119,13 @@ const InvoiceTab: React.FC = () => {
loading={loading}
onChange={(pagination) => getList(pagination.current!, pagination.pageSize!)}
/>
<InvoiceFormModal
visible={formVisible}
onOk={handleFormSubmit}
onCancel={() => setFormVisible(false)}
initialValues={editingRecord || undefined}
readOnly={isViewMode}
/>
</div>
);
};