From 3717e24abe2d2fd348f3cd13ad903dca3af167f1 Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期四, 05 十二月 2024 16:16:03 +0800
Subject: [PATCH] 拆分省厅标签
---
src/views/system/check/result/detail/index.vue | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/src/views/system/check/result/detail/index.vue b/src/views/system/check/result/detail/index.vue
index 3456ba0..0c1dd20 100644
--- a/src/views/system/check/result/detail/index.vue
+++ b/src/views/system/check/result/detail/index.vue
@@ -72,7 +72,7 @@
size="mini"
type="text"
icon="el-icon-view"
- @click="handleDetail(scope.row.id)"
+ @click="handleDetail(scope.row)"
>璇︾粏
</el-button>
</div>
@@ -83,6 +83,7 @@
<pagination
v-show="total>0"
:total="total"
+ :auto-scroll="false"
:page.sync="queryParamsList.pageNum"
:limit.sync="queryParamsList.pageSize"
@pagination="getList"
@@ -246,12 +247,13 @@
handleCurrentChange(val) {
console.log(`褰撳墠椤�: ${val}`);
},
- handleDetail(id) {
+ handleDetail(row) {
this.$router.push({
path: '/check/detail/detail',
query: {
- id: id,
+ id: row.id,
examineTag: this.activeIndex,
+ examineCategory: row.examineCategory,
deptId: this.queryParamsList.deptId
}
})
--
Gitblit v1.8.0