积分规则
This commit is contained in:
@@ -145,7 +145,9 @@ export default {
|
|||||||
this.instance.post(`/app/appscorerule/queryDetailById?id=${row.id}`).then((res) => {
|
this.instance.post(`/app/appscorerule/queryDetailById?id=${row.id}`).then((res) => {
|
||||||
if (res?.data) {
|
if (res?.data) {
|
||||||
if(res.data.massSendingConfigs && res.data.massSendingConfigs.length) {
|
if(res.data.massSendingConfigs && res.data.massSendingConfigs.length) {
|
||||||
|
res.data.massSendingConfigs.map((item) => {
|
||||||
|
item.id = item.wxUserId
|
||||||
|
})
|
||||||
this.chooseUserList = res.data.massSendingConfigs
|
this.chooseUserList = res.data.massSendingConfigs
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -158,6 +160,9 @@ export default {
|
|||||||
if(!this.chooseUserList.length) {
|
if(!this.chooseUserList.length) {
|
||||||
return this.$message.error("请选择成员!")
|
return this.$message.error("请选择成员!")
|
||||||
}
|
}
|
||||||
|
this.chooseUserList.map((item) => {
|
||||||
|
item.wxUserId = item.id
|
||||||
|
})
|
||||||
var params = {
|
var params = {
|
||||||
id: this.setInfo.id,
|
id: this.setInfo.id,
|
||||||
massSendingConfigs: this.chooseUserList,
|
massSendingConfigs: this.chooseUserList,
|
||||||
|
|||||||
Reference in New Issue
Block a user