From 91622d8b7043a031f3bd06b039006e772417f8b1 Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Tue, 13 Sep 2022 18:19:44 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E4=B8=80=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppCooperationPropaganda.vue | 24 +++++++------------ 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/src/apps/AppCooperationPropaganda/AppCooperationPropaganda.vue b/src/apps/AppCooperationPropaganda/AppCooperationPropaganda.vue index 0e301ed4..223f549b 100644 --- a/src/apps/AppCooperationPropaganda/AppCooperationPropaganda.vue +++ b/src/apps/AppCooperationPropaganda/AppCooperationPropaganda.vue @@ -159,26 +159,20 @@ export default { }, getList() { let url = '' - let data = {} + let data = { + current: this.current, + taskTitle: this.taskTitle, + startTime: this.start, + endTime: this.end, + createUserId: this.createUserId, + status: this.status, + } if(this.tabIndex==0) { url = `/app/appmasssendingtask/list` - data = { - current: this.current, - taskTitle: this.taskTitle, - startTime: this.start, - endTime: this.end, - createUserId: this.createUserId, - status: this.status, - } } else if(this.tabIndex==1 || this.tabIndex==2) { url = `/app/whchatmomentstask/list` data = { - current: this.current, - taskTitle: this.taskTitle, - startTime: this.start, - endTime: this.end, - createUserId: this.createUserId, - status: this.status, + ...data, taskType: this.tabIndex == 0? '': this.tabIndex==1? 1:0 } }