From 31f41cbff556fad95a66c6a0e5a07ee5895de386 Mon Sep 17 00:00:00 2001 From: liuye Date: Thu, 5 Jan 2023 16:32:56 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=AF=E5=88=86=E8=A7=84=E5=88=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/qianxinan/AppIntegralRule/AppIntegralRule.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/project/qianxinan/AppIntegralRule/AppIntegralRule.vue b/project/qianxinan/AppIntegralRule/AppIntegralRule.vue index 26e5b989..457f7c1e 100644 --- a/project/qianxinan/AppIntegralRule/AppIntegralRule.vue +++ b/project/qianxinan/AppIntegralRule/AppIntegralRule.vue @@ -145,7 +145,9 @@ export default { this.instance.post(`/app/appscorerule/queryDetailById?id=${row.id}`).then((res) => { if (res?.data) { if(res.data.massSendingConfigs && res.data.massSendingConfigs.length) { - + res.data.massSendingConfigs.map((item) => { + item.id = item.wxUserId + }) this.chooseUserList = res.data.massSendingConfigs } } @@ -158,6 +160,9 @@ export default { if(!this.chooseUserList.length) { return this.$message.error("请选择成员!") } + this.chooseUserList.map((item) => { + item.wxUserId = item.id + }) var params = { id: this.setInfo.id, massSendingConfigs: this.chooseUserList,