From 6752e18dcce89fc2a5920824e4c2d08f3e346154 Mon Sep 17 00:00:00 2001 From: kilo Date: Mon, 7 Nov 2022 19:59:28 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/activiti/todoManage.vue | 8 ++++---- src/views/dashboard/HomePage.vue | 21 ++------------------- src/views/system/UserList.vue | 3 ++- 3 files changed, 8 insertions(+), 24 deletions(-) diff --git a/src/views/activiti/todoManage.vue b/src/views/activiti/todoManage.vue index b8f8ede..56d2090 100644 --- a/src/views/activiti/todoManage.vue +++ b/src/views/activiti/todoManage.vue @@ -215,7 +215,7 @@ export default { searchForm: { // 搜索框对应data对象 name: "", - tableId: "", + Id: "", }, modalTaskTitle: "", modalTitle: "", // 添加或编辑标题 @@ -265,9 +265,9 @@ export default { }, mounted() { console.log(this.searchForm) - console.log(this.$route.params.name) - if (this.$route.params.name !== null) { - this.searchForm.name=this.$route.params.name + console.log(this.$route.params.id) + if (this.$route.params.Id !== null) { + this.searchForm.Id=this.$route.params.id } this.init(); }, diff --git a/src/views/dashboard/HomePage.vue b/src/views/dashboard/HomePage.vue index 0b810f5..3fa7e9d 100644 --- a/src/views/dashboard/HomePage.vue +++ b/src/views/dashboard/HomePage.vue @@ -1,5 +1,5 @@