SDKIntegration.vue 1.1 KB
Newer Older
杜庆泉's avatar
init  
杜庆泉 已提交
1 2
<template>
	<view>
杜庆泉's avatar
杜庆泉 已提交
3
		<page-head :title="title"></page-head>
杜庆泉's avatar
杜庆泉 已提交
4 5
		<uni-list>
			<uni-list-item @tap="gotoTencentLocation" title="腾讯定位sdk集成示例" class="itemButton" :clickable="true" link/>
6
			<uni-list-item @tap="gotoToast" title="Toast示例" class="itemButton" :clickable="true" link/>
杜庆泉's avatar
杜庆泉 已提交
7
		</uni-list>
杜庆泉's avatar
init  
杜庆泉 已提交
8 9 10 11
	</view>
</template>

<script>
杜庆泉's avatar
杜庆泉 已提交
12
	 
13 14 15 16
	 import {
	 	checkHasIntegration
	 } from "@/uni_modules/uts-tencentgeolocation";
	 
杜庆泉's avatar
init  
杜庆泉 已提交
17 18 19
	export default {
		data() {
			return {
杜庆泉's avatar
杜庆泉 已提交
20
				title: 'SDK集成示例',
杜庆泉's avatar
init  
杜庆泉 已提交
21 22 23
			}
		},
		methods: {
杜庆泉's avatar
杜庆泉 已提交
24
			
25
			gotoToast:function(e){
杜庆泉's avatar
杜庆泉 已提交
26
				uni.navigateTo({
27
					url:'/pages/SDKIntegration/Toast/Toast'
杜庆泉's avatar
杜庆泉 已提交
28
				})
杜庆泉's avatar
杜庆泉 已提交
29
			},
杜庆泉's avatar
杜庆泉 已提交
30
			gotoTencentLocation:function(e){
31 32 33 34 35 36 37 38 39 40 41 42 43
				
				let ret = checkHasIntegration();
				if(!ret){
					uni.showToast({
						icon:'none',
						title:'需要在自定义基座中运行'
					})
				}else{
					uni.navigateTo({
						url:'/pages/SDKIntegration/TencentLocation/TencentLocation'
					})
				}
				
杜庆泉's avatar
杜庆泉 已提交
44 45 46 47 48
			},
			gotoTencentMap:function(e){
				uni.navigateTo({
					url:'/pages/SDKIntegration/TencentMap/TencentMap'
				})
DCloud_iOS_XHY's avatar
DCloud_iOS_XHY 已提交
49
			}
杜庆泉's avatar
init  
杜庆泉 已提交
50 51 52 53 54 55 56
		}
	}
</script>

<style>

</style>