123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- <template>
- <u-popup :maskCloseAble="maskCloseAble" mode="bottom" :popup="false" v-model="value" length="auto"
- :safeAreaInsetBottom="safeAreaInsetBottom" @close="close" z-index="999">
- <view class="u-picker-header" @touchmove.stop.prevent="stop" catchtouchmove="stop">
- <view class="u-btn-picker u-btn-picker--tips" hover-class="u-opacity"
- :hover-stay-time="150" @tap="getResult('cancel')">取消</view>
- <view class="u-btn-picker u-btn-picker--primary" hover-class="u-opacity"
- :hover-stay-time="150" @touchmove.stop="" @tap.stop="getResult('confirm')">确定</view>
- </view>
- <view class="u-picker-body">
- <picker-view :value="pickVal" @change="bindChange" class="u-picker-view">
- <picker-view-column>
- <view class="u-column-item" v-for="(item,index) in districtsObj.provinces" :key="index">
- <view class="u-line-1">
- {{item.areaName}}
- </view>
- </view>
- </picker-view-column>
- <picker-view-column>
- <view class="u-column-item" v-for="(item,index) in districtsObj.cities" :key="index">
- <view class="u-line-1">
- {{item.areaName}}
- </view>
- </view>
- </picker-view-column>
- <picker-view-column>
- <view class="u-column-item" v-for="(item,index) in districtsObj.areas" :key="index">
- <view class="u-line-1">
- {{item.areaName}}
- </view>
- </view>
- </picker-view-column>
- </picker-view>
- </view>
- </u-popup>
- </template>
- <script>
- import uPopup from './u-popup'
- export default {
- props: {
- safeAreaInsetBottom: {
- type: Boolean,
- default: false
- },
- // 是否允许通过点击遮罩关闭Picker
- maskCloseAble: {
- type: Boolean,
- default: true
- },
- // 通过双向绑定控制组件的弹出与收起
- value: {
- type: Boolean,
- default: false
- },
- },
- data() {
- return {
- token:'',
- pickVal:[0, 0, 0],
- districtsObj: {
- provinces: [],
- cities: [],
- areas: [],
- },
- province: 0,
- city: 0,
- area: 0
- }
- },
- watch: {
- // 如果地区发生变化,为了让picker联动起来,必须重置this.citys和this.areas
- province(val) {
- this.loadCities(this.districtsObj.provinces[this.province].areaId);
- },
- city(val) {
- this.loadAreas(this.districtsObj.cities[this.city].areaId);
- }
- },
- mounted() {
- let self = this;
- uni.getStorage({
- key:'token',
- success: function (res) {
- self.token = res.data;
- },
- fail:function(err){
- console.log('getStorage err',err)
- }
- });
- this.loadDistrict()
- },
- methods: {
- close() {
- this.$emit('input', false);
- },
- async loadDistrict() {
- this.loadProvinces()
- },
- loadProvinces() { // 加载省份
- uni.request({
- // url: 'http://test-api.tiananhub.com/api/province/GetListProvince',
- url: this.config.apiBaseurl + '/positiont/search',
- header: {
- Authorization:'Bearer ' + this.token
- },
- method: 'get',
- success: async (res) => {
- let {data} = res.data
- this.districtsObj.provinces = data
- this.loadCities(data[0].areaId)
- },
- fail:async(res) => {
- }
- })
- },
- loadCities(areaId) {
- uni.request({
- // url: 'http://test-api.tiananhub.com/api/province/GetListCity',
- url: this.config.apiBaseurl + '/positiont/search',
- header: {
- Authorization:'Bearer ' + this.token
- },
- data: {
- parentId:areaId
- },
- method: 'get',
- success: async (res) => {
- let {data} = res.data
- this.districtsObj.cities = data
- if(data[0]){this.loadAreas(data[0].areaId)}
- },
- fail:async(res) => {
- }
- })
- },
- loadAreas(areaId) {
- uni.request({
- // url: 'http://test-api.tiananhub.com/api/province/GetListCity',
- url: this.config.apiBaseurl + '/positiont/search',
- header: {
- Authorization:'Bearer ' + this.token
- },
- data: {
- parentId:areaId
- },
- method: 'get',
- success: async (res) => {
- let {data} = res.data
- this.districtsObj.areas = data
- },
- fail:async(res) => {
- }
- })
- },
- bindChange(event) {
- this.pickVal = event.detail.value;
- let i = 0;
- this.province = this.pickVal[i++];
- this.city = this.pickVal[i++];
- this.area = this.pickVal[i++];
- },
- getResult(event = null) {
- let result = {
- province: this.districtsObj.provinces[this.province],
- city: this.districtsObj.cities[this.city],
- area: this.districtsObj.areas[this.area]|| new Object(),
- }
- if (event) this.$emit(event, result);
- this.close();
- }
- },
- components:{
- uPopup
- }
- }
- </script>
- <style lang="scss" scoped>
- .u-datetime-picker {
- position: relative;
- z-index: 999;
- }
- .u-picker-view {
- height: 100%;
- box-sizing: border-box;
- }
- .u-picker-header {
- width: 100%;
- height: 90rpx;
- padding: 0 40rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- box-sizing: border-box;
- font-size: 32rpx;
- background: #ddd;
- position: relative;
- }
- .u-picker-header::after {
- content: '';
- position: absolute;
- border-bottom: 1rpx solid #eaeef1;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- bottom: 0;
- right: 0;
- left: 0;
- }
- .u-picker-body {
- width: 100%;
- height: 500rpx;
- overflow: hidden;
- background-color: #fff;
- }
- .u-column-item {
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 32rpx;
- padding: 0 8rpx;
- }
- .u-text {
- font-size: 24rpx;
- padding-left: 8rpx;
- }
- .u-btn-picker {
- padding: 16rpx;
- box-sizing: border-box;
- text-align: center;
- text-decoration: none;
- }
- .u-opacity {
- opacity: 0.5;
- }
-
- .u-btn-picker--primary {
- }
-
- .u-btn-picker--tips {
- }
- </style>
|