|
@@ -1,16 +1,17 @@
|
|
|
<template>
|
|
|
<view class="pages">
|
|
|
<view class="addrs">
|
|
|
- <view class="addrs-item" :class="item.defaultStatus==1?'default':''" v-for="(item,index) in addrsList" :key="index" @click="editAddr(item)">
|
|
|
- <view class="addrs-item-content">
|
|
|
+ <view class="addrs-item" :class="item.defaultStatus==1?'default':''" v-for="(item,index) in addrsList" :key="index">
|
|
|
+ <view class="addrs-item-content" @click="selectDefault(item)">
|
|
|
<view class="addrs-item-upwrap">
|
|
|
<view class="addrs-item-name">收货人:{{item.name}}</view>
|
|
|
<view class="addrs-item-phoneNumber">{{item.phoneNumber}}</view>
|
|
|
</view>
|
|
|
<view class="addrs-item-addr">收货地址:{{item.province}}{{item.city}}{{item.region}}{{item.detailAddress}}</view>
|
|
|
</view>
|
|
|
- <view class="addrs-item-icon-wrap">
|
|
|
- <text class="iconfont iconGroup" v-if="item.defaultStatus == 1"></text>
|
|
|
+ <view class="addrs-item-icon-wrap" @click="editAddr(item)">
|
|
|
+ <!-- <text class="iconfont iconGroup" v-if="item.defaultStatus == 1"></text> -->
|
|
|
+ <text>编辑</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -21,7 +22,7 @@
|
|
|
<view class="newaddr-page fix-content translate" :class="{ 'open': fixPageOpen }">
|
|
|
<view class="fix-content-nav"><text @click="closeFixPage" class="iconfont iconhoutui"></text></view>
|
|
|
|
|
|
- <view class="form-item required">
|
|
|
+ <!-- <view class="form-item required">
|
|
|
<view class="form-item-til">所在省</view>
|
|
|
<view class="form-item-con">
|
|
|
<input type="text" placeholder="请选择/输入" v-model="params.province" value="" />
|
|
@@ -38,6 +39,14 @@
|
|
|
<view class="form-item-con">
|
|
|
<input type="text" placeholder="请选择/输入" v-model="params.region" value="" />
|
|
|
</view>
|
|
|
+ </view> -->
|
|
|
+
|
|
|
+ <view class="form-item required" @click="addressShow = true">
|
|
|
+ <view class="form-item-til">详细地址</view>
|
|
|
+ <view class="form-item-con">
|
|
|
+ {{address}}
|
|
|
+ <pickerAddress v-model="addressShow" @confirm="addresspick" />
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<view class="form-item required">
|
|
|
<view class="form-item-til">详细地址</view>
|
|
@@ -76,17 +85,13 @@
|
|
|
<view class="form-item-til" @click="saveAddr">保存收货地址</view>
|
|
|
</view>
|
|
|
|
|
|
- <baidu-map class="map" :center="center" :zoom="zoom" @ready="handlermap" :scroll-wheel-zoom="true" @click="clickEvent"
|
|
|
+ <!-- <baidu-map class="map" :center="center" :zoom="zoom" @ready="handlermap" :scroll-wheel-zoom="true" @click="clickEvent"
|
|
|
ak="BSf4i2bljmxl8R0x28cjOy8KMVrCVzev">
|
|
|
- <!-- 地图控件位置 -->
|
|
|
<bm-navigation anchor="BMAP_ANCHOR_TOP_RIGHT"></bm-navigation>
|
|
|
- <!-- 获取城市列表 -->
|
|
|
<bm-city-list anchor="BMAP_ANCHOR_TOP_LEFT"></bm-city-list>
|
|
|
- <!-- 定位当前位置 -->
|
|
|
<bm-geolocation anchor="BMAP_ANCHOR_BOTTOM_RIGHT" :showAddressBar="true" :autoLocation="true" @locationSuccess="getLoctionSuccess"></bm-geolocation>
|
|
|
- <!-- 地图容器 -->
|
|
|
<bm-view :style="{width:'100%',height: '400px'}"></bm-view>
|
|
|
- </baidu-map>
|
|
|
+ </baidu-map> -->
|
|
|
|
|
|
</view>
|
|
|
<!-- 地址编辑 -->
|
|
@@ -97,15 +102,16 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
- import {
|
|
|
- BaiduMap,
|
|
|
- BmNavigation,
|
|
|
- BmView,
|
|
|
- BmGeolocation,
|
|
|
- BmCityList
|
|
|
- } from 'vue-baidu-map';
|
|
|
+ // import {
|
|
|
+ // BaiduMap,
|
|
|
+ // BmNavigation,
|
|
|
+ // BmView,
|
|
|
+ // BmGeolocation,
|
|
|
+ // BmCityList
|
|
|
+ // } from 'vue-baidu-map';
|
|
|
import uniPopup from '@/components/uni-popup/uni-popup.vue';
|
|
|
import uniPopupDialog from '@/components/uni-popup/uni-popup-dialog.vue';
|
|
|
+ import pickerAddress from '@/components/liudx-pickerAddress/index.vue'
|
|
|
const defaultparams= {
|
|
|
token: '',
|
|
|
name: '',
|
|
@@ -121,16 +127,25 @@
|
|
|
};
|
|
|
export default {
|
|
|
components: {
|
|
|
- BaiduMap,
|
|
|
- BmNavigation,
|
|
|
- BmView,
|
|
|
- BmGeolocation,
|
|
|
- BmCityList,
|
|
|
+ // BaiduMap,
|
|
|
+ // BmNavigation,
|
|
|
+ // BmView,
|
|
|
+ // BmGeolocation,
|
|
|
+ // BmCityList,
|
|
|
uniPopup,
|
|
|
uniPopupDialog,
|
|
|
+ pickerAddress
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ addressShow: false,
|
|
|
+ form: {
|
|
|
+ province: '',
|
|
|
+ city: '',
|
|
|
+ area: '',
|
|
|
+ },
|
|
|
+ address: '',
|
|
|
+
|
|
|
isedit: false,
|
|
|
addrsList: [],
|
|
|
token:'',
|
|
@@ -177,6 +192,16 @@
|
|
|
|
|
|
},
|
|
|
methods: {
|
|
|
+ addresspick(obj) {
|
|
|
+ console.log('addresspick',obj);
|
|
|
+ this.params.province = obj.province.AreaName;
|
|
|
+ this.params.city = obj.city.AreaName;
|
|
|
+ this.params.region = obj.area.AreaName||'';
|
|
|
+ this.concatAddr();
|
|
|
+ },
|
|
|
+ concatAddr(){
|
|
|
+ this.address = this.params.province + this.params.city +this.params.region;
|
|
|
+ },
|
|
|
getAddrList() {
|
|
|
let thetoken = 'Bearer ' + this.token;
|
|
|
this.$api.http.get(this.config.apiBaseurl + '/member/address/list',{header: {Authorization:thetoken}}).then(res => {
|
|
@@ -214,6 +239,7 @@
|
|
|
editAddr(item){
|
|
|
this.isedit = true;
|
|
|
this.params = Object.assign(this.params,item);
|
|
|
+ this.concatAddr();
|
|
|
this.fixPageOpen = true;
|
|
|
},
|
|
|
saveAddr(){
|
|
@@ -248,12 +274,25 @@
|
|
|
},
|
|
|
}).then(res => {
|
|
|
this.closeFixPage();
|
|
|
+ //产品跳转
|
|
|
+ uni.getStorage({
|
|
|
+ key:'productID',
|
|
|
+ success: res => {
|
|
|
+ console.log('productID',res.data);
|
|
|
+ this.jumpProduct(res.data);
|
|
|
+ uni.removeStorage({
|
|
|
+ key:'productID'
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ //产品跳转
|
|
|
// console.log('res',res)
|
|
|
}).catch(err =>{
|
|
|
console.log('err',err)
|
|
|
});
|
|
|
}
|
|
|
|
|
|
+
|
|
|
},
|
|
|
closepopup(done){
|
|
|
done()
|
|
@@ -275,6 +314,15 @@
|
|
|
delAddr(item){
|
|
|
this.$refs.popup.open();
|
|
|
},
|
|
|
+ selectDefault(item){
|
|
|
+ console.log('item',item);
|
|
|
+ if(item.defaultStatus != 1){
|
|
|
+ this.setDefault(item.id);
|
|
|
+ }
|
|
|
+ console.log(this.$router);
|
|
|
+ console.log(this.$router.history.current.fullPath);
|
|
|
+ this.$router.go(-1);
|
|
|
+ },
|
|
|
setDefault(id){
|
|
|
this.$api.http.put(this.config.apiBaseurl + '/member/address/default/'+id,{},{
|
|
|
header: {
|
|
@@ -302,77 +350,86 @@
|
|
|
return false;
|
|
|
}
|
|
|
return bool;
|
|
|
+ },
|
|
|
+ //产品跳转链接
|
|
|
+ jumpProduct(id){
|
|
|
+ uni.navigateTo({
|
|
|
+ url:`/pages/product/product?id=${id}`,
|
|
|
+ fail(err) {
|
|
|
+ console.log(err)
|
|
|
+ }
|
|
|
+ })
|
|
|
},
|
|
|
- handlermap({
|
|
|
- BMap,
|
|
|
- map
|
|
|
- }) {
|
|
|
- let _this = this;
|
|
|
- var geolocation = new BMap.Geolocation();
|
|
|
- geolocation.getCurrentPosition(function(r) {
|
|
|
- // console.log(r);
|
|
|
- _this.center = {
|
|
|
- lng: r.longitude,
|
|
|
- lat: r.latitude
|
|
|
- }; // 设置center属性值
|
|
|
- // console.log('_this.center',_this.params);
|
|
|
- if (_this.params.latitude && _this.params.longitude) {
|
|
|
- let transqq = qqMapTransBMap(_this.params.longitude, _this.params.latitude);
|
|
|
- // console.log('transqq',transqq);
|
|
|
- _this.center = {
|
|
|
- lng: transqq.lng,
|
|
|
- lat: transqq.lat
|
|
|
- };
|
|
|
- };
|
|
|
- let Icon_0 = new BMap.Icon("static/img/zuobiao.gif", new BMap.Size(64, 64), {
|
|
|
- anchor: new BMap.Size(18, 32),
|
|
|
- imageSize: new BMap.Size(36, 36)
|
|
|
- });
|
|
|
- let myMarker = new BMap.Marker(new BMap.Point(_this.params.longitude, _this.params.latitude), {
|
|
|
- icon: Icon_0
|
|
|
- });
|
|
|
- // map.addOverlay(myMarker);
|
|
|
- _this.autoLocationPoint = {
|
|
|
- lng: r.longitude,
|
|
|
- lat: r.latitude
|
|
|
- }; // 自定义覆盖物
|
|
|
- _this.initLocation = true;
|
|
|
- }, {
|
|
|
- enableHighAccuracy: true
|
|
|
- })
|
|
|
- window.map = map;
|
|
|
- },
|
|
|
+ // handlermap({
|
|
|
+ // BMap,
|
|
|
+ // map
|
|
|
+ // }) {
|
|
|
+ // let _this = this;
|
|
|
+ // var geolocation = new BMap.Geolocation();
|
|
|
+ // geolocation.getCurrentPosition(function(r) {
|
|
|
+ // // console.log(r);
|
|
|
+ // _this.center = {
|
|
|
+ // lng: r.longitude,
|
|
|
+ // lat: r.latitude
|
|
|
+ // }; // 设置center属性值
|
|
|
+ // // console.log('_this.center',_this.params);
|
|
|
+ // if (_this.params.latitude && _this.params.longitude) {
|
|
|
+ // let transqq = qqMapTransBMap(_this.params.longitude, _this.params.latitude);
|
|
|
+ // // console.log('transqq',transqq);
|
|
|
+ // _this.center = {
|
|
|
+ // lng: transqq.lng,
|
|
|
+ // lat: transqq.lat
|
|
|
+ // };
|
|
|
+ // };
|
|
|
+ // let Icon_0 = new BMap.Icon("static/img/zuobiao.gif", new BMap.Size(64, 64), {
|
|
|
+ // anchor: new BMap.Size(18, 32),
|
|
|
+ // imageSize: new BMap.Size(36, 36)
|
|
|
+ // });
|
|
|
+ // let myMarker = new BMap.Marker(new BMap.Point(_this.params.longitude, _this.params.latitude), {
|
|
|
+ // icon: Icon_0
|
|
|
+ // });
|
|
|
+ // // map.addOverlay(myMarker);
|
|
|
+ // _this.autoLocationPoint = {
|
|
|
+ // lng: r.longitude,
|
|
|
+ // lat: r.latitude
|
|
|
+ // }; // 自定义覆盖物
|
|
|
+ // _this.initLocation = true;
|
|
|
+ // }, {
|
|
|
+ // enableHighAccuracy: true
|
|
|
+ // })
|
|
|
+ // window.map = map;
|
|
|
+ // },
|
|
|
//点击地图监听
|
|
|
- clickEvent(e) {
|
|
|
- map.clearOverlays();
|
|
|
- let Icon_0 = new BMap.Icon("static/img/zuobiao.gif", new BMap.Size(64, 64), {
|
|
|
- anchor: new BMap.Size(18, 32),
|
|
|
- imageSize: new BMap.Size(36, 36)
|
|
|
- });
|
|
|
- var myMarker = new BMap.Marker(new BMap.Point(e.point.lng, e.point.lat), {
|
|
|
- icon: Icon_0
|
|
|
- });
|
|
|
- map.addOverlay(myMarker);
|
|
|
- //用所定位的经纬度查找所在地省市街道等信息
|
|
|
- var point = new BMap.Point(e.point.lng, e.point.lat);
|
|
|
- var gc = new BMap.Geocoder();
|
|
|
- let _this = this;
|
|
|
- gc.getLocation(point, function(rs) {
|
|
|
- var addComp = rs.addressComponents;
|
|
|
- console.log(rs); //地址信息
|
|
|
- _this.params.province = rs.addressComponents.province;
|
|
|
- _this.params.city = rs.addressComponents.city;
|
|
|
- _this.params.region = rs.addressComponents.district;
|
|
|
- uni.showToast({
|
|
|
- title:"选择成功!",
|
|
|
- icon:"none",
|
|
|
- duration:800
|
|
|
- });
|
|
|
- // _this.params.detailAddress = rs.address;
|
|
|
- });
|
|
|
- //转为高德坐标
|
|
|
- // let transGaode = bMapTransQQMap(e.point.lng, e.point.lat);
|
|
|
- },
|
|
|
+ // clickEvent(e) {
|
|
|
+ // map.clearOverlays();
|
|
|
+ // let Icon_0 = new BMap.Icon("static/img/zuobiao.gif", new BMap.Size(64, 64), {
|
|
|
+ // anchor: new BMap.Size(18, 32),
|
|
|
+ // imageSize: new BMap.Size(36, 36)
|
|
|
+ // });
|
|
|
+ // var myMarker = new BMap.Marker(new BMap.Point(e.point.lng, e.point.lat), {
|
|
|
+ // icon: Icon_0
|
|
|
+ // });
|
|
|
+ // map.addOverlay(myMarker);
|
|
|
+ // //用所定位的经纬度查找所在地省市街道等信息
|
|
|
+ // var point = new BMap.Point(e.point.lng, e.point.lat);
|
|
|
+ // var gc = new BMap.Geocoder();
|
|
|
+ // let _this = this;
|
|
|
+ // gc.getLocation(point, function(rs) {
|
|
|
+ // var addComp = rs.addressComponents;
|
|
|
+ // console.log(rs); //地址信息
|
|
|
+ // _this.params.province = rs.addressComponents.province;
|
|
|
+ // _this.params.city = rs.addressComponents.city;
|
|
|
+ // _this.params.region = rs.addressComponents.district;
|
|
|
+ // uni.showToast({
|
|
|
+ // title:"选择成功!",
|
|
|
+ // icon:"none",
|
|
|
+ // duration:800
|
|
|
+ // });
|
|
|
+ // // _this.params.detailAddress = rs.address;
|
|
|
+ // });
|
|
|
+ // //转为高德坐标
|
|
|
+ // // let transGaode = bMapTransQQMap(e.point.lng, e.point.lat);
|
|
|
+ // },
|
|
|
|
|
|
}
|
|
|
}
|