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) {