3
0
Fork 0

feat(upgrade): 升级单分公司可选择区域

This commit is contained in:
woody 2025-08-12 15:58:23 +08:00
parent b6fa19b0de
commit bf5e848095
1 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@
/>
</u-form-item>
<u-form-item
v-if="[60, 70, 80].includes(gradeValue) && provinceList.length"
v-if="[80].includes(gradeValue) && provinceList.length"
@click="regionSelectHandle"
required
label="会员区域"
@ -719,7 +719,7 @@ export default {
console.log(res.data, 'res.data.memLevel')
if (res.data.isEnough) {
this.form.pkGradeVal = res.data.pkGradeVal
if ([60, 70, 80].includes(res.data.gradeValue)) {
if ([80].includes(res.data.gradeValue)) {
this.gradeValue = res.data.gradeValue
this.getRegionAreaList(res.data.gradeValue)
}
@ -1005,7 +1005,7 @@ export default {
},
goBuy() {
const extParams = {}
if ([60, 70, 80].includes(this.gradeValue) && this.provinceList?.length) {
if ([80].includes(this.gradeValue) && this.provinceList?.length) {
if (!this.regionAddress.length) {
uni.showToast({
title: '请选择会员区域',