|
@@ -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() {
|