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