当前位置: 代码迷 >> 综合 >> Vue拨打电话功能
  详细解决方案

Vue拨打电话功能

热度:7   发布时间:2023-10-10 20:21:35.0

.vue

<van-tabbar-item @click="dialPhoneNumber(Telephone)"><span>打电话</span>
</van-tabbar-item>

.ts

private dialPhoneNumber(phoneNumber) {if (!phoneNumber) {this.$toast({message: "此用户未配置电话信息,请联系管理员",position: "bottom",duration: 2000});return;}window.location.href = "tel:" + phoneNumber;}

 

  相关解决方案