SDKIntegration.vue 958 字节
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 7
			<uni-list-item @tap="gotoTencentMap" title="腾讯地图sdk集成示例" class="itemButton" :clickable="true" link/>
			<uni-list-item @tap="gotoToast" title="Toast示例" class="itemButton" :clickable="true" link/>
杜庆泉's avatar
杜庆泉 已提交
8
		</uni-list>
杜庆泉's avatar
init  
杜庆泉 已提交
9 10 11 12
	</view>
</template>

<script>
杜庆泉's avatar
杜庆泉 已提交
13
	 
杜庆泉's avatar
init  
杜庆泉 已提交
14 15 16
	export default {
		data() {
			return {
杜庆泉's avatar
杜庆泉 已提交
17
				title: 'SDK集成示例',
杜庆泉's avatar
init  
杜庆泉 已提交
18 19 20
			}
		},
		methods: {
杜庆泉's avatar
杜庆泉 已提交
21
			
22
			gotoToast:function(e){
杜庆泉's avatar
杜庆泉 已提交
23
				uni.navigateTo({
24
					url:'/pages/SDKIntegration/Toast/Toast'
杜庆泉's avatar
杜庆泉 已提交
25
				})
杜庆泉's avatar
杜庆泉 已提交
26
			},
杜庆泉's avatar
杜庆泉 已提交
27 28 29 30
			gotoTencentLocation:function(e){
				uni.navigateTo({
					url:'/pages/SDKIntegration/TencentLocation/TencentLocation'
				})
杜庆泉's avatar
杜庆泉 已提交
31 32 33 34 35
			},
			gotoTencentMap:function(e){
				uni.navigateTo({
					url:'/pages/SDKIntegration/TencentMap/TencentMap'
				})
DCloud_iOS_XHY's avatar
DCloud_iOS_XHY 已提交
36
			}
杜庆泉's avatar
init  
杜庆泉 已提交
37 38 39 40 41 42 43
		}
	}
</script>

<style>

</style>