UniApp调起电话拨打功能

<view class="telbtn" @click="gotel">拨打电话</view>


<script>
	export default {
		data() {
			return {
				
			}
		},
		methods: {
			gotel:function() {
				uni.makePhoneCall({
					phoneNumber: '10086',
					success: () => {
					  console.log('拨打电话成功!');
					},
					fail: () => {
					  console.error('拨打电话失败!');
					}
				});
			},
			
		}
	}
</script>

发布日期:
分类:Uniapp

发表评论