Browse Source

Merge branch 'dev/v1.0.77_tsz' of jianyu/web into feature/v1.0.77

汤世哲 8 months ago
parent
commit
bb06815faa

+ 7 - 1
apps/mobile/src/components/search/bidding/oneKeySubscribeDialog.vue

@@ -309,10 +309,16 @@ export default {
     },
     // 获取付费用户订阅设置信息
     async getVipUserInfo() {
+      const { productType } = this.subInfo
       const { success, data } = await getSVIPBuyInfo()
       if (success) {
         this.subUserInfo = data
-        this.areaInfo.buyAreaCount = data?.buyset?.areacount || -1
+        if (productType === 'vip') {
+          this.areaInfo.buyAreaCount = data?.buyset?.areacount || -1
+        }
+        else {
+          this.areaInfo.buyAreaCount = -1
+        }
       }
     },
     popupConfirm() {