Commit 607000e3 by crushh

update: 微盟展示

parent 45e33c53
......@@ -422,9 +422,11 @@ export default {
})
.then(res => {
if (res.data.errorCode === 0) {
this.curTagsList = this.formatTagsList( res.data.result.tagsList);
this.otherTagsArr = this.formatTagsList( res.data.result.otherTagsList);
this.weimobTagsArr = this.formatTagsList( res.data.result.weimobTagsList);
const {tagsList=[],otherTagsList=[],weimobTagsList=[],weimobTagFlag=false } = res.data.result;
this.curTagsList = this.formatTagsList(tagsList);
this.otherTagsArr = this.formatTagsList(otherTagsList);
this.weimobTagsArr = this.formatTagsList(weimobTagsList);
this.weimobTagFlag = weimobTagFlag
} else {
checkFalse(res.data.message);
}
......@@ -458,7 +460,7 @@ export default {
return res;
}, [])
}));
console.log(curTagsList)
// console.log(curTagsList)
return curTagsList
},
closeRemark() {
......@@ -858,7 +860,7 @@ export default {
}
})
.catch(err => {
console.log(err);
// console.log(err);
checkStatus(err);
});
},
......@@ -952,7 +954,6 @@ export default {
this.navpath[1].name = "会员标签分组";
}
const channel = this.$route.meta.channel
console.log(this.$route)
if (channel === "posMember") {
this.navpath[1] = {
name:"pos会员",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment