|
|
@@ -167,7 +167,7 @@
|
|
|
</template>
|
|
|
|
|
|
<template v-slot:shutdownLabel="text, record">
|
|
|
- <span style="width: 200px;max-width: 30em;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;display: block;">{{shutdownLabelSpan(text)}}</span>
|
|
|
+ <span style="width: 200px;max-width: 30em;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;display: block;">{{shutdownLabelSpan(text,record)}}</span>
|
|
|
</template>
|
|
|
|
|
|
|
|
|
@@ -605,7 +605,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
// 关停标签处理
|
|
|
- shutdownLabelSpan(text){
|
|
|
+ shutdownLabelSpan(text,record){
|
|
|
let value = '';
|
|
|
if (text){
|
|
|
text = text.split(",")
|
|
|
@@ -637,7 +637,9 @@ export default {
|
|
|
value = value + " " + "实人核验未通过关停(单停) ";
|
|
|
}
|
|
|
if (text.indexOf("999") > -1){
|
|
|
- value = value + " " + "其它 ";
|
|
|
+ if (record.shutdownLabelOther){
|
|
|
+ value = value + " " + "其它:"+ record.shutdownLabelOther;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
return value
|