完善收货地址管理
This commit is contained in:
266
bundle/pages/address/address.vue
Normal file
266
bundle/pages/address/address.vue
Normal file
@ -0,0 +1,266 @@
|
||||
<template>
|
||||
<view class="user-address">
|
||||
<view class="no-address column-center" v-if="!hasAddress">
|
||||
<view class="sm muted">暂无添加地址,请添加~</view>
|
||||
</view>
|
||||
<view class="address-list" v-else>
|
||||
<radio-group class="radio-group" @change="radioChange">
|
||||
<view
|
||||
v-for="(item, index) in addressList"
|
||||
:key="index"
|
||||
class="item bg-white mb20"
|
||||
:data-id="item.id"
|
||||
@tap="onSelect"
|
||||
>
|
||||
<view class="address">
|
||||
<view class="consignee md bold">
|
||||
{{ item.contact }}
|
||||
<text class="phone ml10">{{ item.telephone }}</text>
|
||||
</view>
|
||||
<view class="lighter sm mt10">
|
||||
{{ item.province }} {{ item.city }} {{ item.district }}
|
||||
{{ item.address }}
|
||||
</view>
|
||||
</view>
|
||||
<view class="operation row-between">
|
||||
<view>
|
||||
<radio
|
||||
class="radio row"
|
||||
color="#FF2C3C"
|
||||
:value="item.id + ''"
|
||||
:checked="item.is_default == '1' ? true : false"
|
||||
>
|
||||
<text>设为默认</text>
|
||||
</radio>
|
||||
</view>
|
||||
<view class="row-center">
|
||||
<view class="row mr20" @click.stop="editAddress(item.id)">
|
||||
<u-icon name="edit-pen-fill" size="32"></u-icon>
|
||||
编辑
|
||||
</view>
|
||||
<view class="row ml20" :data-id="item.id" @tap.stop="showSurePop">
|
||||
<u-icon name="trash" size="32"></u-icon>
|
||||
删除
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</radio-group>
|
||||
</view>
|
||||
<u-modal
|
||||
id="delete-dialog"
|
||||
v-model="deleteSure"
|
||||
:showCancelButton="true"
|
||||
confirm-text="删除"
|
||||
confirm-color="#FF2C3C"
|
||||
:show-title="false"
|
||||
@confirm="delAddressFun"
|
||||
@cancel="hidePop"
|
||||
>
|
||||
<view class="column-center tips-dialog">
|
||||
<view style="margin-top: 30rpx">确认删除该地址吗?</view>
|
||||
</view>
|
||||
</u-modal>
|
||||
<view class="footer row-between fixed bg-white">
|
||||
<view class="btn bg-default white md row-center br60" @click="addAddress">新增收货地址</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { getAddressLists, delAddress, setDefaultAddress } from '@/api/user'
|
||||
import wechath5 from '@/utils/wechath5'
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
addressList: [],
|
||||
hasAddress: true,
|
||||
deleteSure: false,
|
||||
currentId: 0
|
||||
}
|
||||
},
|
||||
|
||||
props: {},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
this.type = options.type
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
this.getAddressListsFun()
|
||||
},
|
||||
|
||||
methods: {
|
||||
onSelect(e) {
|
||||
if (this.type) {
|
||||
let { id } = e.currentTarget.dataset
|
||||
uni.$emit('selectaddress', {
|
||||
id
|
||||
})
|
||||
uni.navigateBack()
|
||||
}
|
||||
},
|
||||
|
||||
addAddress() {
|
||||
uni.navigateTo({
|
||||
url: '/bundle/pages/address/address_edit'
|
||||
})
|
||||
},
|
||||
|
||||
editAddress(id) {
|
||||
uni.navigateTo({
|
||||
url: `/bundle/pages/address/address_edit?id=${id}`
|
||||
})
|
||||
},
|
||||
|
||||
getAddressListsFun() {
|
||||
getAddressLists().then((res) => {
|
||||
if (res.code == 1) {
|
||||
if (res.data.length) {
|
||||
this.addressList = res.data
|
||||
this.hasAddress = true
|
||||
} else {
|
||||
this.hasAddress = false
|
||||
}
|
||||
} else {
|
||||
this.hasAddress = false
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
radioChange(e) {
|
||||
let id = e.detail.value
|
||||
console.log(e)
|
||||
setDefaultAddress(id).then((res) => {
|
||||
if (res.code == 1) this.getAddressListsFun()
|
||||
})
|
||||
},
|
||||
|
||||
onLoadFun() {
|
||||
this.getAddressListsFun()
|
||||
},
|
||||
|
||||
delAddressFun(e) {
|
||||
let id = this.currentId
|
||||
delAddress(id).then((res) => {
|
||||
if (res.code == 1) {
|
||||
this.$toast({
|
||||
title: res.msg
|
||||
})
|
||||
this.deleteSure = false
|
||||
this.getAddressListsFun()
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
getWxAddressFun() {
|
||||
// #ifdef H5
|
||||
wechath5.getWxAddress().then((res) => {
|
||||
uni.setStorageSync('wxAddress', JSON.stringify(res))
|
||||
setTimeout(() => {
|
||||
uni.navigateTo({
|
||||
url: `/pages/address_edit/address_edit`
|
||||
})
|
||||
}, 200)
|
||||
})
|
||||
// #endif
|
||||
// #ifdef MP-WEIXIN
|
||||
uni.authorize({
|
||||
scope: 'scope.address',
|
||||
success: function (res) {
|
||||
uni.chooseAddress({
|
||||
success: function (res) {
|
||||
uni.setStorageSync('wxAddress', JSON.stringify(res))
|
||||
setTimeout(() => {
|
||||
uni.navigateTo({
|
||||
url: `/pages/address_edit/address_edit`
|
||||
})
|
||||
}, 200)
|
||||
},
|
||||
fail: function (res) {
|
||||
if (res.errMsg == 'chooseAddress:cancel')
|
||||
return this.$toast({
|
||||
title: '取消选择'
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
fail: function (res) {
|
||||
uni.showModal({
|
||||
title: '您已拒绝导入微信地址权限',
|
||||
content: '是否进入权限管理,调整授权?',
|
||||
|
||||
success(res) {
|
||||
if (res.confirm) {
|
||||
uni.openSetting({
|
||||
success: function (res) {}
|
||||
})
|
||||
} else if (res.cancel) {
|
||||
return this.$toast({
|
||||
title: '已取消!'
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
// #endif
|
||||
},
|
||||
|
||||
showSurePop: function (e) {
|
||||
this.deleteSure = true
|
||||
this.currentId = e.currentTarget.dataset.id
|
||||
},
|
||||
hidePop: function (e) {
|
||||
this.deleteSure = false
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style lang="scss">
|
||||
.user-address {
|
||||
padding-bottom: calc(140rpx + env(safe-area-inset-bottom));
|
||||
.no-address {
|
||||
padding-top: 300rpx;
|
||||
text-align: center;
|
||||
}
|
||||
.address-list {
|
||||
padding: 10rpx 0;
|
||||
.item {
|
||||
padding: 0 30rpx;
|
||||
.address {
|
||||
padding: 20rpx 0;
|
||||
border-bottom: $-solid-border;
|
||||
}
|
||||
.operation {
|
||||
height: 80rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
.footer {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
height: 118rpx;
|
||||
padding: 0 30rpx;
|
||||
box-sizing: content-box;
|
||||
padding-bottom: env(safe-area-inset-bottom);
|
||||
.btn {
|
||||
flex: 1;
|
||||
height: 80rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tips-dialog {
|
||||
height: 230rpx;
|
||||
width: 100%;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user