Kaynağa Gözat

巡检统计

lipenghui 4 hafta önce
ebeveyn
işleme
d4de608ebc

+ 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" />