如下图需求
一、通过按钮或其他组件的click等事件触发
<button @click="callPhone(mobile)">联系客户</button> <button @click="callPhone2()">联系客户</button> <van-button type="info" icon="phone" style="width:30%;margin:2% 5%;box-sizing:border-box;" round size="small" @click="callPhone(orderdetil.mobile)">联系客户</van-button>
callPhone(num){ window.location.href = 'tel://'+num }, callPhone2(){ window.location.href = 'tel://88888888' },
二、通过超链接
#通用 <a href="tel:电话号码">要显示的文字,比如电话号码</a> #只在塞班与安卓上支持 <a href="wtai://wp/mc;电话号码">要显示的文字,比如电话号码</a>
三、邮件、短信
<a href="mailto:fakemail@XXX.com?subject=say hello" >要显示的文字</a> #安卓 <a href="sms=189XXXXXXXX?body=短信内容">要显示的文字</a> #ios <a href="sms=139XXXXXXXX&body=短信内容">要显示的文字</a> #通过网页存储电话号码 < a href=”wtai://wp/ap;158xxxxxxxx”>存储号码< /a>