123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /*
- * @Author: your name
- * @Date: 2021-09-18 16:06:51
- * @LastEditTime: 2021-09-28 14:04:57
- * @LastEditors: Please set LastEditors
- * @Description: 表格的配置
- * @FilePath: \hyyfClient\src\views\BioSafety\personAdmin\table.config.js
- */
- export const title = '数据列表'
- export const tableItems = [
- {
- prop: 'place',
- label: '位置',
- minWidth: '100',
- slotName: 'place'
- },
- {
- prop: 'startTime',
- label: '开始时间',
- minWidth: '150',
- slotName: 'startTime'
- },
- {
- prop: 'endTime',
- label: '结束时间',
- minWidth: '150',
- slotName: 'endTime'
- },
- {
- prop: 'long',
- label: '耗时',
- minWidth: '150',
- slotName: 'long'
- },
- {
- label: '操作',
- minWidth: '150',
- slotName: 'handler'
- }
- ]
- export const tableShows = {
- showIndex: false, showSelect: true
- }
|