本文主要是介绍拨打客服电话,弹出呼叫等操作,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
<view @click="callPhone">电话</view>
customerServicePhone:'123456789'
callPhone() {if (confirm('确定要拨打客服电话吗?电话号码为:' + this.customerServicePhone)) {window.location.href = 'tel:' + this.customerServicePhone; }},
这篇关于拨打客服电话,弹出呼叫等操作的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!