Commit 83802375 by chenyu

update: update

parent 3910abc0
......@@ -247,6 +247,11 @@
<template slot-scope="scope">
<el-button
type="text"
@click="JumpLink(scope.row.memberId)"
v-if="!!scope.row.channel"
>查看</el-button>
<el-button
type="text"
@click="unFrozenItem(scope.$index, scope.row.frozenStatus)"
>{{ scope.row.frozenStatus == 2 ? '解冻' : '冻结' }}</el-button>
</template>
......@@ -273,9 +278,9 @@
</div>
</div>
<div class="foot-add">
<!-- <div class="foot-add">
<vue-gic-footer></vue-gic-footer>
</div>
</div> -->
</div>
</template>
......@@ -609,20 +614,11 @@ export default {
});
},
// 查看跳转
JumpLink(index) {
const mdlObj = this.frozenList[index];
// 会员类型 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`
});
}
JumpLink(memberId) {
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