feat(region): 放开可选择区域
This commit is contained in:
parent
29ffe52ab9
commit
487bef330a
|
@ -13,7 +13,13 @@
|
||||||
selectedData.provinceData.provinceName
|
selectedData.provinceData.provinceName
|
||||||
}}</text>
|
}}</text>
|
||||||
</view>
|
</view>
|
||||||
<view v-if="unSelected.includes('province')" class="region-action">
|
<view
|
||||||
|
v-if="
|
||||||
|
unSelected.includes('province') ||
|
||||||
|
(selectedData && selectedData.provinceData)
|
||||||
|
"
|
||||||
|
class="region-action"
|
||||||
|
>
|
||||||
<button class="select-btn" @click="selectProvinceRegion">
|
<button class="select-btn" @click="selectProvinceRegion">
|
||||||
选择省级收益区域
|
选择省级收益区域
|
||||||
</button>
|
</button>
|
||||||
|
@ -36,7 +42,13 @@
|
||||||
selectedData.cityData.cityName
|
selectedData.cityData.cityName
|
||||||
}}</text>
|
}}</text>
|
||||||
</view>
|
</view>
|
||||||
<view v-if="unSelected.includes('city')" class="region-action">
|
<view
|
||||||
|
v-if="
|
||||||
|
unSelected.includes('city') ||
|
||||||
|
(selectedData && selectedData.cityData)
|
||||||
|
"
|
||||||
|
class="region-action"
|
||||||
|
>
|
||||||
<button class="select-btn" @click="selectCityRegion">
|
<button class="select-btn" @click="selectCityRegion">
|
||||||
选择市级收益区域
|
选择市级收益区域
|
||||||
</button>
|
</button>
|
||||||
|
@ -63,7 +75,13 @@
|
||||||
selectedData.countyData.countyName
|
selectedData.countyData.countyName
|
||||||
}}</text>
|
}}</text>
|
||||||
</view>
|
</view>
|
||||||
<view v-if="unSelected.includes('county')" class="region-action">
|
<view
|
||||||
|
v-if="
|
||||||
|
unSelected.includes('county') ||
|
||||||
|
(selectedData && selectedData.countyData)
|
||||||
|
"
|
||||||
|
class="region-action"
|
||||||
|
>
|
||||||
<button class="select-btn" @click="selectCountyRegion">
|
<button class="select-btn" @click="selectCountyRegion">
|
||||||
选择区县收益区域
|
选择区县收益区域
|
||||||
</button>
|
</button>
|
||||||
|
|
Loading…
Reference in New Issue