| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356 |
- import Toast from 'tdesign-miniprogram/toast/index';
- import { fetchDeliveryAddress } from '../../../../services/address/fetchAddress';
- import { areaData } from '../../../../config/index';
- import { resolveAddress, rejectAddress } from '../../../../services/address/list';
- 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() {
- if (!this.hasSava) {
- rejectAddress();
- }
- },
- 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;
- });
- });
- },
- 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;
- resolveAddress({
- saasId: '88888888',
- uid: `88888888205500`,
- authToken: null,
- id: locationState.addressId,
- addressId: locationState.addressId,
- phone: locationState.phone,
- name: locationState.name,
- countryName: locationState.countryName,
- countryCode: locationState.countryCode,
- provinceName: locationState.provinceName,
- provinceCode: locationState.provinceCode,
- cityName: locationState.cityName,
- cityCode: locationState.cityCode,
- districtName: locationState.districtName,
- districtCode: locationState.districtCode,
- detailAddress: locationState.detailAddress,
- isDefault: locationState.isDefault === 1 ? 1 : 0,
- addressTag: locationState.addressTag,
- latitude: locationState.latitude,
- longitude: locationState.longitude,
- storeId: null,
- });
- wx.navigateBack({ delta: 1 });
- },
- 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;
- },
- );
- },
- });
|