仅供参考

1,wxml:

<view bindlongtap="phoneNumTap">{{phoneNum}}</view>

2,js:

        data = {
            phoneNum: \'123456789014\'
        }

        methods = {
            // 长按号码响应函数  
            phoneNumTap: function() {
                var that = this;
                // 提示呼叫号码还是将号码添加到手机通讯录  
                wx.showActionSheet({
                    itemList: [\'呼叫\', \'添加联系人\'],
                    success: function(res) {
                        if(res.tapIndex === 0) {
                            // 呼叫号码  
                            wx.makePhoneCall({
                                phoneNumber: that.data.phoneNum,
                            })
                        } else if(res.tapIndex == 1) {
                            // 添加到手机通讯录  
                            wx.addPhoneContact({
                                firstName: \'张三\', //联系人姓名  
                                mobilePhoneNumber: that.data.phoneNum, //联系人手机号  
                            })
                        }
                    }
                })
            },    
         }

 

.

版权声明:本文为tanxiang6690原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/tanxiang6690/p/9002447.html