478 lines
11 KiB
Vue
478 lines
11 KiB
Vue
<template>
|
|
<view class="page member-addrsss-list-container">
|
|
<view v-if="isdata" class="m-ad-list">
|
|
<view
|
|
class="list-item"
|
|
v-for="(item, index) of addresslist"
|
|
:key="index"
|
|
@tap="SelectAddress(item)"
|
|
>
|
|
<view class="item-left">
|
|
<view class="item-info">
|
|
<text
|
|
:class="['item-lable', lableCalss(item.ud_label)]"
|
|
v-if="
|
|
item.ud_label == 1 || item.ud_label == 2 || item.ud_label == 3
|
|
"
|
|
>{{ labelList[item.ud_label] }}</text
|
|
>
|
|
<text class="item-address">{{ item.ud_marker }}</text>
|
|
<text class="item-detailed-address">{{ item.ud_street_no }}</text>
|
|
</view>
|
|
<view class="item-role-info">
|
|
<text class="item-name">{{ item.ud_name }}</text>
|
|
<text class="item-sex">{{
|
|
item.ud_gender == 1 ? "先生" : "女士"
|
|
}}</text>
|
|
<text class="item-mobile">{{ item.ud_mobile }}</text>
|
|
</view>
|
|
</view>
|
|
<view class="item-right">
|
|
<label
|
|
:data-ud_id="item.ud_id"
|
|
@click.stop="EditAddress"
|
|
class="iconfont icon-edit"
|
|
></label>
|
|
</view>
|
|
</view>
|
|
<!-- <view v-for="(item, i) in addresslist" :key="i" class="m-ad-item" :data-id="(item.ud_id)" :data-ud_id="(item.ud_id)" @longpress="modify">
|
|
<view class="m-ad-l" :data-sel="ud_id" :data-ud_id="(item.ud_id)" :data-address="(item.ud_address)" @tap="SelectAddress">
|
|
<view class="m-ad-i-top">
|
|
<text>{{item.ud_name}}</text><label>({{item.ud_intl}}){{item.ud_mobile}}</label>
|
|
</view>
|
|
<view class="m-ad-i-bot">
|
|
<label v-if="(item.ud_is_default)" class="m-ad-icon">{{__('默认')}}</label><text>{{item.district_info}} {{item.ud_address}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="m-ad-edit tbl">
|
|
<label :data-ud_id="(item.ud_id)" @click="EditAddress" class="iconfont icon-edit"></label>
|
|
<label class="iconfont icon-delete" :data-ud_id="(item.ud_id)" @click="DelAddress"></label>
|
|
</view>
|
|
</view>
|
|
<button class="u-btn u-btn-default" @click="AddAddress" style="margin-top:50rpx;">{{__('添加地址')}}</button> -->
|
|
</view>
|
|
<view class="m-nullpage" v-else @click="AddAddress">
|
|
<view class="m-nullpage-middle">
|
|
<label class="iconfont icon-dizhi"></label>
|
|
<view class="m-null-tip">
|
|
<text>您还没有添加收货地址哦!</text>
|
|
<text class="m-null-tipck">{{ __("马上去添加地址") }}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="u-btn u-btn-default" @click="AddAddress" v-if="isdata">
|
|
<text class="iconfontAili icon-zengjiatianjiajiahao"></text>
|
|
<text>新增收货地址</text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
|
|
<style lang="scss">
|
|
@import "../../styles/_variables";
|
|
|
|
.member-addrsss-list-container {
|
|
background: #fff;
|
|
overflow: hidden;
|
|
|
|
.m-nullpage-middle {
|
|
height: 100vh;
|
|
}
|
|
|
|
.m-ad-list {
|
|
background: #fff;
|
|
height: calc(100vh - 106px);
|
|
|
|
/* #ifdef MP-WEIXIN */
|
|
height: calc(100vh - 120rpx);
|
|
/* #endif */
|
|
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.icon-zengjiatianjiajiahao {
|
|
font-size: 40rpx;
|
|
color: #3579ff;
|
|
margin-right: 12rpx;
|
|
}
|
|
|
|
.list-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin: 0 32rpx;
|
|
padding: 20rpx 0;
|
|
border-bottom: 2rpx solid #f0f0f0;
|
|
|
|
.item-lable {
|
|
display: inline-block;
|
|
margin-right: 9px;
|
|
padding: 0px 8px;
|
|
width: 32px;
|
|
border-radius: 4px;
|
|
text-align: center;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.item-lable-1 {
|
|
background: #fdf3da;
|
|
color: #de8a48;
|
|
}
|
|
|
|
.item-lable-2 {
|
|
background: #e5eefb;
|
|
color: #4687e4;
|
|
}
|
|
|
|
.item-lable-3 {
|
|
background: #eff9e7;
|
|
color: #6eb768;
|
|
}
|
|
|
|
.item-left {
|
|
max-width: 86%;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.icon-edit {
|
|
font-size: 44rpx;
|
|
color: #848484;
|
|
}
|
|
|
|
.item-address {
|
|
margin-right: 8rpx;
|
|
font-weight: 700;
|
|
font-size: 30rpx;
|
|
}
|
|
|
|
.item-detailed-address {
|
|
font-weight: 700;
|
|
font-size: 30rpx;
|
|
}
|
|
|
|
.item-role-info {
|
|
color: #848484;
|
|
font-size: 24rpx;
|
|
|
|
.item-name {
|
|
padding-right: 20rpx;
|
|
}
|
|
|
|
.item-mobile {
|
|
margin-left: 40rpx;
|
|
}
|
|
}
|
|
}
|
|
|
|
.u-btn-default {
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
background: #fff;
|
|
color: #000;
|
|
z-index: 1;
|
|
margin: 0;
|
|
height: 120rpx;
|
|
line-height: 120rpx;
|
|
bottom: constant(safe-area-inset-bottom);
|
|
// bottom: env(safe-area-inset-bottom);
|
|
}
|
|
}
|
|
|
|
.m-ad-item:after {
|
|
content: " ";
|
|
position: absolute;
|
|
border-bottom: 1px solid #ebebe7;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
height: 1px;
|
|
transform-origin: 0 100%;
|
|
transform: scaleY(0.5);
|
|
color: #ebebe7;
|
|
}
|
|
|
|
.m-ad-item {
|
|
background-color: #fff;
|
|
padding: 24rpx 20rpx 24rpx 30rpx;
|
|
position: relative;
|
|
/*border-bottom: 1px solid #d5d5d5;*/
|
|
}
|
|
|
|
.m-ad-l {
|
|
width: 70%;
|
|
display: inline-block;
|
|
}
|
|
|
|
.m-ad-i-top {
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.m-ad-i-top text {
|
|
margin-right: 20rpx;
|
|
}
|
|
|
|
.m-ad-i-bot {
|
|
font-size: 14px;
|
|
color: #888;
|
|
line-height: 20px;
|
|
margin-top: 10rpx;
|
|
}
|
|
|
|
.m-ad-icon {
|
|
font-size: 12px;
|
|
padding: 4rpx 8rpx;
|
|
background-color: $default-skin-bg;
|
|
color: #fff;
|
|
border-radius: 8rpx;
|
|
margin-right: 8rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.m-ad-edit {
|
|
position: absolute;
|
|
right: 20rpx;
|
|
top: 50%;
|
|
width: 80rpx;
|
|
height: 100rpx;
|
|
margin-top: -50rpx;
|
|
padding-left: 40rpx;
|
|
}
|
|
|
|
.m-ad-edit label {
|
|
width: 40rpx;
|
|
height: 50rpx;
|
|
line-height: 50rpx;
|
|
font-size: 35rpx;
|
|
display: block;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
color: #888888;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import { mapState, mapMutations } from "vuex";
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
options: {},
|
|
addresslist: [],
|
|
isdata: false,
|
|
spid: "",
|
|
ud_id: 0,
|
|
labelList: ["", "家", "公司", "学校"],
|
|
};
|
|
},
|
|
computed: mapState([
|
|
"Config",
|
|
"StateCode",
|
|
"notice",
|
|
"plantformInfo",
|
|
"shopInfo",
|
|
"userInfo",
|
|
"hasLogin",
|
|
]),
|
|
onLoad: function (options) {
|
|
uni.setNavigationBarTitle({
|
|
title: this.__("地址列表"),
|
|
});
|
|
|
|
this.setData({
|
|
ud_id: options.ud_id || 0,
|
|
spid: options.spid || "",
|
|
options: options,
|
|
isdata: false,
|
|
});
|
|
|
|
var that = this;
|
|
|
|
that.notice.addNotification("RefreshAddress", that.RefreshMethod, that);
|
|
},
|
|
onShow: function () {
|
|
this.GetAddressList();
|
|
},
|
|
onUnload: function () {
|
|
// 离开页面,注销事件
|
|
var that = this;
|
|
this.notice.removeNotification("RefreshAddress", that);
|
|
},
|
|
/**
|
|
* 页面相关事件处理函数--监听用户下拉动作
|
|
*/
|
|
onPullDownRefresh: function () {
|
|
this.GetAddressList();
|
|
},
|
|
methods: {
|
|
...mapMutations([
|
|
"login",
|
|
"logout",
|
|
"getPlantformInfo",
|
|
"forceUserInfo",
|
|
"getUserInfo",
|
|
]),
|
|
lableCalss(number) {
|
|
if (number == 1) {
|
|
return "item-lable-1";
|
|
}
|
|
|
|
if (number == 2) {
|
|
return "item-lable-2";
|
|
}
|
|
|
|
if (number == 3) {
|
|
return "item-lable-3";
|
|
}
|
|
},
|
|
RefreshMethod: function () {
|
|
//console.info('.........RefreshMethod');
|
|
this.GetAddressList();
|
|
},
|
|
GetAddressList: function () {
|
|
var that = this;
|
|
var params = {};
|
|
|
|
that.setData({
|
|
isdata: false,
|
|
addresslist: [],
|
|
});
|
|
|
|
that.$.request({
|
|
url: that.Config.URL.user.address_lists,
|
|
data: params,
|
|
success: function (data, status, msg, code) {
|
|
if (200 == status) {
|
|
if (data.items.length > 0) {
|
|
//that.addresslist = data.items;
|
|
|
|
that.setData({
|
|
isdata: true,
|
|
addresslist: data.items,
|
|
});
|
|
} else {
|
|
that.setData({
|
|
isdata: false,
|
|
});
|
|
}
|
|
}
|
|
|
|
uni.stopPullDownRefresh();
|
|
},
|
|
});
|
|
},
|
|
modify: function (e) {
|
|
var that = this;
|
|
e.currentTarget.dataset.ud_id;
|
|
|
|
let itemList = [that.__("编辑"), that.__("删除")];
|
|
|
|
uni.showActionSheet({
|
|
itemList: itemList,
|
|
success: (res) => {
|
|
if (res.tapIndex == 0) {
|
|
that.EditAddress(e);
|
|
} else {
|
|
that.DelAddress(e);
|
|
}
|
|
},
|
|
});
|
|
},
|
|
SelectAddress: function (item) {
|
|
// if (obj.currentTarget.dataset.sel) {
|
|
// var that = this;
|
|
// var options = that.options;
|
|
// options.ud_id = obj.currentTarget.dataset.ud_id;
|
|
// options.address = obj.currentTarget.dataset.address;
|
|
// that.$.navigateBack(1, function () {
|
|
// //console.info('SelectAddress')
|
|
// that.notice.postNotificationName("RefreshOrder", options);
|
|
// });
|
|
// }
|
|
|
|
if (item) {
|
|
var that = this;
|
|
var options = that.options;
|
|
if (options.issub != "true") return;
|
|
options.ud_id = item.ud_id;
|
|
options.address = item.ud_address;
|
|
that.$.navigateBack(1, function () {
|
|
that.notice.postNotificationName("RefreshOrder", options);
|
|
});
|
|
}
|
|
},
|
|
EditAddress: function (obj) {
|
|
var that = this;
|
|
var options = this.options;
|
|
options.ud_id = obj.currentTarget.dataset.ud_id;
|
|
|
|
if (that.ud_id != 0) {
|
|
that.$.redirectTo({
|
|
url: that.$.createUrl("/member/address/manage", options),
|
|
});
|
|
} else {
|
|
that.$.navigateTo({
|
|
url: that.$.createUrl("/member/address/manage", options),
|
|
});
|
|
}
|
|
},
|
|
|
|
AddAddress: function () {
|
|
var that = this;
|
|
//var options = that.options;
|
|
|
|
if (that.options.issub) {
|
|
var options = { issub: 1 };
|
|
} else {
|
|
var options = {};
|
|
}
|
|
|
|
if (that.ud_id != 0) {
|
|
that.$.redirectTo({
|
|
url: that.$.createUrl("/member/address/manage", options),
|
|
});
|
|
} else {
|
|
that.$.navigateTo({
|
|
url: that.$.createUrl("/member/address/manage", options),
|
|
});
|
|
}
|
|
},
|
|
|
|
DelAddress: function (e) {
|
|
var that = this;
|
|
that.$.showModal({
|
|
title: that.__("提示"),
|
|
content: that.__("确认删除这个地址吗?"),
|
|
showCancel: true,
|
|
success: function (n) {
|
|
if (n.confirm) {
|
|
var params = {
|
|
ud_id: e.currentTarget.dataset.ud_id,
|
|
};
|
|
that.$.request({
|
|
url: that.Config.URL.user.address_remove,
|
|
data: params,
|
|
success: function (data, status, msg, code) {
|
|
if (200 == status) {
|
|
that.$.showToast({
|
|
title: that.__("删除成功!"),
|
|
});
|
|
|
|
that.notice.postNotificationName("RefreshOrder", 0);
|
|
that.GetAddressList();
|
|
}
|
|
},
|
|
});
|
|
}
|
|
},
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|