city.wxml 940 B

123456789101112131415161718192021222324252627
  1. <!--components/city/city.wxml-->
  2. <view class="container">
  3. <!-- 省列表 -->
  4. <view class="province">
  5. <view class="province-cell {{item.provinceCode === provinceCode&&'active'}}" wx:for='{{cityData}}' wx:key='index' data-index="{{index}}" bindtap="chooseProvince">
  6. <text>{{item.provinceName}}</text>
  7. </view>
  8. </view>
  9. <!-- 市列表 -->
  10. <view class="city">
  11. <view class="city-cell {{item.cityCode === cityCode&&'active'}}" wx:for='{{cityList}}' wx:key='index' data-index="{{index}}" bindtap="chooseCity">
  12. <text>{{item.cityName}}</text>
  13. </view>
  14. </view>
  15. <!-- 地区列表 -->
  16. <view class="area">
  17. <view class="area-cell {{item.countryCode === countryCode&&'active'}}" wx:for='{{areaList}}' wx:key='index' data-index="{{index}}" bindtap="chooseArea">
  18. <text>{{item.countryName}}</text>
  19. </view>
  20. </view>
  21. <view class="btn">
  22. <view class="button" bindtap="commit">
  23. <text>确认选择</text>
  24. </view>
  25. </view>
  26. </view>