| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- export const TABLE_OPTIONS = {
- emptyText: '暂无数据',
- loading: true,
- maxHeight: 'calc(70vh - 150px)',
- };
- export const ACCESS_TABLE_COLUMNS = [
- {
- label: '序号',
- align: 'center',
- width: '80px',
- type: 'index',
- },
- {
- prop: 'eventDescription',
- label: '事件',
- align: 'left',
- minWidth: '120px',
- },
- {
- prop: 'eventLocation',
- label: '地点',
- align: 'left',
- minWidth: '120px',
- },
- {
- prop: 'images',
- label: '抓拍图片',
- slot: 'images',
- align: 'center',
- minWidth: '120px',
- },
- {
- prop: 'eventTime',
- label: '时间',
- align: 'left',
- minWidth: '120px',
- },
- {
- prop: 'actions',
- label: '操作',
- slot: 'actions',
- align: 'left',
- minWidth: '120px',
- },
- ];
- export const ACCESS_TABLE_COLUMNS_CHECKONLY = [
- {
- label: '序号',
- align: 'center',
- minWidth: '120px',
- type: 'index',
- },
- {
- prop: 'eventDescription',
- label: '事件',
- align: 'center',
- minWidth: '120px',
- },
- {
- prop: 'eventLocation',
- label: '地点',
- align: 'center',
- minWidth: '120px',
- },
- {
- prop: 'images',
- label: '抓拍图片',
- slot: 'images',
- align: 'center',
- minWidth: '120px',
- },
- {
- prop: 'eventTime',
- label: '时间',
- align: 'center',
- minWidth: '120px',
- },
- ];
|