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', }, ];