feat(region): 前台用户可以自主更改收益区域
This commit is contained in:
parent
c30f3226a8
commit
d79feb1634
|
@ -13,7 +13,13 @@
|
|||
selectedData.provinceData.provinceName
|
||||
}}</text>
|
||||
</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>
|
||||
|
@ -36,7 +42,13 @@
|
|||
selectedData.cityData.cityName
|
||||
}}</text>
|
||||
</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>
|
||||
|
@ -63,7 +75,13 @@
|
|||
selectedData.countyData.countyName
|
||||
}}</text>
|
||||
</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>
|
||||
|
|
Loading…
Reference in New Issue