|
@@ -6,18 +6,18 @@
|
|
|
</view>
|
|
|
<radio-group class="radio-group" @change="radioChange" v-if="addressList.length">
|
|
|
<view class='item' v-for="(item,index) in addressList" :key="index">
|
|
|
- <view class='address' @click='goOrder(item.id)'>
|
|
|
- <view class='consignee'>{{$t(`收货人`)}}:{{item.real_name}}<text class='phone'>{{item.phone}}</text></view>
|
|
|
+ <view class='address'>
|
|
|
+ <view class='consignee'>{{$t(`收货人`)}}:{{item.realName}}<text class='phone'>{{item.phone}}</text></view>
|
|
|
<view>{{$t(`收货地址`)}}:{{item.province}}{{item.city}}{{item.district}}{{item.detail}}</view>
|
|
|
</view>
|
|
|
<view class='operation acea-row row-between-wrapper'>
|
|
|
<!-- #ifndef MP -->
|
|
|
- <radio class="radio" :value="index.toString()" :checked="item.is_default ? true : false">
|
|
|
+ <radio class="radio" :value="index.toString()" :checked="item.defaultState ===2">
|
|
|
<text>{{$t(`设为默认`)}}</text>
|
|
|
</radio>
|
|
|
<!-- #endif -->
|
|
|
<!-- #ifdef MP -->
|
|
|
- <radio class="radio" :value="index" :checked="item.is_default ? true : false">
|
|
|
+ <radio class="radio" :value="index" :checked="item.defaultState ===2">
|
|
|
<text>{{$t(`设为默认`)}}</text>
|
|
|
</radio>
|
|
|
<!-- #endif -->
|
|
@@ -38,15 +38,17 @@
|
|
|
</view>
|
|
|
<view style='height:120rpx;'></view>
|
|
|
<view class='footer acea-row row-between-wrapper'>
|
|
|
+ <view class='addressBnt bg-color on' @click='addAddress'><text
|
|
|
+ class='iconfont icon-tianjiadizhi'></text>{{$t(`添加新地址`)}}</view>
|
|
|
<!-- #ifdef APP-PLUS -->
|
|
|
<view class='addressBnt bg-color on' @click='addAddress'><text
|
|
|
class='iconfont icon-tianjiadizhi'></text>{{$t(`添加新地址`)}}</view>
|
|
|
<!-- #endif -->
|
|
|
<!-- #ifdef MP-->
|
|
|
- <view class='addressBnt bg-color' @click='addAddress'><text
|
|
|
- class='iconfont icon-tianjiadizhi'></text>{{$t(`添加新地址`)}}</view>
|
|
|
- <view class='addressBnt wxbnt' @click='getWxAddress'><text class='iconfont icon-weixin2'></text>{{$t(`导入微信地址`)}}
|
|
|
- </view>
|
|
|
+<!-- <view class='addressBnt bg-color' @click='addAddress'><text-->
|
|
|
+<!-- class='iconfont icon-tianjiadizhi'></text>{{$t(`添加新地址`)}}</view>-->
|
|
|
+<!-- <view class='addressBnt wxbnt' @click='getWxAddress'><text class='iconfont icon-weixin2'></text>{{$t(`导入微信地址`)}}-->
|
|
|
+<!-- </view>-->
|
|
|
<!-- #endif -->
|
|
|
<!-- #ifdef H5-->
|
|
|
<view class='addressBnt bg-color' :class="this.$wechat.isWeixin()?'':'on'" @click='addAddress'><text
|
|
@@ -237,7 +239,7 @@
|
|
|
},
|
|
|
/**
|
|
|
* 获取地址列表
|
|
|
- *
|
|
|
+ *
|
|
|
*/
|
|
|
getAddressList: function(isPage) {
|
|
|
let that = this;
|
|
@@ -251,8 +253,8 @@
|
|
|
that.loading = true;
|
|
|
that.loadTitle = '';
|
|
|
getAddressList({
|
|
|
- page: that.page,
|
|
|
- limit: that.limit
|
|
|
+ current: that.page,
|
|
|
+ size: that.limit
|
|
|
}).then(res => {
|
|
|
let list = res.data;
|
|
|
let loadend = list.length < that.limit;
|
|
@@ -340,17 +342,6 @@
|
|
|
uni.navigateTo({
|
|
|
url: '/pages/users/user_address/index?' + '&new=' + this.news
|
|
|
})
|
|
|
- },
|
|
|
- goOrder: function(id) {
|
|
|
- let cartId = '';
|
|
|
- let pinkId = '';
|
|
|
- let couponId = '';
|
|
|
- if (id) {
|
|
|
- uni.redirectTo({
|
|
|
- url: '/pages/points_mall/integral_order?is_address=1&new=' + this.news +
|
|
|
- '&addressId=' + id + '&num=' + this.num + '&unique=' + this.unique
|
|
|
- })
|
|
|
- }
|
|
|
}
|
|
|
},
|
|
|
onReachBottom: function() {
|