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
| Component({
| externalClasses: ['wr-class'],
|
| properties: {
| phoneNumber: String,
| desc: String,
| },
|
| data: {
| show: false,
| },
|
| methods: {
| onBtnTap() {
| this.setData({
| show: true,
| });
| },
|
| onDialogClose() {
| this.setData({
| show: false,
| });
| },
|
| onCall() {
| const { phoneNumber } = this.properties;
| wx.makePhoneCall({
| phoneNumber,
| });
| },
| onCallOnlineService() {
| wx.showToast({
| title: '你点击了在线客服',
| });
| },
| },
| });
|
|