|
@@ -157,7 +157,7 @@ export default {
|
|
|
columns: [
|
|
|
{
|
|
|
title: '序号',
|
|
|
- width: 70,
|
|
|
+ width: 65,
|
|
|
dataIndex: 'index',
|
|
|
customRender: (text, record, index) => {
|
|
|
return `${(this.$refs.table.localPagination.current - 1) * this.$refs.table.localPagination.pageSize + index + 1}`
|
|
@@ -180,46 +180,47 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
title: '巡检开始时间',
|
|
|
- width: 150,
|
|
|
+ width: 120,
|
|
|
dataIndex: 'createdTime'
|
|
|
},
|
|
|
{
|
|
|
title: '任务创建人',
|
|
|
- width: 100,
|
|
|
+ width: 120,
|
|
|
dataIndex: 'createdUserName'
|
|
|
},
|
|
|
{
|
|
|
title: '待完成数量',
|
|
|
- width: 100,
|
|
|
+ width: 120,
|
|
|
dataIndex: 'waitNum'
|
|
|
},
|
|
|
{
|
|
|
title: '巡检总数量',
|
|
|
- width: 100,
|
|
|
+ width: 110,
|
|
|
dataIndex: 'totalNum'
|
|
|
},
|
|
|
- {
|
|
|
- title: '任务状态',
|
|
|
- width: 100,
|
|
|
- fixed: 'right',
|
|
|
- dataIndex: 'status',
|
|
|
- scopedSlots: { customRender: 'status' }
|
|
|
- },
|
|
|
+
|
|
|
{
|
|
|
title: '要求时间',
|
|
|
width: 100,
|
|
|
dataIndex: 'requireHour'
|
|
|
},
|
|
|
{
|
|
|
- title: '超时预警时间',
|
|
|
+ title: '超时预警时间(小时)',
|
|
|
width: 100,
|
|
|
dataIndex: 'warningHour'
|
|
|
},
|
|
|
{
|
|
|
- title: '累计延时时间',
|
|
|
+ title: '累计延时时间(小时)',
|
|
|
width: 100,
|
|
|
dataIndex: 'lateHistoryHours'
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '任务状态',
|
|
|
+ width: 100,
|
|
|
+ fixed: 'right',
|
|
|
+ dataIndex: 'status',
|
|
|
+ scopedSlots: { customRender: 'status' }
|
|
|
+ },
|
|
|
{
|
|
|
title: '操作',
|
|
|
key: 'action',
|