123456789101112131415161718192021 |
- Component({
- properties: {
- phone:{
- value:'',
- type:String
- }
- },
- methods: {
- phoneCall () {
- wx.makePhoneCall({
- phoneNumber: this.data.phone,
- success: function () {
- console.log("拨打电话成功!")
- },
- fail: function () {
- console.log("拨打电话失败!")
- }
- })
- }
- }
- })
|