在uni-app中,你可以通过使用内置的 uni.makePhoneCall
方法来实现点击跳转到手机拨号页面的功能。这个方法可以触发手机系统的拨号程序,并自动填入指定的电话号码。
html
<template>
<view>
<button @click="makePhoneCall">拨打电话</button>
</view>
</template>
<script>
export default {
methods: {
makePhoneCall() {
uni.makePhoneCall({
phoneNumber: '10086' // 这里填入你要拨打的电话号码
});
}
}
}
</script>
在这个示例中,当用户点击按钮时,会调用 makePhoneCall
方法来触发拨号页面,同时传入电话号码作为参数。