vue
html代码部分
<div class="submit" @click="makeCall"><i class="call"></i>联系我们</div>
js部分
makeCall() {
window.location.href = `tel:${this.phone}`
}
效果如下:
小程序
参数等详细见官网:拨打电话
示例代码
wx.makePhoneCall({
phoneNumber: '1340000' // 仅为示例,并非真实的电话号码
})