From 1494d2af82e74dbb309efa4576efff42aaea5339 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E7=95=85?= Date: Tue, 14 Sep 2021 20:51:58 +0800 Subject: [PATCH] add --- src/views/sce/tips/index.vue | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/views/sce/tips/index.vue b/src/views/sce/tips/index.vue index dcc242a..8934e97 100644 --- a/src/views/sce/tips/index.vue +++ b/src/views/sce/tips/index.vue @@ -256,6 +256,7 @@ export default { }; delete this.queryParams.query.processId; this.queryFindList(); + this.$router.push({ name: "Tips/index" }); }, chageLc(val) { console.log(val); @@ -363,10 +364,16 @@ export default { //查看详情 handleView(row) { this.queryTipsDetail(row.id); - this.dialog.title = "查看"; - this.type = "view"; - this.disabled = true; - this.dialog.Visible = true; + this.data = { + scenarioId: row.scenarioId + }; + this.queryFindList(); + setTimeout(() => { + this.dialog.title = "查看"; + this.type = "view"; + this.disabled = true; + this.dialog.Visible = true; + }, 500); }, //编辑 handleEdit(row) {