comp-select-address.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <template>
  2. <view>
  3. <picker class="address" mode="multiSelector" :value="addressSelectListData" @columnchange="addressColumnchange" @change="addressChange" :range="addressListData">
  4. <view class="noneAddress" v-if="!addressStr">请选择</view>
  5. <view class="haveAddress" v-else>
  6. {{ addressStr }}
  7. </view>
  8. </picker>
  9. </view>
  10. </template>
  11. <script>
  12. import chinaAddress from './citydata';
  13. export default {
  14. props: {
  15. addressStr1: {
  16. type: String,
  17. value: ''
  18. }
  19. },
  20. data() {
  21. return {
  22. chinaAddress: [], // 全国省市区
  23. addressListData: [], // 全国省市区
  24. addressSelectListData: [0, 0, 0], // 当前选择的省市区 index
  25. addressStr: this.addressStr1 // 当前选择的省市区
  26. };
  27. },
  28. mounted() {
  29. this.chinaAddress = chinaAddress;
  30. // 获取全国省份
  31. this.getProvince();
  32. },
  33. methods: {
  34. // 获取全国省份list
  35. getProvince() {
  36. const chinaAddress = this.chinaAddress;
  37. const provinceListData = [];
  38. for (const province_key in chinaAddress) {
  39. provinceListData.push(chinaAddress[province_key].label);
  40. }
  41. this.addressListData[0] = provinceListData;
  42. // 默认加载第一个省份的城市
  43. this.getCity(provinceListData[0]);
  44. },
  45. // 根据省份获取城市
  46. getCity(province) {
  47. // 获取省份对象
  48. const chinaAddress = this.chinaAddress;
  49. const chinaAddress_Item = chinaAddress.find((item) => {
  50. return item.label === province;
  51. });
  52. // 获取城市list
  53. const cityChildren = chinaAddress_Item.children;
  54. if (!cityChildren) {
  55. // 如果省份没有市区 清空上次的市区和区域数据
  56. this.addressListData[1] = '';
  57. this.addressListData[2] = '';
  58. return;
  59. }
  60. // 解析城市list
  61. const cityListData = [];
  62. for (const city_key in cityChildren) {
  63. cityListData.push(cityChildren[city_key].label);
  64. }
  65. this.addressListData[1] = cityListData;
  66. // 默认加载第一个省份的第一个城市的区域
  67. this.getCounty(province, cityListData[0]);
  68. },
  69. // 根据省份和城市 获取区域
  70. getCounty(province, city) {
  71. // 获取省份对象
  72. const chinaAddress = this.chinaAddress;
  73. const chinaAddress_Item = chinaAddress.find((item) => {
  74. return item.label === province;
  75. });
  76. // 获取城市list
  77. const cityChildren = chinaAddress_Item.children;
  78. // 根据城市获取区域
  79. const cityChildren_item = cityChildren.find((item) => {
  80. return item.label === city;
  81. });
  82. // 解析区域list
  83. const countyListData = [];
  84. if (cityChildren_item.children) {
  85. for (const county_key in cityChildren_item.children) {
  86. countyListData.push(cityChildren_item.children[county_key].label);
  87. }
  88. } else {
  89. countyListData.push(cityChildren_item.label);
  90. }
  91. this.addressListData[2] = countyListData;
  92. },
  93. // 配送区域更新
  94. addressColumnchange(e) {
  95. const { column, value } = e.detail;
  96. this.addressSelectListData[column] = value;
  97. // 当前选择的节点地址
  98. const selectItem = this.addressListData[column][value];
  99. if (column === 0) {
  100. // 根据省份获取城市
  101. this.getCity(selectItem);
  102. } else if (column === 1) {
  103. // 获取当前城市的省份
  104. const province = this.addressListData[0][this.addressSelectListData[0]];
  105. // 根据省份和城市获取区域
  106. if (selectItem) {
  107. this.getCounty(province, selectItem);
  108. }
  109. }
  110. this.$forceUpdate();
  111. },
  112. // 配送区域确定
  113. addressChange(e) {
  114. const { value } = e.detail;
  115. // 获取省、市、区
  116. let province = this.addressListData[0][value[0]];
  117. let city = this.addressListData[1][value[1]];
  118. let county = this.addressListData[2][value[2]];
  119. // 如果城市 === 区域
  120. if (city === county) {
  121. city = province;
  122. }
  123. const addressList = [];
  124. // 拼接地址
  125. if (province) {
  126. addressList.push(province);
  127. }
  128. if (city) {
  129. addressList.push(city);
  130. }
  131. if (county) {
  132. addressList.push(county);
  133. }
  134. this.addressStr = addressList.join('-');
  135. this.$emit('selectAddress', addressList);
  136. }
  137. }
  138. };
  139. </script>
  140. <style lang="less">
  141. .noneAddress {
  142. font-size: 30rpx;
  143. // font-family: PingFangSC-Regular, PingFang SC;
  144. font-weight: 400;
  145. color: #cdcdcd;
  146. }
  147. .haveAddress {
  148. font-size: 30rpx;
  149. // font-family: PingFangSC-Regular, PingFang SC;
  150. font-weight: 400;
  151. color: #333333;
  152. }
  153. </style>