| 1234567891011121314151617181920212223242526272829303132333435363738 |
- 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: '你点击了在线客服',
- });
- },
- },
- });
|