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
| /*
| * @Author: rileycai
| * @Date: 2022-03-05 16:47:16
| * @LastEditTime: 2022-03-05 16:48:32
| * @LastEditors: rileycai
| * @Description:
| * @FilePath: /tdesign-miniprogram-starter/pages/order/order-confirm/components/address-card/index.js
| */
| Component({
| externalClasses: ['wr-class'],
| properties: {
| addressData: {
| type: Object,
| value: {},
| },
| },
| methods: {
| onAddressTap() {
| this.triggerEvent('addressclick');
| },
| onAddTap() {
| this.triggerEvent('addclick');
| },
| },
| });
|
|