|
@@ -36,7 +36,10 @@
|
|
|
>
|
|
>
|
|
|
预览打印
|
|
预览打印
|
|
|
</el-link> -->
|
|
</el-link> -->
|
|
|
- <jimureportBrowse :businessId="row.id" businessCode="qmsprint"></jimureportBrowse>
|
|
|
|
|
|
|
+ <jimureportBrowse
|
|
|
|
|
+ :businessId="row.id"
|
|
|
|
|
+ businessCode="qmsprint"
|
|
|
|
|
+ ></jimureportBrowse>
|
|
|
|
|
|
|
|
<el-link
|
|
<el-link
|
|
|
v-if="row.orderStatus !== 3 && row.orderStatus !== 4"
|
|
v-if="row.orderStatus !== 3 && row.orderStatus !== 4"
|
|
@@ -106,7 +109,8 @@
|
|
|
redeployOther,
|
|
redeployOther,
|
|
|
signingUpWork,
|
|
signingUpWork,
|
|
|
edit,
|
|
edit,
|
|
|
- printWorkOrder,jimureportBrowse
|
|
|
|
|
|
|
+ printWorkOrder,
|
|
|
|
|
+ jimureportBrowse
|
|
|
},
|
|
},
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
@@ -220,8 +224,13 @@
|
|
|
label: '执行结果',
|
|
label: '执行结果',
|
|
|
align: 'center',
|
|
align: 'center',
|
|
|
showOverflowTooltip: true,
|
|
showOverflowTooltip: true,
|
|
|
|
|
+ // formatter(row) {
|
|
|
|
|
+ // return { 0: '缺陷', 1: '正常' }[row.isAbnormal];
|
|
|
|
|
+ // }
|
|
|
formatter(row) {
|
|
formatter(row) {
|
|
|
- return { 0: '缺陷', 1: '正常' }[row.isAbnormal];
|
|
|
|
|
|
|
+ return { 0: '异常', 1: '正常', 2: '异常', 3: '待检' }[
|
|
|
|
|
+ row.isAbnormal
|
|
|
|
|
+ ];
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
@@ -290,8 +299,7 @@
|
|
|
},
|
|
},
|
|
|
handlePrint(row, val) {
|
|
handlePrint(row, val) {
|
|
|
this.$refs.printRef11.open(row.id, val);
|
|
this.$refs.printRef11.open(row.id, val);
|
|
|
- },
|
|
|
|
|
-
|
|
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
};
|
|
};
|
|
|
</script>
|
|
</script>
|