|
@@ -234,6 +234,9 @@ export default {
|
|
|
'restfulApiUserTypeWitchVSwitch',
|
|
|
'vSwitch'
|
|
|
]),
|
|
|
+ isAreaVip () {
|
|
|
+ return this.isFree && this.someInfo.areaCount > 1
|
|
|
+ },
|
|
|
provinceList() {
|
|
|
return this.expand ? onlyProvinceList : onlyProvinceList.slice(0, 12)
|
|
|
},
|
|
@@ -526,7 +529,7 @@ export default {
|
|
|
return this.$toast('请先设置主营产品')
|
|
|
}
|
|
|
const areParams =
|
|
|
- this.vSwitch === 'f'
|
|
|
+ (this.vSwitch === 'f' && !this.isAreaVip)
|
|
|
? this.formatArrayToMap(this.freeSelectedProvince)
|
|
|
: this.formatRegionLevel3ToLevel2(this.vipSelectedProvince)
|
|
|
const { area, district } = areParams
|