Browse Source

巡检统计

lipenghui 4 weeks ago
parent
commit
d4de608ebc
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/views/pms/inspect/order/detail/IotInspectOrderItemStat.vue

+ 2 - 1
src/views/pms/inspect/order/detail/IotInspectOrderItemStat.vue

@@ -63,7 +63,8 @@
       <el-table-column :label="t('inspect.isException')" align="center" prop="ifNormal" >
         <template #default="scope">
           <span v-if="scope.row.ifNormal" style="color: dodgerblue">正常</span>
-          <span v-if="!scope.row.ifNormal" style="color: orangered">异常</span>
+          <span v-else-if="scope.row.ifNormal===null" style="color: #101010">待填写</span>
+          <span v-else-if="!scope.row.ifNormal" style="color: orangered">异常</span>
         </template>
       </el-table-column>
       <el-table-column :label="t('inspect.exceptionDes')" align="center" prop="description" />