From d040d62f7a6db237386a2ac1f856f5daba0f5086 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期日, 28 四月 2024 09:11:18 +0800 Subject: [PATCH] 考核结果二级页面 --- src/views/system/result/detail/index1.vue | 13 ++++++++----- 1 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/views/system/result/detail/index1.vue b/src/views/system/result/detail/index1.vue index 6b9bd96..4a9971c 100644 --- a/src/views/system/result/detail/index1.vue +++ b/src/views/system/result/detail/index1.vue @@ -73,7 +73,7 @@ size="mini" type="text" icon="el-icon-view" - @click="handleDetail(scope.row,scope.index)" + @click="handleDetail(scope.row.id)" >璇︾粏</el-button> </template> </el-table-column> @@ -107,7 +107,6 @@ data() { return { activeIndex: '1', - activeIndex2: '2', areaList:[], dateRange: '', company: '', @@ -176,9 +175,13 @@ handleCurrentChange(val) { console.log(`褰撳墠椤�: ${val}`); }, - handleDetail(index, row) { - console.log(index, row); - this.$router.push("/examine/detail/detail") + handleDetail(id) { + this.$router.push({ + path: '/examine/detail/detail', + query: { + id: id, + } + }) }, handleDelete(index, row) { console.log(index, row); -- Gitblit v1.8.0