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.
 
 
 
 

217 lines
5.1 KiB

<!-- 地址列表 -->
<template>
<view class="address-wrap">
<view class="address-list" v-for="address in addressList" :key="address.id" @tap="useAddress(address)">
<image src="../../../static/images/position.png"></image>
<view style="flex:1;margin-left:19rpx;">
<view class="topContent">
<view class="top">
<text class="name">{{ address.consignee }}</text>
</view>
<view class="">
<text class="phone">{{ address.phone }}</text>
<text class="tag" v-show="address.is_default === '1'">默认</text>
</view>
<view class="btnGroup">
<button class="u-reset-button set-btn" @tap.stop="jump('/pages/user/address/edit', { id: address.id })">
<u-icon name="edit-pen" color="#333333" size="30"></u-icon>
</button>
<button class="u-reset-button set-btn" style="margin-left:36rpx" @tap.stop="deleteAddress(address.id)">
<image src="/static/images/del.png" mode="widthFix" style="height:auto;width:31rpx"></image>
</button>
</view>
<!-- <button class="u-reset-button set-btn" @tap.stop="jump('/pages/user/address/edit', { id: address.id })">编辑</button> -->
</view>
<view class="detail">{{ address.province_name }}{{ address.city_name }}{{ address.area_name }}{{ address.address }}</view>
</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'"
>
<text class="u-iconfont uicon-weixin-fill u-p-r-10" style="color:#09bb07;font-size: 40rpx;"></text>
导入微信地址
</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 });
}
});
},
deleteAddress(id) {
const that = this;
that.$http(
'address.del',
{
id: id
},
'删除中...'
).then(res => {
if (res.code === 1) {
this.getAddressList();
}
});
}
}
};
</script>
<style lang="scss">
.address-list {
padding: 37rpx 30rpx 35rpx 20rpx;
position: relative;
background: #fff;
margin-bottom: 20rpx;
display: flex;
align-items: center;
margin: 0 24rpx;
border-radius: 20rpx;
margin-top: 21rpx;
&>image{
width:60rpx;
height:60rpx;
margin-right:21rpx;
}
.topContent{
display:flex;
align-items: center;
justify-content: space-between;
}
.name {
font-size: 30rpx;
color:#222222;
// font-weight: 600;
}
.phone {
font-size: 30rpx;
margin: 0 31rpx 0 0;
color:#222222;
}
.tag {
// background: rgba(233, 191, 113, 0.2);
border-radius: 14rpx;
border: 1px solid #17C161;
padding: 5rpx 12rpx;
color: #17C161;
font-size: 20rpx;
}
.detail {
margin-top: 32rpx;
font-size: 28rpx;
font-family: Alibaba PuHuiTi;
font-weight: 400;
color: #999999;
line-height: 44rpx;
}
.btnGroup{
display: flex;
align-items: center;
}
.set-btn {
// background: none;
// position: absolute;
// font-size: 26rpx;
// color: #a8700d;
// top: 40rpx;
// right: 40rpx;
}
}
// 底部按钮
.foot_box-wrap {
height: 140rpx;
width: 100%;
}
.foot_box {
padding: 10rpx 20rpx;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
// background-color: #fff;
border-top: 1rpx solid rgba(#ccc, 0.2);
.sync-wxaddress {
flex: 1;
line-height: 80rpx;
background: rgba(255, 255, 255, 1);
border-radius: 40rpx;
box-shadow: 0 0 1rpx 6rpx rgba(#ccc, 0.2);
}
.add-btn {
// line-height: 80rpx;
flex: 1;
padding:22rpx 0;
// background: linear-gradient(90deg, rgba(233, 180, 97, 1), rgba(238, 204, 137, 1));
border-radius: 49rpx;
color: #fff;
background: #17C161;
font-size: 34rpx;
}
}
</style>