优化:权重值中心和管理中心可以自定义设置海报
This commit is contained in:
parent
dc99b47277
commit
df1ff62b01
|
|
@ -107,6 +107,7 @@ export default {
|
||||||
},
|
},
|
||||||
// 请求link
|
// 请求link
|
||||||
request_link: '',
|
request_link: '',
|
||||||
|
poster_id: 0
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
activated() {
|
activated() {
|
||||||
|
|
@ -150,6 +151,7 @@ export default {
|
||||||
_this.income = data.income;
|
_this.income = data.income;
|
||||||
_this.total_income = data.total_income;
|
_this.total_income = data.total_income;
|
||||||
_this.team_total = data.team_total;
|
_this.team_total = data.team_total;
|
||||||
|
_this.poster_id = data.poster_id || 0;
|
||||||
|
|
||||||
_this.is_show = true;
|
_this.is_show = true;
|
||||||
}
|
}
|
||||||
|
|
@ -187,7 +189,7 @@ export default {
|
||||||
// 生成分享二维码海报
|
// 生成分享二维码海报
|
||||||
getPoster(e) {
|
getPoster(e) {
|
||||||
let _this = this;
|
let _this = this;
|
||||||
$http.get("member.qrcode.get-poster", {}, {})
|
$http.get("member.qrcode.get-poster", { poster_id: _this.poster_id }, {})
|
||||||
.then(res => {
|
.then(res => {
|
||||||
if (parseInt(res.result) === 1) {
|
if (parseInt(res.result) === 1) {
|
||||||
_this.isNewPosterPlugin = res.data.new || false;
|
_this.isNewPosterPlugin = res.data.new || false;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue