From b3be6406c8105376eef209af3bd6635cb95fa81d Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期二, 24 九月 2024 12:15:22 +0800
Subject: [PATCH] 增加部级考核标签

---
 src/views/system/check/result/detail/detail.vue |    9 ++++++++-
 1 files changed, 8 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..56792d9 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">鍏畨閮ㄨ�冩牳</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
       },
       // 琛ㄥ崟鏍¢獙
@@ -332,6 +338,7 @@
     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