Commit ed7d5695 by chenyu

update: 冻结会员查看详情跳转更改

parent 8129cdf1
......@@ -525,21 +525,12 @@ export default {
cPage: 1
});
},
// 查看跳转
JumpLink(index) {
const mdlObj = this.frozenList[index];
JumpLink(memberId) {
// 会员类型 1 微信会员 2 pos会员
if (mdlObj.channel == 1) {
this.$router.push({
path: `/wechatmemberDetail?memberId=${
mdlObj.memberId
}&channel=wxMember`
});
} else if (mdlObj.channel == 2) {
this.$router.push({
path: `/posmemberDetail?memberId=${mdlObj.memberId}&channel=posMember`
});
}
this.$router.push({
path: "/customerDetail",
query: { memberId }
});
},
handleSizeChange(val) {
this.currentPage = 1;
......
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