From 648667b288486a51db7cdb1965c17f3ef27d7b9d Mon Sep 17 00:00:00 2001 From: yanfeiyong <2060201549@qq.com> Date: Wed, 21 May 2025 11:29:02 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=81=E4=B8=9A=E8=A1=A8=E6=A0=BC=E5=A1=AB?= =?UTF-8?q?=E6=8A=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/manage/index.vue | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/views/manage/index.vue b/src/views/manage/index.vue index 7ebe880..5dcc14d 100644 --- a/src/views/manage/index.vue +++ b/src/views/manage/index.vue @@ -702,6 +702,15 @@ export default { this.queryParams.current = 1; this.getList(); }, + /** 详情按钮操作 */ + getInfo(row, type) { + this.$store.commit("SET_CRUMBS", "项目详情"); + const id = row.id || this.ids[0]; + this.$router.push({ + path: `/manage-info/${id}`, + query: { action: type }, + }); + }, }, };