优化:权重值中心和管理中心可以自定义设置海报

This commit is contained in:
wuhui_zzw 2023-11-25 18:39:11 +08:00
parent dc99b47277
commit df1ff62b01
1 changed files with 3 additions and 1 deletions

View File

@ -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;