1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- const totalTable = [
- {
- title: '月份',
- dataIndex: 'month',
- slotName: 'month',
- width: 200,
- },
- {
- title: '结算金额(元)',
- dataIndex: 'yesterday_last_amount',
- slotName: 'yesterday_last_amount',
- width: 200,
- },
- {
- title: '操作',
- dataIndex: 'operate',
- slotName: 'operate',
- width: 200,
- },
- ];
- const dailyTable = [
- {
- title: '日期',
- dataIndex: 'calculate_date',
- slotName: 'calculate_date',
- width: 200,
- },
- {
- title: '书籍名称',
- dataIndex: 'book_name',
- slotName: 'book_name',
- },
- {
- title: '结算金额(元)',
- dataIndex: 'yesterday_last_amount',
- slotName: 'yesterday_last_amount',
- width: 200,
- },
- ];
- const tableColumns = {
- totalTable,
- dailyTable
- };
- export default tableColumns;
|