import TabsComp from '@/components/TabsComp'; import styles from '../../../GLQ/index.less'; import { useState } from 'react'; import { ConfigProvider, Form, Input, Radio, Select, Table } from 'antd'; import { rowClassName } from '@/utils'; import ButtonComp from '@/components/ButtonComp'; export default function Page() { const [activeTab, setActiveTab] = useState(1) const [tableData, setTableData] = useState([]); const columns: any = [ { title: '配发类型', dataIndex: 'name', key: 'name', align: 'center' }, { title: '产品名称', dataIndex: 'productName', key: 'productName', align: 'center' }, { title: '产品编号', dataIndex: 'productNum', key: 'productNum', align: 'center' }, { title: '操作员', dataIndex: 'name', key: 'name', align: 'center' }, { title: '操作时间', dataIndex: 'name', key: 'name', align: 'center' }, { title: '三联单号', dataIndex: 'name', key: 'name', align: 'center' } ] const columns1: any = [ { title: '密码种类', dataIndex: 'name', key: 'name', align: 'center' }, { title: '套数', dataIndex: 'name', key: 'name', align: 'center' }, { title: '编号', dataIndex: 'name', key: 'name', align: 'center' }, { title: '载体类型', dataIndex: 'carrierType', key: 'carrierType', align: 'center' }, { title: '载体数量', dataIndex: 'name', key: 'name', align: 'center' }, { title: '载体编号', dataIndex: 'name', key: 'name', align: 'center' }, { title: '备注', dataIndex: 'name', key: 'name', align: 'center' } ] return (
setActiveTab(e)} />
发往单位
{ }} options={[{ label: '选项1', value: 1 }]} /> { }} />
发来单位: --
单号:--
0 ? { y: 41 * 9 } : {}} pagination={false} bordered columns={columns1} dataSource={tableData} rowKey={(record: any) => record?.id} rowClassName={rowClassName} />
发往单位
配发时间:--
{ }} />
{ }} /> { }} /> { }} /> { }} />
); }