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',
  })
},

 

发表评论

邮箱地址不会被公开。 必填项已用*标注