index.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. <template>
  2. <u-popup :maskCloseAble="maskCloseAble" mode="bottom" :popup="false" v-model="value" length="auto"
  3. :safeAreaInsetBottom="safeAreaInsetBottom" @close="close" z-index="999">
  4. <view class="u-picker-header" @touchmove.stop.prevent="stop" catchtouchmove="stop">
  5. <view class="u-btn-picker u-btn-picker--tips" hover-class="u-opacity"
  6. :hover-stay-time="150" @tap="getResult('cancel')">取消</view>
  7. <view class="u-btn-picker u-btn-picker--primary" hover-class="u-opacity"
  8. :hover-stay-time="150" @touchmove.stop="" @tap.stop="getResult('confirm')">确定</view>
  9. </view>
  10. <view class="u-picker-body">
  11. <picker-view :value="pickVal" @change="bindChange" class="u-picker-view">
  12. <picker-view-column>
  13. <view class="u-column-item" v-for="(item,index) in districtsObj.provinces" :key="index">
  14. <view class="u-line-1">
  15. {{item.areaName}}
  16. </view>
  17. </view>
  18. </picker-view-column>
  19. <picker-view-column>
  20. <view class="u-column-item" v-for="(item,index) in districtsObj.cities" :key="index">
  21. <view class="u-line-1">
  22. {{item.areaName}}
  23. </view>
  24. </view>
  25. </picker-view-column>
  26. <picker-view-column>
  27. <view class="u-column-item" v-for="(item,index) in districtsObj.areas" :key="index">
  28. <view class="u-line-1">
  29. {{item.areaName}}
  30. </view>
  31. </view>
  32. </picker-view-column>
  33. </picker-view>
  34. </view>
  35. </u-popup>
  36. </template>
  37. <script>
  38. import uPopup from './u-popup'
  39. export default {
  40. props: {
  41. safeAreaInsetBottom: {
  42. type: Boolean,
  43. default: false
  44. },
  45. // 是否允许通过点击遮罩关闭Picker
  46. maskCloseAble: {
  47. type: Boolean,
  48. default: true
  49. },
  50. // 通过双向绑定控制组件的弹出与收起
  51. value: {
  52. type: Boolean,
  53. default: false
  54. },
  55. },
  56. data() {
  57. return {
  58. token:'',
  59. pickVal:[0, 0, 0],
  60. districtsObj: {
  61. provinces: [],
  62. cities: [],
  63. areas: [],
  64. },
  65. province: 0,
  66. city: 0,
  67. area: 0
  68. }
  69. },
  70. watch: {
  71. // 如果地区发生变化,为了让picker联动起来,必须重置this.citys和this.areas
  72. province(val) {
  73. this.loadCities(this.districtsObj.provinces[this.province].areaId);
  74. },
  75. city(val) {
  76. this.loadAreas(this.districtsObj.cities[this.city].areaId);
  77. }
  78. },
  79. mounted() {
  80. let self = this;
  81. uni.getStorage({
  82. key:'token',
  83. success: function (res) {
  84. self.token = res.data;
  85. },
  86. fail:function(err){
  87. console.log('getStorage err',err)
  88. }
  89. });
  90. this.loadDistrict()
  91. },
  92. methods: {
  93. close() {
  94. this.$emit('input', false);
  95. },
  96. async loadDistrict() {
  97. this.loadProvinces()
  98. },
  99. loadProvinces() { // 加载省份
  100. uni.request({
  101. // url: 'http://test-api.tiananhub.com/api/province/GetListProvince',
  102. url: this.config.apiBaseurl + '/positiont/search',
  103. header: {
  104. Authorization:'Bearer ' + this.token
  105. },
  106. method: 'get',
  107. success: async (res) => {
  108. let {data} = res.data
  109. this.districtsObj.provinces = data
  110. this.loadCities(data[0].areaId)
  111. },
  112. fail:async(res) => {
  113. }
  114. })
  115. },
  116. loadCities(areaId) {
  117. uni.request({
  118. // url: 'http://test-api.tiananhub.com/api/province/GetListCity',
  119. url: this.config.apiBaseurl + '/positiont/search',
  120. header: {
  121. Authorization:'Bearer ' + this.token
  122. },
  123. data: {
  124. parentId:areaId
  125. },
  126. method: 'get',
  127. success: async (res) => {
  128. let {data} = res.data
  129. this.districtsObj.cities = data
  130. if(data[0]){this.loadAreas(data[0].areaId)}
  131. },
  132. fail:async(res) => {
  133. }
  134. })
  135. },
  136. loadAreas(areaId) {
  137. uni.request({
  138. // url: 'http://test-api.tiananhub.com/api/province/GetListCity',
  139. url: this.config.apiBaseurl + '/positiont/search',
  140. header: {
  141. Authorization:'Bearer ' + this.token
  142. },
  143. data: {
  144. parentId:areaId
  145. },
  146. method: 'get',
  147. success: async (res) => {
  148. let {data} = res.data
  149. this.districtsObj.areas = data
  150. },
  151. fail:async(res) => {
  152. }
  153. })
  154. },
  155. bindChange(event) {
  156. this.pickVal = event.detail.value;
  157. let i = 0;
  158. this.province = this.pickVal[i++];
  159. this.city = this.pickVal[i++];
  160. this.area = this.pickVal[i++];
  161. },
  162. getResult(event = null) {
  163. let result = {
  164. province: this.districtsObj.provinces[this.province],
  165. city: this.districtsObj.cities[this.city],
  166. area: this.districtsObj.areas[this.area]|| new Object(),
  167. }
  168. if (event) this.$emit(event, result);
  169. this.close();
  170. }
  171. },
  172. components:{
  173. uPopup
  174. }
  175. }
  176. </script>
  177. <style lang="scss" scoped>
  178. .u-datetime-picker {
  179. position: relative;
  180. z-index: 999;
  181. }
  182. .u-picker-view {
  183. height: 100%;
  184. box-sizing: border-box;
  185. }
  186. .u-picker-header {
  187. width: 100%;
  188. height: 90rpx;
  189. padding: 0 40rpx;
  190. display: flex;
  191. justify-content: space-between;
  192. align-items: center;
  193. box-sizing: border-box;
  194. font-size: 32rpx;
  195. background: #ddd;
  196. position: relative;
  197. }
  198. .u-picker-header::after {
  199. content: '';
  200. position: absolute;
  201. border-bottom: 1rpx solid #eaeef1;
  202. -webkit-transform: scaleY(0.5);
  203. transform: scaleY(0.5);
  204. bottom: 0;
  205. right: 0;
  206. left: 0;
  207. }
  208. .u-picker-body {
  209. width: 100%;
  210. height: 500rpx;
  211. overflow: hidden;
  212. background-color: #fff;
  213. }
  214. .u-column-item {
  215. display: flex;
  216. align-items: center;
  217. justify-content: center;
  218. font-size: 32rpx;
  219. padding: 0 8rpx;
  220. }
  221. .u-text {
  222. font-size: 24rpx;
  223. padding-left: 8rpx;
  224. }
  225. .u-btn-picker {
  226. padding: 16rpx;
  227. box-sizing: border-box;
  228. text-align: center;
  229. text-decoration: none;
  230. }
  231. .u-opacity {
  232. opacity: 0.5;
  233. }
  234. .u-btn-picker--primary {
  235. }
  236. .u-btn-picker--tips {
  237. }
  238. </style>