小程序-拨打电话-wx.makePhoneCall

<button bindtap='callCusPhone'>点击拨打电话button>
// 拨打电话  
callCusPhone() {    
	wx.makePhoneCall({   
		// phoneNumber: 需要拨打的电话,若固定-可写死;若变化-从后台获取
		phoneNumber: '15660560123',      
		success: function () {        
			console.log("拨打电话成功!")      
		},      
		fail: function () {        
			console.log("拨打电话失败!")      
		}    
	})  
}

开发者工具中直接使用微信文档拨打电话,样式如下:
小程序-拨打电话-wx.makePhoneCall_第1张图片

注:这就是最终手机端可以使用的,安卓会直接到拨打电话页,IOS会显示是否确定拨打电话页
手机端样式如下:

小程序-拨打电话-wx.makePhoneCall_第2张图片

你可能感兴趣的:(小程序开发)