From 824f3178e9c87dbeaffebc56bc39c0841e2ee38b Mon Sep 17 00:00:00 2001 From: limingtao <@ming_tao_li> Date: Tue, 30 Jul 2024 14:26:56 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=A1=E6=81=AF=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/index/index.vue | 6 +- pages/investigation/index.vue | 6 +- pages/investigation/task.vue | 471 +++++++++++++++++++++------------- 3 files changed, 295 insertions(+), 188 deletions(-) diff --git a/pages/index/index.vue b/pages/index/index.vue index 793e837..2a2ca19 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -180,11 +180,13 @@ }, handleClick(row) { if (row.pcType == 2) { - this.$.open("/pages/investigation/task" + "?id=" + row.businessId); + this.$.open("/pages/investigation/task" + "?id=" + row.businessId+ '§ionId=' + row.sectionCode + + '&operator=' + row.operator + '&deptId=' + row.handleDept + '&taskName=' + row.name + + '&pcType' + row.pcType+'§ionName='+row.sectionName); } else { this.$.open('/pages/map/index?businessId=' + row.businessId + '§ionId=' + row.sectionCode + '&operator=' + row.operator + '&deptId=' + row.handleDept + '&taskName=' + row.name + - '&pcType' + row.pcType) + '&pcType' + row.pcType+'§ionName='+row.sectionName) } }, konw() { diff --git a/pages/investigation/index.vue b/pages/investigation/index.vue index 13d8b77..236e764 100644 --- a/pages/investigation/index.vue +++ b/pages/investigation/index.vue @@ -205,13 +205,15 @@ console.log(row) if (this.tab === 1) { if (row.pcType == 2) { - this.$.open("/pages/investigation/task" + "?id=" + row.businessId); + this.$.open("/pages/investigation/task" + "?id=" + row.businessId+ '§ionId=' + row.sectionCode + + '&operator=' + row.operator + '&deptId=' + row.handleDept + '&taskName=' + row.name + + '&pcType' + row.pcType+'§ionName='+row.sectionName); } else { this.$.open('/pages/map/index?businessId=' + row.businessId + '&operator=' + row.operator + '&deptId=' + row.handleDept + '&pcType=' + row.pcType + - '&type=' + (this.tab == 1 ? 'edit' : 'view')) + '&type=' + (this.tab == 1 ? 'edit' : 'view')+'§ionName='+row.sectionName) // this.$.open('/pages/map/index?businessId=' + row.businessId) } diff --git a/pages/investigation/task.vue b/pages/investigation/task.vue index db19494..56dcf30 100644 --- a/pages/investigation/task.vue +++ b/pages/investigation/task.vue @@ -1,5 +1,5 @@