You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

218 lines
4.8 KiB

2 years ago
<!-- 地址列表 -->
<template>
2 years ago
<view class="address-wrap" style="padding-top: 46rpx;">
2 years ago
<view class="address-list" v-for="address in addressList" :key="address.id" @tap="useAddress(address)">
2 years ago
<image src="../../../static/images/addr.png" mode=""></image>
<view style="margin-left:20upx;">
<view class="top u-flex">
<text class="name">{{ address.consignee }}</text>
<text class="phone">{{ address.phone }}</text>
<text class="tag" v-show="address.is_default === '1'">默认</text>
</view>
<view class="detail">{{ address.province_name }}{{ address.city_name }}{{ address.area_name }}{{ address.address }}</view>
<button class="u-reset-button set-btn" @tap.stop="jump('/pages/user/address/edit', { id: address.id })">
<image src="../../../static/images/edit.png" mode=""></image>
</button>
<button class="u-reset-button del-btn" @tap.stop="deleteAddress(address.id)">
<image src="../../../static/images/delete.png" mode=""></image>
</button>
2 years ago
</view>
</view>
<view class="foot_box-wrap safe-area-inset-bottom">
<view class="foot_box u-flex u-row-between safe-area-inset-bottom">
<!-- 微信小程序和微信H5 -->
<button
class="u-reset-button sync-wxaddress u-m-20 u-flex u-row-center u-col-center"
@tap="getWXaddress"
v-show="platform == 'wxMiniProgram' || platform == 'wxOfficialAccount'"
>
2 years ago
<text class="u-iconfont uicon-weixin-fill u-p-r-10" style="color: #F0D2A0;font-size:34rpx;"></text>
2 years ago
导入微信地址
</button>
<button class="u-reset-button add-btn u-m-20" @tap="jump('/pages/user/address/edit')">添加新的收货地址</button>
</view>
</view>
</view>
</template>
<script>
import Auth from '@/shopro/permission/index.js';
export default {
components: {},
data() {
return {
addressList: [],
platform: this.$platform.get()
};
},
computed: {},
onLoad() {},
onShow() {
this.getAddressList();
},
methods: {
// 选中
useAddress(addressData) {
uni.$emit('SELECT_ADDRESS', { addressData: JSON.stringify(addressData) });
uni.navigateBack()
},
// 路由跳转
jump(path, parmas) {
this.$Router.push({
path: path,
query: parmas
});
},
// 微信导入
getWXaddress() {
let authState = new Auth('address').check();
// #ifdef MP
authState &&
uni.chooseAddress({
success: res => {
this.jump('/pages/user/address/edit', { addressData: res });
},
fail: err => {
console.log('%cuni.chooseAddress,调用失败', 'color:green;background:yellow');
}
});
// #endif
// #ifdef H5
this.$wxsdk.openAddress(res => {
this.jump('/pages/user/address/edit', { addressData: res });
});
// #endif
},
getAddressList() {
this.$http('address.list').then(res => {
if (res.code === 1) {
this.addressList = res.data;
!this.addressList.length && uni.$emit('SELECT_ADDRESS', { addressData: null });
}
});
2 years ago
},
// 删除收货地址
deleteAddress(id) {
const that = this;
that.$http(
'address.del',
{
id: id
},
'删除中...'
).then(res => {
if (res.code === 1) {
this.getAddressList()
}
});
2 years ago
}
}
};
</script>
<style lang="scss">
.address-list {
padding: 40rpx;
position: relative;
background: #fff;
margin-bottom: 20rpx;
2 years ago
display: flex;
align-items: center;
margin: 0 24rpx;
border-radius: 20rpx;
&>image{
width:60rpx;
height:60rpx;
}
2 years ago
.name {
font-size: 30rpx;
font-weight: 600;
}
.phone {
font-size: 30rpx;
margin: 0 20rpx;
}
.tag {
background: rgba(233, 191, 113, 0.2);
border-radius: 6rpx;
padding: 0 16rpx;
line-height: 38rpx;
color: #a8700d;
font-size: 22rpx;
}
.detail {
margin-top: 25rpx;
width: 543rpx;
font-size: 26rpx;
font-weight: 400;
color: rgba(153, 153, 153, 1);
line-height: 40rpx;
}
.set-btn {
2 years ago
background: none;
position: absolute;
font-size: 26rpx;
color: #a8700d;
top: 40rpx;
right: 90rpx;
&>image{
width:32rpx;
height:32rpx;
}
}
.del-btn {
2 years ago
background: none;
position: absolute;
font-size: 26rpx;
color: #a8700d;
top: 40rpx;
right: 40rpx;
2 years ago
&>image{
width:32rpx;
height:32rpx;
}
2 years ago
}
}
// 底部按钮
.foot_box-wrap {
height: 140rpx;
width: 100%;
}
.foot_box {
padding: 10rpx 20rpx;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
2 years ago
// background-color: #fff;
// border-top: 1rpx solid rgba(#ccc, 0.2);
2 years ago
.sync-wxaddress {
flex: 1;
line-height: 80rpx;
2 years ago
border: 1px solid #F0D2A0;
// background: rgba(255, 255, 255, 1);
2 years ago
border-radius: 40rpx;
2 years ago
color: #F0D2A0;
// box-shadow: 0 0 1rpx 6rpx rgba(#ccc, 0.2);
2 years ago
}
.add-btn {
2 years ago
background: #F0D2A0;
2 years ago
line-height: 80rpx;
flex: 1;
2 years ago
// background: linear-gradient(90deg, rgba(233, 180, 97, 1), rgba(238, 204, 137, 1));
2 years ago
border-radius: 40rpx;
2 years ago
color: #09090B;
font-size:34rpx;
2 years ago
}
}
</style>