Vue拨打电话功能

.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;
  }

猜你喜欢

转载自blog.csdn.net/qq_34607371/article/details/86345983