selectCity.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. <template>
  2. <view class="">
  3. <u-popup
  4. :show="show"
  5. mode="bottom"
  6. @close="$emit('close')"
  7. :round="10"
  8. :closeable="true"
  9. >
  10. <view
  11. style="
  12. height: 100rpx;
  13. line-height: 100rpx;
  14. text-align: center;
  15. font-size: 36rpx;
  16. color: #222;
  17. "
  18. >
  19. 选择省市区
  20. </view>
  21. <view>
  22. <!-- <input type="text" class="inp" v-model="cityValue" /> -->
  23. <view class="title"> 热门城市 </view>
  24. <view class="city-list">
  25. <view
  26. class="city"
  27. :class="{ 'select-city': hotCityName == item }"
  28. v-for="(item, index) in hotCityList"
  29. :key="index"
  30. @click="searchCity(item)"
  31. >
  32. {{ item }}
  33. </view>
  34. </view>
  35. <picker-view
  36. class="picker-view"
  37. :indicator-style="indicatorStyle"
  38. :value="value"
  39. @change="bindChange"
  40. :mask-top-style="maskTopStyle"
  41. :mask-bottom-style="maskBottomStyle"
  42. >
  43. <picker-view-column class="picker-view-column">
  44. <view class="item" v-for="(item, index) in cityList" :key="index"
  45. ><text class="text">{{ item.name }}</text></view
  46. >
  47. </picker-view-column>
  48. <picker-view-column class="picker-view-column">
  49. <view class="item" v-for="(item, index) in marketList" :key="index"
  50. ><text class="text">{{ item.name }}</text>
  51. </view>
  52. </picker-view-column>
  53. <picker-view-column class="picker-view-column">
  54. <view
  55. class="item"
  56. v-for="(item, index) in distinguishList"
  57. :key="index"
  58. ><text class="text">{{ item.name }}</text>
  59. </view>
  60. </picker-view-column>
  61. </picker-view>
  62. <button @click="submit" class="confirm">确定</button>
  63. </view>
  64. </u-popup>
  65. </view>
  66. </template>
  67. <script>
  68. export default {
  69. props: {
  70. show: {
  71. typeof: Boolean,
  72. default: false,
  73. },
  74. cityId: {
  75. typeof: Array,
  76. default: () => {
  77. return [];
  78. },
  79. },
  80. countryId: {
  81. typeof: String,
  82. default: "100000",
  83. },
  84. },
  85. watch: {
  86. cityId(newVal) {
  87. if (newVal.length == 3) {
  88. this.cityList.forEach((item, index) => {
  89. if (item.pid == newVal[0]) {
  90. this.value.push(index);
  91. item.children.forEach((items, indexs) => {
  92. if (items.pid == newVal[1]) {
  93. this.value.push(indexs);
  94. items.children.forEach((elem, i) => {
  95. if (elem.pid == newVal[2]) {
  96. this.value.push(i);
  97. }
  98. });
  99. }
  100. });
  101. }
  102. });
  103. } else {
  104. this.value = [0, 0, 0];
  105. }
  106. },
  107. countryId(newVal) {
  108. if (newVal != "100000") {
  109. this.getCityList();
  110. }
  111. },
  112. },
  113. data() {
  114. return {
  115. hotCityList: [
  116. "北京",
  117. "上海",
  118. "深圳",
  119. "广州",
  120. "天津",
  121. "青岛",
  122. "长沙",
  123. "成都",
  124. ],
  125. cityList: [],
  126. title: "picker-view",
  127. marketList: [],
  128. distinguishList: [],
  129. value: [0, 0, 0],
  130. result: [],
  131. indicatorStyle: "height: 50px;",
  132. maskTopStyle: "",
  133. maskBottomStyle: "",
  134. economize: {},
  135. market: {},
  136. distinguish: {},
  137. isValue: true,
  138. cityValue: "",
  139. hotCityName: "",
  140. };
  141. },
  142. mounted() {
  143. this.getCityList();
  144. },
  145. methods: {
  146. // open() {
  147. // this.getCityList();
  148. // },
  149. //当选中的城市发生变化时调用
  150. bindChange(e) {
  151. this.isValue = false;
  152. const val = e.detail.value;
  153. this.value = val;
  154. this.marketList = this.cityList[val[0]].children;
  155. this.distinguishList = this.marketList[val[1] || 0].children;
  156. this.economize = this.cityList[val[0]];
  157. this.market = this.marketList[val[1] || 0];
  158. this.distinguish = this.distinguishList[val[2] || 0];
  159. },
  160. //选择热门城市
  161. searchCity(value) {
  162. this.hotCityName = value; //确定选中的城市
  163. this.cityList.map((cityItem, cityIndex) => {
  164. cityItem.children.map((marketItem, marketIndex) => {
  165. if (marketItem.name.includes(value)) {
  166. //赋值市级选择数组
  167. this.marketList = this.cityList[cityIndex].children;
  168. const timer = setTimeout(() => {
  169. this.value = [cityIndex, marketIndex, 0];
  170. //赋值区县级选择数组
  171. this.distinguishList = this.marketList[marketIndex].children;
  172. clearTimeout(timer);
  173. }, 100);
  174. }
  175. });
  176. });
  177. },
  178. //获取城市
  179. getCityList() {
  180. uni.$u.http.get(`/api/area/tree?pid=${this.countryId}`).then((res) => {
  181. this.cityList = res;
  182. if (this.countryId == "100000") {
  183. this.marketList = res[this.value[1]].children;
  184. this.distinguishList = this.marketList[this.value[2]].children;
  185. }
  186. });
  187. },
  188. //提交选中的城市
  189. submit() {
  190. if (this.isValue) {
  191. this.marketList = this.cityList[this.value[0]].children;
  192. this.distinguishList = this.marketList[this.value[1] || 0].children;
  193. this.economize = this.cityList[this.value[0]];
  194. this.market = this.marketList[this.value[1] || 0];
  195. this.distinguish = this.distinguishList[this.value[2] || 0];
  196. }
  197. const obj = {
  198. ...this.economize,
  199. children: {
  200. ...this.market,
  201. children: this.distinguish,
  202. },
  203. };
  204. this.$emit("close", obj);
  205. },
  206. },
  207. };
  208. </script>
  209. <style lang="scss" scoped>
  210. .title {
  211. margin: 32rpx 26rpx;
  212. }
  213. .inp {
  214. background-color: #f4f4f4;
  215. border-radius: 36rpx;
  216. height: 72rpx;
  217. width: 694rpx;
  218. margin: 30rpx auto 0;
  219. padding-left: 20rpx;
  220. }
  221. .city-list {
  222. display: flex;
  223. justify-content: space-around;
  224. flex-wrap: wrap;
  225. .city {
  226. width: 156rpx;
  227. height: 68rpx;
  228. text-align: center;
  229. line-height: 68rpx;
  230. background-color: #f4f4f4;
  231. border-radius: 36rpx;
  232. margin-bottom: 20rpx;
  233. color: #222;
  234. font-size: 28rpx;
  235. }
  236. .select-city {
  237. color: #f83224;
  238. border: 2rpx solid #f83224;
  239. }
  240. }
  241. .confirm {
  242. background-color: #f83224;
  243. border-radius: 40rpx;
  244. color: #fff;
  245. width: 702rpx;
  246. margin: 0 auto;
  247. }
  248. .picker-view {
  249. width: 100%;
  250. height: 180px;
  251. margin-top: 10px;
  252. }
  253. .item {
  254. height: 50px;
  255. }
  256. .text {
  257. line-height: 50px;
  258. text-align: center;
  259. }
  260. .picker-view-column {
  261. text-align: center;
  262. }
  263. </style>