1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
| import { getPermission } from '../../../../utils/getPermission';
| import { phoneRegCheck } from '../../../../utils/util';
| import Toast from 'tdesign-miniprogram/toast/index';
| import { addressParse } from '../../../../utils/addressParse';
| import { resolveAddress, rejectAddress } from '../../address/list/util';
|
| Component({
| externalClasses: ['t-class'],
| properties: {
| title: {
| type: String,
| },
| navigateUrl: {
| type: String,
| },
| navigateEvent: {
| type: String,
| },
| isCustomStyle: {
| type: Boolean,
| value: false,
| },
| isDisabledBtn: {
| type: Boolean,
| value: false,
| },
| isOrderSure: {
| type: Boolean,
| value: false,
| },
| },
| methods: {
| getWxLocation() {
| if (this.properties.isDisabledBtn) return;
| getPermission({ code: 'scope.address', name: '通讯地址' }).then(() => {
| wx.chooseAddress({
| success: async (options) => {
| const { provinceName, cityName, countyName, detailInfo, userName, telNumber } = options;
|
| if (!phoneRegCheck(telNumber)) {
| Toast({
| context: this,
| selector: '#t-toast',
| message: '请填写正确的手机号',
| });
| return;
| }
|
| const target = {
| name: userName,
| phone: telNumber,
| countryName: '中国',
| countryCode: 'chn',
| detailAddress: detailInfo,
| provinceName: provinceName,
| cityName: cityName,
| districtName: countyName,
| isDefault: false,
| isOrderSure: this.properties.isOrderSure,
| };
|
| try {
| const { provinceCode, cityCode, districtCode } = await addressParse(provinceName, cityName, countyName);
|
| const params = Object.assign(target, {
| provinceCode,
| cityCode,
| districtCode,
| });
| if (this.properties.isOrderSure) {
| this.onHandleSubmit(params);
| } else if (this.properties.navigateUrl != '') {
| const { navigateEvent } = this.properties;
| this.triggerEvent('navigate');
| wx.navigateTo({
| url: this.properties.navigateUrl,
| success: function (res) {
| res.eventChannel.emit(navigateEvent, params);
| },
| });
| } else {
| this.triggerEvent('change', params);
| }
| } catch (error) {
| wx.showToast({ title: '地址解析出错,请稍后再试', icon: 'none' });
| }
| },
| fail(err) {
| console.warn('未选择微信收货地址', err);
| },
| });
| });
| },
|
| async queryAddress(addressId) {
| try {
| const { data } = await apis.userInfo.queryAddress({ addressId });
| return data.userAddressVO;
| } catch (err) {
| console.error('查询地址错误', err);
| throw err;
| }
| },
|
| findPage(pageRouteUrl) {
| const currentRoutes = getCurrentPages().map((v) => v.route);
| return currentRoutes.indexOf(pageRouteUrl);
| },
|
| async onHandleSubmit(params) {
| try {
| const orderPageDeltaNum = this.findPage('pages/order/order-confirm/index');
| if (orderPageDeltaNum > -1) {
| wx.navigateBack({ delta: 1 });
| resolveAddress(params);
| return;
| }
| } catch (err) {
| rejectAddress(params);
| console.error(err);
| }
| },
| },
| });
|
|