call.js 376 B

123456789101112131415161718192021
  1. Component({
  2. properties: {
  3. phone:{
  4. value:'',
  5. type:String
  6. }
  7. },
  8. methods: {
  9. phoneCall () {
  10. wx.makePhoneCall({
  11. phoneNumber: this.data.phone,
  12. success: function () {
  13. console.log("拨打电话成功!")
  14. },
  15. fail: function () {
  16. console.log("拨打电话失败!")
  17. }
  18. })
  19. }
  20. }
  21. })