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 { tableTheme } from '@/utils/theme'; 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: 'name', key: 'name', align: 'center' }, { title: '载体编号', dataIndex: 'name', key: 'name', align: 'center' }, { title: '内含文件类型', dataIndex: 'name', key: 'name', 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 }]} /> { }} />
发往单位: --
单号:--
record?.id} rowClassName={rowClassName} />
配发人
配发时间:--
{ }} />
{ }} /> { }} /> { }} /> { }} />
); }