|
@@ -41,9 +41,10 @@
|
|
|
</view>
|
|
|
</view> -->
|
|
|
|
|
|
- <view class="form-item required" @click="addressShow = true">
|
|
|
- <view class="form-item-til">详细地址</view>
|
|
|
+ <view class="form-item select-addr required" @click="addressShow = true">
|
|
|
+ <view class="form-item-til">选择地址</view>
|
|
|
<view class="form-item-con">
|
|
|
+ <text v-if="address==''">请选择地址</text>
|
|
|
{{address}}
|
|
|
<pickerAddress v-model="addressShow" @confirm="addresspick" />
|
|
|
</view>
|
|
@@ -126,6 +127,17 @@
|
|
|
longitude: ''
|
|
|
};
|
|
|
export default {
|
|
|
+ // beforeRouteEnter(to, from, next){
|
|
|
+ // console.log('from',from);
|
|
|
+ // next(vm =>{
|
|
|
+ // console.log('22222222',from) // 上一页面的路由信息
|
|
|
+ // })
|
|
|
+ // },
|
|
|
+ // beforeRouteLeave(to, from, next) {
|
|
|
+ // console.log(' beforeRouteLeave !', this)
|
|
|
+ // const answer = window.confirm('确认离开?')
|
|
|
+ // answer ? next() : next(false)
|
|
|
+ // },
|
|
|
components: {
|
|
|
// BaiduMap,
|
|
|
// BmNavigation,
|
|
@@ -147,6 +159,7 @@
|
|
|
address: '',
|
|
|
|
|
|
isedit: false,
|
|
|
+ isselectAddr:false,
|
|
|
addrsList: [],
|
|
|
token:'',
|
|
|
params: Object.assign({},defaultparams),
|
|
@@ -174,12 +187,13 @@
|
|
|
zoom: 12,
|
|
|
}
|
|
|
},
|
|
|
- onShow() {
|
|
|
+ onShow() {
|
|
|
let serf = this;
|
|
|
this.getAddrList();
|
|
|
|
|
|
},
|
|
|
onLoad() {
|
|
|
+
|
|
|
let self = this;
|
|
|
uni.getStorage({
|
|
|
key:'token',
|
|
@@ -188,15 +202,33 @@
|
|
|
// console.log(res.data);
|
|
|
}
|
|
|
});
|
|
|
+ uni.getStorage({
|
|
|
+ key:'selectAddr',
|
|
|
+ success: function (res) {
|
|
|
+ self.isselectAddr = true;
|
|
|
+ // console.log(res.data);
|
|
|
+ },
|
|
|
+ fail:function(){
|
|
|
+ self.isselectAddr = false;
|
|
|
+ }
|
|
|
+ });
|
|
|
|
|
|
|
|
|
+ },
|
|
|
+ onUnload() {
|
|
|
+ console.log('1111111111111');
|
|
|
+ this.isselectAddr = false;
|
|
|
+ uni.setStorage({
|
|
|
+ key:'selectAddr',
|
|
|
+ data:false
|
|
|
+ });
|
|
|
},
|
|
|
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.params.province = obj.province.areaName;
|
|
|
+ this.params.city = obj.city.areaName;
|
|
|
+ this.params.region = obj.area.areaName||'';
|
|
|
this.concatAddr();
|
|
|
},
|
|
|
concatAddr(){
|
|
@@ -205,10 +237,10 @@
|
|
|
getAddrList() {
|
|
|
let thetoken = 'Bearer ' + this.token;
|
|
|
this.$api.http.get(this.config.apiBaseurl + '/member/address/list',{header: {Authorization:thetoken}}).then(res => {
|
|
|
- console.log('getAddrList', res);
|
|
|
+ // console.log('getAddrList', res);
|
|
|
this.addrsList = res.data.data;
|
|
|
if(this.addrsList.length == 1 && this.addrsList[0].defaultStatus!=1){
|
|
|
- console.log('getAddrListlength', this.addrsList[0]);
|
|
|
+ // console.log('getAddrListlength', this.addrsList[0]);
|
|
|
// setTimeout(function(){console.log(this)},5000);
|
|
|
setTimeout(this.setDefault(this.addrsList[0].id),1000);
|
|
|
// this.setDefault(this.addrsList[0].id);
|
|
@@ -224,6 +256,7 @@
|
|
|
this.fixPageOpen = false;
|
|
|
this.params = Object.assign({},defaultparams);
|
|
|
this.isedit = false;
|
|
|
+ this.address = '';
|
|
|
this.getAddrList();
|
|
|
|
|
|
},
|
|
@@ -273,7 +306,7 @@
|
|
|
Authorization: 'Bearer '+ this.token, //注意Bearer后面有一空格
|
|
|
},
|
|
|
}).then(res => {
|
|
|
- this.closeFixPage();
|
|
|
+ this.closeFixPage();
|
|
|
//产品跳转
|
|
|
uni.getStorage({
|
|
|
key:'productID',
|
|
@@ -315,14 +348,14 @@
|
|
|
this.$refs.popup.open();
|
|
|
},
|
|
|
selectDefault(item){
|
|
|
- console.log('item',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);
|
|
|
- },
|
|
|
+ if(this.isselectAddr){this.$router.go(-1);}
|
|
|
+ },
|
|
|
setDefault(id){
|
|
|
this.$api.http.put(this.config.apiBaseurl + '/member/address/default/'+id,{},{
|
|
|
header: {
|