This commit is contained in:
刘仕伟
2024-02-27 15:38:08 +08:00
parent 8e87162e94
commit d1c746be14
3 changed files with 68 additions and 17 deletions

View File

@@ -182,9 +182,9 @@ import AiPayment from "@/components/AiPayment.vue";
return '未激活';
} else if (this.$store.state.userInfo.flag == 1) {
if (this.$store.state.userInfo.type != 4) {
return `(${this.$store.state.userInfo.mallName})` + this.vipType[this.$store.state.userInfo.type];
return `(${this.$store.state.userInfo.mallName})` + this.vipType[this.$store.state.userInfo.type] + '(' + this.$store.state.userInfo.expireTime.substring(0,10) + ')';
} else {
return this.vipType[this.$store.state.userInfo.type]
return this.vipType[this.$store.state.userInfo.type] + '(' + this.$store.state.userInfo.expireTime.substring(0,10) + ')'
}
} else {

View File

@@ -287,7 +287,7 @@ import AiLazyCascader from "@/components/AiLazyCascader.vue"
sendChromeAPIMessage({
url: 'bg-visage-mms/config/common/site/query',
needMallId: true,
mallId: this.productPage.mallId,
mallId: this.$store.state.mallList[0].mallId,
data: {}}).then((res) => {
if (res.success) {
this.siteList = res.result.siteBaseList.filter(item => {