|
@@ -47,7 +47,7 @@
|
|
|
:resizable = "false"
|
|
|
label="校验数据">
|
|
|
<template slot-scope="scope" >
|
|
|
- <span :class="scope.row.hasQuestion == '0' ? '': 'hsaQuestion'">
|
|
|
+ <span :class="scope.row.hasQuestion == '0' ? '': scope.row.hasQuestion == '1'? 'hsaQuestion' :scope.row.hasQuestion == '2'?'hasTemp':''">
|
|
|
{{scope.row.hasQuestion == "0" ? "无问题词" : scope.row.hasQuestion == "1"? "有问题词":scope.row.hasQuestion == "2"?"暂存数据":""}}
|
|
|
</span>
|
|
|
</template>
|
|
@@ -320,4 +320,7 @@ export default {
|
|
|
.hsaQuestion {
|
|
|
color: red;
|
|
|
}
|
|
|
+ .hasTemp{
|
|
|
+ color: blue;
|
|
|
+ }
|
|
|
</style>
|