zl程序教程

您现在的位置是:首页 >  移动开发

当前栏目

uni-app 实现点击后拨打电话号码demo效果(整理)

App 实现 效果 整理 点击 Demo uni 电话号码
2023-09-14 09:04:05 时间

uni-app 内部提供了一个makePhoneCall函数。
效果图:
在这里插入图片描述

<template>
	<view @click = "phone">15054054533</view>
</template>

<script>
	export default {
		data() {
			return {
			}
		},
		onLoad() {
	
		},
		methods: {
	        phone() {
				uni.makePhoneCall({
					phoneNumber: '150-5405-4533'
				})
			}
		}
	}
</script>

<style>
</style>