From 21933d0857b7539cfaff52a88a3340772160c4e7 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期五, 06 十二月 2024 11:52:06 +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