From aa261c7327d2c939e58446039d6785d3aa3fc0e0 Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: Wed, 01 Mar 2023 11:14:18 +0800
Subject: [PATCH] 加备加页面
---
src/views/intellectInspect/inspectIndex/components/inspectRecordDialog.vue | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/views/intellectInspect/inspectIndex/components/inspectRecordDialog.vue b/src/views/intellectInspect/inspectIndex/components/inspectRecordDialog.vue
index 02fdd0a..e056931 100644
--- a/src/views/intellectInspect/inspectIndex/components/inspectRecordDialog.vue
+++ b/src/views/intellectInspect/inspectIndex/components/inspectRecordDialog.vue
@@ -59,7 +59,7 @@
<el-table-column prop="reportResult" label="结果" show-overflow-tooltip align="center">
<template #default="scope">
<div :style="{ color: scope.row.reportResult == 1 ? '#ff0000' : '#409eff' }">
- {{ scope.row.reportResult == 0 ? '正常' : scope.row.reportResult == 1 ? '存在异常' : '无' }}
+ {{ scope.row.reportResult == 0 ? '正常' : scope.row.reportResult == 1 ? '存在异常' : scope.row.reportResult == 2 ? '备' : '无' }}
</div>
</template>
</el-table-column>
@@ -223,7 +223,8 @@
],
firstReferenceValueList: [
{ id: 0, name: '正常' },
- { id: 1, name: '存在异常' }
+ { id: 1, name: '存在异常' },
+ { id: 2, name: '备' }
],
secondReferenceSignList: [
{ id: 1, name: '>' },
--
Gitblit v1.9.2