邹畅 3 years ago
parent
commit
1494d2af82
1 changed files with 11 additions and 4 deletions
  1. 15
      src/views/sce/tips/index.vue

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

Loading…
Cancel
Save