From 63285c46a888285708c3ba8cc8a3fa92060724b9 Mon Sep 17 00:00:00 2001
From: zengh <123456>
Date: Fri, 19 Nov 2021 09:12:44 +0800
Subject: [PATCH] 版本修复
---
src/views/examination/examination.vue | 14 ++++++++++++--
1 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/src/views/examination/examination.vue b/src/views/examination/examination.vue
index 0523f93..4a0da9f 100644
--- a/src/views/examination/examination.vue
+++ b/src/views/examination/examination.vue
@@ -49,9 +49,18 @@
>{{
row.examination_type == "0"
? "正常"
- : row.examination_type == "1"
- ? "异常"
+ : row.examination_type == null
+ ? "正常"
: "异常"
+ }}
+ </el-tag>
+ </template>
+ <template slot-scope="{ row }" slot="examination_mx">
+ <el-tag
+ >{{
+ row.examination_mx == null
+ ? "正常"
+ : row.examination_mx
}}
</el-tag>
</template>
@@ -320,6 +329,7 @@
},
{
label: "审查明细",
+ slot: true,
prop: "examination_mx",
display: false,
},
--
Gitblit v1.9.3