|
@@ -0,0 +1,166 @@
|
|
|
+import { FC } from 'react'
|
|
|
+import style from './index.module.scss'
|
|
|
+import MyTable from '@/components/MyTable'
|
|
|
+import { NUMBER_OF_COLLECTION_COLUMNS } from './constants'
|
|
|
+import { Button, Select, Table } from 'antd'
|
|
|
+
|
|
|
+export const A1Tab1: FC = () => {
|
|
|
+ return (
|
|
|
+ <>
|
|
|
+ <div className={style.header}>
|
|
|
+ <h3>上一年度馆藏数量</h3>
|
|
|
+ </div>
|
|
|
+ <MyTable
|
|
|
+ size='small'
|
|
|
+ bordered
|
|
|
+ pagination={false}
|
|
|
+ columnsTemp={NUMBER_OF_COLLECTION_COLUMNS}
|
|
|
+ list={[]}
|
|
|
+ />
|
|
|
+
|
|
|
+ <div className={style.header}>
|
|
|
+ <h3>核查年度馆藏数量</h3>
|
|
|
+
|
|
|
+ <Select placeholder='请选择核查年度' />
|
|
|
+ </div>
|
|
|
+ <MyTable
|
|
|
+ size='small'
|
|
|
+ bordered
|
|
|
+ pagination={false}
|
|
|
+ columnsTemp={NUMBER_OF_COLLECTION_COLUMNS}
|
|
|
+ list={[]}
|
|
|
+ />
|
|
|
+
|
|
|
+ <div className={style.header}>
|
|
|
+ <h3>馆藏数量增减情况</h3>
|
|
|
+ </div>
|
|
|
+ <Table
|
|
|
+ size='small'
|
|
|
+ columns={[
|
|
|
+ {
|
|
|
+ title: '藏品总数',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ title: '增',
|
|
|
+ dataIndex: 'totalIncrease',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '减',
|
|
|
+ dataIndex: 'totalDecrease',
|
|
|
+ align: 'center'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '一级藏品',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ title: '增',
|
|
|
+ dataIndex: 'level1Increase',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '减',
|
|
|
+ dataIndex: 'level1Decrease',
|
|
|
+ align: 'center'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '二级藏品',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ title: '增',
|
|
|
+ dataIndex: 'level2Increase',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '减',
|
|
|
+ dataIndex: 'level2Decrease',
|
|
|
+ align: 'center'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '三级藏品',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ title: '增',
|
|
|
+ dataIndex: 'level3Increase',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '减',
|
|
|
+ dataIndex: 'level3Decrease',
|
|
|
+ align: 'center'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '未定级',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ title: '增',
|
|
|
+ dataIndex: 'unclassifiedIncrease',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '减',
|
|
|
+ dataIndex: 'unclassifiedDecrease',
|
|
|
+ align: 'center'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '一般文物',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ title: '增',
|
|
|
+ dataIndex: 'generalIncrease',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '减',
|
|
|
+ dataIndex: 'generalDecrease',
|
|
|
+ align: 'center'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ]}
|
|
|
+ dataSource={[]}
|
|
|
+ bordered
|
|
|
+ pagination={false}
|
|
|
+ />
|
|
|
+
|
|
|
+ <div className={style.header}>
|
|
|
+ <h3>馆藏文物增加类别明细</h3>
|
|
|
+
|
|
|
+ <Button type='primary'>设置统计类别</Button>
|
|
|
+ </div>
|
|
|
+ <Table
|
|
|
+ size='small'
|
|
|
+ columns={[
|
|
|
+ {
|
|
|
+ title: '藏品总数',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ title: '增',
|
|
|
+ dataIndex: 'totalIncrease',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '减',
|
|
|
+ dataIndex: 'totalDecrease',
|
|
|
+ align: 'center'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ]}
|
|
|
+ dataSource={[]}
|
|
|
+ bordered
|
|
|
+ pagination={false}
|
|
|
+ />
|
|
|
+ </>
|
|
|
+ )
|
|
|
+}
|