feat: add channel code integral reward
This commit is contained in:
@@ -69,6 +69,9 @@
|
||||
<template slot-scope="{ row }" slot="agentLevel">
|
||||
<div>{{ row.agentLevel ? row.agentLevel.name : "--" }}</div>
|
||||
</template>
|
||||
<template slot-scope="{ row }" slot="xcxCode">
|
||||
<a @click="showXcxCode(row)">查看</a>
|
||||
</template>
|
||||
<template slot-scope="{ row, index }" slot="right">
|
||||
<a @click="promoters(row, 'man', 2)">推广人</a>
|
||||
<Divider type="vertical" />
|
||||
@@ -268,11 +271,6 @@ export default {
|
||||
slot: "nickname",
|
||||
minWidth: 150,
|
||||
},
|
||||
{
|
||||
title: "推广用户数量",
|
||||
key: "spread_count",
|
||||
minWidth: 125,
|
||||
},
|
||||
{
|
||||
title: "订单数量",
|
||||
key: "order_count",
|
||||
@@ -308,6 +306,16 @@ export default {
|
||||
key: "new_money",
|
||||
minWidth: 105,
|
||||
},
|
||||
{
|
||||
title: "小程序推广码",
|
||||
slot: "xcxCode",
|
||||
minWidth: 120,
|
||||
},
|
||||
{
|
||||
title: "推广用户数量",
|
||||
key: "spread_count",
|
||||
minWidth: 125,
|
||||
},
|
||||
{
|
||||
title: "上级推广人",
|
||||
key: "spread_name",
|
||||
@@ -542,9 +550,20 @@ export default {
|
||||
spreadQR(row) {
|
||||
this.modals = true;
|
||||
this.rows = row;
|
||||
this.code_src = "";
|
||||
this.code_xcx = "";
|
||||
this.code_h5 = "";
|
||||
// this.getWeChat(row);
|
||||
// this.getXcx(row);
|
||||
},
|
||||
showXcxCode(row) {
|
||||
this.modals = true;
|
||||
this.rows = row;
|
||||
this.code_src = "";
|
||||
this.code_xcx = "";
|
||||
this.code_h5 = "";
|
||||
this.getXcx();
|
||||
},
|
||||
// 公众号推广二维码
|
||||
getWeChat() {
|
||||
this.spinShow = true;
|
||||
|
||||
Reference in New Issue
Block a user