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