微信小程序拨打电话
wxml
<view class="buinTel" catchtap='freeTell'>拨打电话</view>
wxss
.buinTel{ display: inline-block; width: 165rpx; height: 60rpx; border:#ffbc25 1rpx solid; text-align: center; line-height: 60rpx; font-size:26rpx; color:#ffbc25; border-radius: 10rpx; margin:0 10rpx 0 0; }
wxjs
//拨打电话 freeTell: function(){ wx.makePhoneCall({ phoneNumber: '03123688777', }) },