|
|
@@ -292,6 +292,14 @@
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ {
|
|
|
+ label: '结果',
|
|
|
+ prop: 'checkFailed',
|
|
|
+ minWidth: 100,
|
|
|
+ formatter: (row) => {
|
|
|
+ return row.checkFailed == 1 ? '不合格' : '合格';
|
|
|
+ }
|
|
|
+ },
|
|
|
{
|
|
|
label: '创建人',
|
|
|
prop: 'createUserName',
|
|
|
@@ -387,7 +395,7 @@
|
|
|
page: 1,
|
|
|
where,
|
|
|
reportWorkType: this.reportWorkType,
|
|
|
- recordOrder: [1,2,3].includes(this.reportWorkType) ? 1 : ''
|
|
|
+ recordOrder: [1, 2, 3].includes(this.reportWorkType) ? 1 : ''
|
|
|
});
|
|
|
});
|
|
|
},
|
|
|
@@ -399,7 +407,7 @@
|
|
|
pageNum: page,
|
|
|
size: limit,
|
|
|
reportWorkType: this.reportWorkType,
|
|
|
- recordOrder: [1,2,3].includes(this.reportWorkType) ? 1 : ''
|
|
|
+ recordOrder: [1, 2, 3].includes(this.reportWorkType) ? 1 : ''
|
|
|
});
|
|
|
},
|
|
|
// 打开编辑新增
|