diff --git a/pages/users/user_address/index.vue b/pages/users/user_address/index.vue index c9f44f9..5a445d0 100644 --- a/pages/users/user_address/index.vue +++ b/pages/users/user_address/index.vue @@ -1,8 +1,44 @@ + + + + + 选择收货地址 + + + + 姓名 - + + 详细地址 - - @@ -86,7 +106,9 @@ import { editAddress, getAddressDetail } from '@/api/user.js'; -import { wgsToGcj } from "@/utils/wgs.js"; +import { + wgsToGcj +} from "@/utils/wgs.js"; import { getCityV2, getCityList @@ -113,7 +135,8 @@ export default { couponId: 0, //优惠券id address_id: 0, //地址id userAddress: { - is_default: false + is_default: false, + detail: '', }, //地址详情 region: ['省', '市', '区'], valueRegion: [0, 0, 0], @@ -126,10 +149,15 @@ export default { display: false, display_one: false, addressInfo: [], + newAddrInfo: '', + newPCAS: '', villageInfo: [], list: [], latitude: '', - longitude: '' + longitude: '', + detail: '', //四川省泸州市龙马潭区龙门大道15号 + location: '', // 经纬度 + }; }, computed: { @@ -158,14 +186,38 @@ export default { } }, methods: { + + // 选择地址 + handleToChoose() { + let that = this; + // #ifdef H5 + uni.navigateTo({ + url: "/pages/select_address_n/select_address_n", + success: (res) => { + uni.$once('changeAddress', res => { + console.log(res) + // this.newAddrInfo = res.addr; "name": "中国,四川省,泸州市,龙马潭区", + that.detail = res.addr.address; + that.location = res.addr.location; + }) + } + }) + // #endif + // #ifndef H5 + uni.chooseLocation({ + success: function (res) { + that.userAddress.detail = res.address; + that.location = `${res.latitude},${res.longitude}`;; + } + }); + // #endif + }, + OnChangeAddress(address) { this.addressInfo = address; this.list = address }, - OnChangevAddress(address) { - this.villageInfo = address; - console.log(this.villageInfo) - }, + // 地址数据 getCityList: function() { let that = this; @@ -208,11 +260,13 @@ export default { let region = [res.data.province, res.data.city, res.data.district, res.data.street, res .data.village ]; - console.log({...res.data}); + console.log({ + ...res.data + }); that.$set(that, 'userAddress', res.data); that.$set(that, 'region', region); that.city_id = res.data.city_id - if(res.data.areas) that.addressInfo = res.data.areas; + if (res.data.areas) that.addressInfo = res.data.areas; else { } @@ -344,6 +398,8 @@ export default { formSubmit: function(e) { let that = this, value = e.detail.value; + value.location = this.location + if (!value.real_name) return that.$util.Tips({ title: '请填写收货人姓名' }); @@ -353,19 +409,22 @@ export default { if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(value.phone)) return that.$util.Tips({ title: '请输入正确的手机号码' }); - if (!that.addressInfo.length) return that.$util.Tips({ - title: '请选择所在地区' - }); + // if (!that.detail.length) return that.$util.Tips({ + // title: '请选择所在地区' + // }); // if (!that.villageInfo.length) return that.$util.Tips({ // title: '请选择所在村队' // }); if (!value.detail) return that.$util.Tips({ title: '请填写详细地址' }); + if (!value.location) return that.$util.Tips({ + title: '请填写详细地址' + }); value.address_id = that.address_id; value.is_default = that.userAddress.is_default ? 1 : 0; - value.area = that.addressInfo; - value.brigade = that.villageInfo[0] + value.area = that.detail; + // value.brigade = that.villageInfo[0] uni.showLoading({ title: '保存中', @@ -470,8 +529,11 @@ export default { } .region .region_count { - height: 42rpx; - line-height: 42rpx; + // height: 42rpx; + // line-height: 42rpx; + display: flex; + align-items: center; + justify-content: space-between; .icon-xiangyou { float: right; diff --git a/vue.config.js b/vue.config.js index d74d24e..9b302ca 100644 --- a/vue.config.js +++ b/vue.config.js @@ -8,6 +8,7 @@ // | Author: CRMEB Team // +---------------------------------------------------------------------- module.exports = { + publicPath: '/h5', productionSourceMap: false, // 生产打包时不输出map文件,增加打包速度 configureWebpack: config => { if (process.env.NODE_ENV === 'production') {