uniapp实现点击拨打电话 使用uniapp自带的api:uni.makePhoneCall 以下是具体实现的代码: <view class="btn" @click="telFun()">电话咨询</view>methods: {//拨打电话:telFun() {uni.makePhoneCall({phoneNumber: '12345', //电话号码success: function(e) {console.log(e);},fail: function(e) {console.log(e);}})}, }