|
@@ -1403,7 +1403,7 @@ export default {
|
|
|
const contrastStatus = this.contractData.contract_status == 1
|
|
|
// 4. 产品类型是“超级订阅”(且付费类型为“购买”、“续费”),或产品类型是“大会员”且会员套餐为“商机版2.0”、“专家版2.0”(且服务类型为“新购服务”、“延长服务”)
|
|
|
// 购买时,vip_type为空null
|
|
|
- const vipBuyOrRenew = res.productType == 'VIP订阅' && (res.vip_type === null || res.vip_type === undefined || res.vip_type == '1')
|
|
|
+ const vipBuyOrRenew = res.productType == 'VIP订阅' && (res.vip_type === null || res.vip_type === undefined || res.vip_type == '0' || res.vip_type == '1')
|
|
|
const bigBuyOrRenew = res.productType == '大会员' && (filterData.comboId == 6 || filterData.comboId == 7) && (filterData.createType == '1' || filterData.createType == '3')
|
|
|
const productionTypePass = vipBuyOrRenew || bigBuyOrRenew
|
|
|
// 可下载
|