428 lines
9.7 KiB
JavaScript
428 lines
9.7 KiB
JavaScript
import Toast from 'tdesign-miniprogram/toast/index';
|
|
import {
|
|
fetchDeliveryAddress
|
|
} from '~/services/address/fetchAddress';
|
|
import {
|
|
addOrUpdateAddress
|
|
} from '~/services/address/addOrUpdateAddress';
|
|
import {
|
|
areaData
|
|
} from '~/config/index';
|
|
|
|
|
|
const innerPhoneReg = '^1(?:3\\d|4[4-9]|5[0-35-9]|6[67]|7[0-8]|8\\d|9\\d)\\d{8}$';
|
|
const innerNameReg = '^[a-zA-Z\\d\\u4e00-\\u9fa5]+$';
|
|
const labelsOptions = [{
|
|
id: 0,
|
|
name: '家'
|
|
},
|
|
{
|
|
id: 1,
|
|
name: '公司'
|
|
},
|
|
];
|
|
|
|
Page({
|
|
options: {
|
|
multipleSlots: true,
|
|
},
|
|
externalClasses: ['theme-wrapper-class'],
|
|
data: {
|
|
locationState: {
|
|
labelIndex: null,
|
|
addressId: '',
|
|
addressTag: '',
|
|
cityCode: '',
|
|
cityName: '',
|
|
countryCode: '',
|
|
countryName: '',
|
|
detailAddress: '',
|
|
districtCode: '',
|
|
districtName: '',
|
|
isDefault: false,
|
|
name: '',
|
|
phone: '',
|
|
provinceCode: '',
|
|
provinceName: '',
|
|
isEdit: false,
|
|
isOrderDetail: false,
|
|
isOrderSure: false,
|
|
},
|
|
areaData: areaData,
|
|
labels: labelsOptions,
|
|
areaPickerVisible: false,
|
|
submitActive: false,
|
|
visible: false,
|
|
labelValue: '',
|
|
columns: 3,
|
|
},
|
|
privateData: {
|
|
verifyTips: '',
|
|
},
|
|
|
|
|
|
onLoad(options) {
|
|
const {
|
|
id
|
|
} = options;
|
|
this.init(id);
|
|
},
|
|
|
|
onUnload() {
|
|
|
|
},
|
|
|
|
hasSava: false,
|
|
|
|
init(id) {
|
|
if (id) {
|
|
this.getAddressDetail(Number(id));
|
|
}
|
|
},
|
|
|
|
/** 获取收货地址详情 */
|
|
getAddressDetail(id) {
|
|
fetchDeliveryAddress(id).then((detail) => {
|
|
this.setData({
|
|
locationState: detail
|
|
}, () => {
|
|
const {
|
|
isLegal,
|
|
tips
|
|
} = this.onVerifyInputLegal();
|
|
this.setData({
|
|
submitActive: isLegal,
|
|
});
|
|
this.privateData.verifyTips = tips;
|
|
});
|
|
});
|
|
},
|
|
|
|
/** 地区Change事件 */
|
|
onInputValue(e) {
|
|
const {
|
|
item
|
|
} = e.currentTarget.dataset;
|
|
if (item === 'address') {
|
|
const {
|
|
selectedOptions = []
|
|
} = e.detail;
|
|
this.setData({
|
|
'locationState.provinceCode': selectedOptions[0].value,
|
|
'locationState.provinceName': selectedOptions[0].label,
|
|
'locationState.cityName': selectedOptions[1].label,
|
|
'locationState.cityCode': selectedOptions[1].value,
|
|
'locationState.districtCode': selectedOptions[2].value,
|
|
'locationState.districtName': selectedOptions[2].label,
|
|
areaPickerVisible: false,
|
|
},
|
|
() => {
|
|
const {
|
|
isLegal,
|
|
tips
|
|
} = this.onVerifyInputLegal();
|
|
this.setData({
|
|
submitActive: isLegal,
|
|
});
|
|
this.privateData.verifyTips = tips;
|
|
},
|
|
);
|
|
} else {
|
|
const {
|
|
value = ''
|
|
} = e.detail;
|
|
this.setData({
|
|
[`locationState.${item}`]: value,
|
|
},
|
|
() => {
|
|
const {
|
|
isLegal,
|
|
tips
|
|
} = this.onVerifyInputLegal();
|
|
this.setData({
|
|
submitActive: isLegal,
|
|
});
|
|
this.privateData.verifyTips = tips;
|
|
},
|
|
);
|
|
}
|
|
},
|
|
onPickArea() {
|
|
this.setData({
|
|
areaPickerVisible: true
|
|
});
|
|
},
|
|
onPickLabels(e) {
|
|
const {
|
|
item
|
|
} = e.currentTarget.dataset;
|
|
const {
|
|
locationState: {
|
|
labelIndex = undefined
|
|
},
|
|
labels = [],
|
|
} = this.data;
|
|
let payload = {
|
|
labelIndex: item,
|
|
addressTag: labels[item].name,
|
|
};
|
|
if (item === labelIndex) {
|
|
payload = {
|
|
labelIndex: null,
|
|
addressTag: ''
|
|
};
|
|
}
|
|
this.setData({
|
|
'locationState.labelIndex': payload.labelIndex,
|
|
});
|
|
this.triggerEvent('triggerUpdateValue', payload);
|
|
},
|
|
addLabels() {
|
|
this.setData({
|
|
visible: true,
|
|
});
|
|
},
|
|
confirmHandle() {
|
|
const {
|
|
labels,
|
|
labelValue
|
|
} = this.data;
|
|
this.setData({
|
|
visible: false,
|
|
labels: [...labels, {
|
|
id: labels[labels.length - 1].id + 1,
|
|
name: labelValue
|
|
}],
|
|
labelValue: '',
|
|
});
|
|
},
|
|
cancelHandle() {
|
|
this.setData({
|
|
visible: false,
|
|
labelValue: '',
|
|
});
|
|
},
|
|
onCheckDefaultAddress({
|
|
detail
|
|
}) {
|
|
const {
|
|
value
|
|
} = detail;
|
|
this.setData({
|
|
'locationState.isDefault': value,
|
|
});
|
|
},
|
|
|
|
/** 表单验证 */
|
|
onVerifyInputLegal() {
|
|
const {
|
|
name,
|
|
phone,
|
|
detailAddress,
|
|
districtName
|
|
} = this.data.locationState;
|
|
const prefixPhoneReg = String(this.properties.phoneReg || innerPhoneReg);
|
|
const prefixNameReg = String(this.properties.nameReg || innerNameReg);
|
|
const nameRegExp = new RegExp(prefixNameReg);
|
|
const phoneRegExp = new RegExp(prefixPhoneReg);
|
|
|
|
if (!name || !name.trim()) {
|
|
return {
|
|
isLegal: false,
|
|
tips: '请填写收货人',
|
|
};
|
|
}
|
|
if (!nameRegExp.test(name)) {
|
|
return {
|
|
isLegal: false,
|
|
tips: '收货人仅支持输入中文、英文(区分大小写)、数字',
|
|
};
|
|
}
|
|
if (!phone || !phone.trim()) {
|
|
return {
|
|
isLegal: false,
|
|
tips: '请填写手机号',
|
|
};
|
|
}
|
|
if (!phoneRegExp.test(phone)) {
|
|
return {
|
|
isLegal: false,
|
|
tips: '请填写正确的手机号',
|
|
};
|
|
}
|
|
if (!districtName || !districtName.trim()) {
|
|
return {
|
|
isLegal: false,
|
|
tips: '请选择省市区信息',
|
|
};
|
|
}
|
|
if (!detailAddress || !detailAddress.trim()) {
|
|
return {
|
|
isLegal: false,
|
|
tips: '请完善详细地址',
|
|
};
|
|
}
|
|
if (detailAddress && detailAddress.trim().length > 50) {
|
|
return {
|
|
isLegal: false,
|
|
tips: '详细地址不能超过50个字符',
|
|
};
|
|
}
|
|
return {
|
|
isLegal: true,
|
|
tips: '添加成功',
|
|
};
|
|
},
|
|
|
|
builtInSearch({
|
|
code,
|
|
name
|
|
}) {
|
|
return new Promise((resolve, reject) => {
|
|
wx.getSetting({
|
|
success: (res) => {
|
|
if (res.authSetting[code] === false) {
|
|
wx.showModal({
|
|
title: `获取${name}失败`,
|
|
content: `获取${name}失败,请在【右上角】-小程序【设置】项中,将【${name}】开启。`,
|
|
confirmText: '去设置',
|
|
confirmColor: '#FA550F',
|
|
cancelColor: '取消',
|
|
success(res) {
|
|
if (res.confirm) {
|
|
wx.openSetting({
|
|
success(settinRes) {
|
|
if (settinRes.authSetting[code] === true) {
|
|
resolve();
|
|
} else {
|
|
console.warn('用户未打开权限', name, code);
|
|
reject();
|
|
}
|
|
},
|
|
});
|
|
} else {
|
|
reject();
|
|
}
|
|
},
|
|
fail() {
|
|
reject();
|
|
},
|
|
});
|
|
} else {
|
|
resolve();
|
|
}
|
|
},
|
|
fail() {
|
|
reject();
|
|
},
|
|
});
|
|
});
|
|
},
|
|
|
|
onSearchAddress() {
|
|
this.builtInSearch({
|
|
code: 'scope.userLocation',
|
|
name: '地址位置'
|
|
}).then(() => {
|
|
wx.chooseLocation({
|
|
success: (res) => {
|
|
if (res.name) {
|
|
this.triggerEvent('addressParse', {
|
|
address: res.address,
|
|
name: res.name,
|
|
latitude: res.latitude,
|
|
longitude: res.longitude,
|
|
});
|
|
} else {
|
|
Toast({
|
|
context: this,
|
|
selector: '#t-toast',
|
|
message: '地点为空,请重新选择',
|
|
icon: '',
|
|
duration: 1000,
|
|
});
|
|
}
|
|
},
|
|
fail: function (res) {
|
|
console.warn(`wx.chooseLocation fail: ${JSON.stringify(res)}`);
|
|
if (res.errMsg !== 'chooseLocation:fail cancel') {
|
|
Toast({
|
|
context: this,
|
|
selector: '#t-toast',
|
|
message: '地点错误,请重新选择',
|
|
icon: '',
|
|
duration: 1000,
|
|
});
|
|
}
|
|
},
|
|
});
|
|
});
|
|
},
|
|
|
|
/** 保存 */
|
|
formSubmit() {
|
|
const {
|
|
submitActive
|
|
} = this.data;
|
|
if (!submitActive) {
|
|
Toast({
|
|
context: this,
|
|
selector: '#t-toast',
|
|
message: this.privateData.verifyTips,
|
|
icon: '',
|
|
duration: 1000,
|
|
});
|
|
return;
|
|
}
|
|
const {
|
|
locationState
|
|
} = this.data;
|
|
|
|
this.hasSava = true;
|
|
|
|
addOrUpdateAddress({
|
|
CustomerAddressId: locationState.customerAddressId,
|
|
CustomerAddressGuid: locationState.customerAddressGuid,
|
|
// countryName: locationState.countryName, // 国家
|
|
// countryCode: locationState.countryCode,
|
|
ProvinceCode: locationState.provinceCode, // 省Code
|
|
CityCode: locationState.cityCode, // 市Code
|
|
DistrictCode: locationState.districtCode, // 区Code
|
|
CustomerAddressPhone: locationState.phone, // 手机号
|
|
CustomerAddressName: locationState.name, // 收货人
|
|
CustomerAddressDetailed: locationState.detailAddress, // 地址
|
|
IsDefault: locationState.isDefault === true ? 1 : 0, // 是否为默认地址
|
|
}).then((res) => {
|
|
wx.reLaunch({
|
|
url: '/pages/usercenter/address/list/index',
|
|
})
|
|
});
|
|
|
|
},
|
|
|
|
|
|
/** 获取微信地址 */
|
|
getWeixinAddress(e) {
|
|
const {
|
|
locationState
|
|
} = this.data;
|
|
const weixinAddress = e.detail;
|
|
this.setData({
|
|
locationState: {
|
|
...locationState,
|
|
...weixinAddress
|
|
},
|
|
},
|
|
() => {
|
|
const {
|
|
isLegal,
|
|
tips
|
|
} = this.onVerifyInputLegal();
|
|
this.setData({
|
|
submitActive: isLegal,
|
|
});
|
|
this.privateData.verifyTips = tips;
|
|
},
|
|
);
|
|
},
|
|
}); |