From ea91e87eae0cc1c07f3ecf7eec66806ce77fc50d Mon Sep 17 00:00:00 2001
From: zxl <763096477@qq.com>
Date: 星期五, 17 十月 2025 13:39:05 +0800
Subject: [PATCH] 首页问题
---
src/views/system/check/result/detail/detail.vue | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/src/views/system/check/result/detail/detail.vue b/src/views/system/check/result/detail/detail.vue
index f4d2a72..cd5733a 100644
--- a/src/views/system/check/result/detail/detail.vue
+++ b/src/views/system/check/result/detail/detail.vue
@@ -5,6 +5,7 @@
>
<el-menu-item index="0">鐪佸巺鑰冩牳</el-menu-item>
<el-menu-item index="1">鍖哄幙鑰冩牳</el-menu-item>
+ <el-menu-item index="2" v-if ="examineCategory==1">鍏畨閮ㄨ�冩牳</el-menu-item>
</el-menu>
</div>
<el-container>
@@ -133,7 +134,11 @@
fixed
>
<template slot-scope="scope">
- {{ scope.row.examine_tag === 0 ? '鐪佸巺鑰冩牳' : '鍖哄幙鑰冩牳' }}
+ {{
+ scope.row.examine_tag === 0 ? '鐪佸巺鑰冩牳' :
+ scope.row.examine_tag === 1 ? '鍖哄幙鑰冩牳' :
+ scope.row.examine_tag === 2 ? '鍏畨閮ㄨ�冩牳' : '鏈煡'
+ }}
</template>
</el-table-column>
<template v-for="item in tableData">
@@ -307,6 +312,7 @@
date: null,
quarter: null,
examineTag: null,
+ examineTags: [],
deptId: null
},
// 琛ㄥ崟鏍¢獙
@@ -329,9 +335,11 @@
if(this.$route.query.deptId){
this.queryParams.deptId = this.$route.query.deptId;
}
+ this.examineCategory = this.$route.query.examineCategory;
let examineTag = this.$route.query.examineTag;
this.activeIndex = examineTag;
this.queryParams.examineTag = examineTag;
+ this.queryParams.examineTags.push(examineTag);
// 鑰冩牳绉垎鍒楄〃
this.getList();
this.areaSelect();
--
Gitblit v1.8.0