vue移动端实现拨号功能

方法一

1, 在vue项目的index.html中添加如下代码:

<meta name="format-detection" content="telephone=yes" />

2,在需要调起手机拨号功能的页面

callPhone (phoneNumber) {
    window.location.href = 'tel://' + phoneNumber
}

3,在拨号的页面调用此方法

<span @click="callPhone(Phone)">{{Phone}}</span>     
// Phone是需要拨打的电话

方法二

<a :href="'tel:' + 手机号">联系用户</a>
Logo

前往低代码交流专区

更多推荐