修复:共创股东等级信息可能查询错误,导致显示其他类型商户的共创股东等级

This commit is contained in:
wuhui_zzw 2024-06-19 14:22:59 +08:00
parent 5e9ccf2506
commit 316d9a7383
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ export default {
merShareholderMerInfo(_this.shopMerId).then(res => { merShareholderMerInfo(_this.shopMerId).then(res => {
let data = res.data || {}; let data = res.data || {};
_this.mer_info = data; _this.mer_info = data;
_this.merchant_type = data.merchant_type || ''; _this.merchant_type = data.merchant_type;
_this.getLevelList(); _this.getLevelList();
}) })
}, },