Browse Source

feat: 修复省份订阅包订阅向导问题

zhangyuhan 1 week ago
parent
commit
4cddf7e847
1 changed files with 2 additions and 2 deletions
  1. 2 2
      apps/mobile/src/views/subscribe/Guide.vue

+ 2 - 2
apps/mobile/src/views/subscribe/Guide.vue

@@ -235,7 +235,7 @@ export default {
       'vSwitch'
     ]),
     isAreaVip () {
-      return this.isFree && this.someInfo.areaCount > 1
+      return this.isFree && (this.someInfo.areaCount > 1 || this.someInfo.areaCount === -1)
     },
     provinceList() {
       return this.expand ? onlyProvinceList : onlyProvinceList.slice(0, 12)
@@ -375,7 +375,7 @@ export default {
       if (!this.nextDisabled) return this.$toast('请选择关注地区')
       let isFreeEmpty = this.isFree && this.freeSelectedProvince.length === 0
       // 省份订阅包订阅向导问题修复
-      if (this.someInfo.areaCount > 1 && this.vipSelectedProvince) {
+      if (this.isAreaVip && this.vipSelectedProvince) {
         isFreeEmpty = false
       }
       const vipFreeEmpty = !this.isFree && !this.vipSelectedProvince