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 @@