diff --git a/pages/manage/task-flow.vue b/pages/manage/task-flow.vue index b00a2ca..88e71a6 100644 --- a/pages/manage/task-flow.vue +++ b/pages/manage/task-flow.vue @@ -12,7 +12,7 @@ - + {{e.point_code}} {{e.point_name}} @@ -37,7 +37,7 @@ - + {{el.point_code}} {{el.point_name}} @@ -69,7 +69,9 @@ disabled: false, pkId1: '', pkId2: '', - pkId3: '' + pid1: '', + pid2: '', + pd2: '' }; }, created () { @@ -82,18 +84,21 @@ this.dataList = [...res] }, checkcode1 (e) { - if (this.pkId3 !== '' && e.point_code !== this.pkId3) { + if (this.pid2 !== '' && e.point_id !== this.pid2) { this.pkId2 = '' - this.pkId3 = '' + this.pid2 = '' + this.pd2 = '' } - this.pkId1 = this.pkId1 === e.point_code ? '' : e.point_code + this.pkId1 = this.pkId1 === e.point_id ? '' : e.point_id + this.pid1 = this.pkId1 === e.point_id ? e.point_code : '' }, checkcode2 (el, e) { - if (this.pkId1 !== '' && this.pkId1 !== e.point_code) { + if (this.pkId1 !== '' && this.pkId1 !== e.point_id) { return } - this.pkId2 = this.pkId2 === el.point_code ? '' : el.point_code - this.pkId3 = this.pkId2 === el.point_code ? e.point_code : '' + this.pkId2 = this.pkId2 === el.point_id ? '' : el.point_id + this.pid2 = this.pkId2 === el.point_id ? e.point_id : '' + this.pd2 = this.pkId2 === el.point_id ? el.point_code : '' }, /** 重新下发 */ async toSure () { @@ -103,10 +108,13 @@ return } try { - let res = await createP2pTask(this.pkId1, this.pkId2) + let res = await createP2pTask(this.pid1, this.pd2) this.disabled = false this.pkId1 = '' this.pkId2 = '' + this.pid1 = '' + this.pid2 = '' + this.pd2 = '' this._queryAllPoints() uni.showToast({ title: res.message,