小程序-拨打电话

     <button bindtap="phonecall">拨打电话</button>


        // js
        Page({
            phonecall:function(){
                wx.makePhoneCall({
                    phoneNumber: '1340000' //仅为示例,并非真实的电话号码
                })
            }
        })
注意:在宠物家中是封装成util中的phonecall方法了:
            phonecall: function (e) {
                util.phonecall('4000300011');
            },

 

posted @ 2019-12-21 09:42  吴小明-  阅读(371)  评论(0编辑  收藏  举报