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