advance.vue 5.1 KB
Newer Older
杜庆泉's avatar
init  
杜庆泉 已提交
1
<template>
杜庆泉's avatar
杜庆泉 已提交
2
	<view>
杜庆泉's avatar
杜庆泉 已提交
3
		<page-head :title="title" accordion></page-head>
杜庆泉's avatar
杜庆泉 已提交
4 5


6
		<uni-collapse accordion>
杜庆泉's avatar
杜庆泉 已提交
7 8
			<uni-collapse-item title="延迟任务" :border="false">
				<uni-list>
9
					<uni-list-item @tap="testTimer" title="开启延迟任务"  :clickable="true">
杜庆泉's avatar
杜庆泉 已提交
10 11
					</uni-list-item>
				</uni-list>
12
			</uni-collapse-item>
杜庆泉's avatar
杜庆泉 已提交
13

杜庆泉's avatar
杜庆泉 已提交
14 15 16
			<uni-collapse-item title="定时任务" :border="false">

				<uni-list>
17
					<uni-list-item @tap="testInterval" title="开启定时任务"  :clickable="true">
杜庆泉's avatar
杜庆泉 已提交
18
					</uni-list-item>
19
					<uni-list-item @tap="testClearInterval" title="关闭定时任务" :clickable="true">
杜庆泉's avatar
杜庆泉 已提交
20 21
					</uni-list-item>
				</uni-list>
22
			</uni-collapse-item>
杜庆泉's avatar
杜庆泉 已提交
23 24
			<uni-collapse-item title="语法示例" :border="false">
				<uni-list>
25
					<uni-list-item @tap="testSyntax" title="进阶语法示例" :clickable="true" link>
杜庆泉's avatar
杜庆泉 已提交
26
					</uni-list-item>
杜庆泉's avatar
杜庆泉 已提交
27 28
					<uni-list-item @tap="testParams" title="参数传递示例" :clickable="true" link>
					</uni-list-item>
杜庆泉's avatar
杜庆泉 已提交
29 30
					<uni-list-item @tap="testConsole" title="日志打印示例" :clickable="true" link>
					</uni-list-item>
Y
yurj26 已提交
31 32
					<uni-list-item @tap="testGrammar" title="基础语法测试例" :clickable="true" link>
					</uni-list-item>
杜庆泉's avatar
杜庆泉 已提交
33
				</uni-list>
34
			</uni-collapse-item>
杜庆泉's avatar
杜庆泉 已提交
35 36
			<uni-collapse-item title="资源加载示例" :border="false">
				<uni-list>
37
					<uni-list-item @tap="gotoResourceDemo" title="图片加载示例" :clickable="true" link>
杜庆泉's avatar
杜庆泉 已提交
38 39
					</uni-list-item>
				</uni-list>
40
			</uni-collapse-item>
41 42 43 44 45 46 47 48 49
			<uni-collapse-item title="组件开发示例" :border="false">
			
				<uni-list>
					<uni-list-item @tap="testHelloUTSComponent" title="Hello UTS Component" :clickable="true" link />
			
				</uni-list>
			
			</uni-collapse-item>
			
杜庆泉's avatar
杜庆泉 已提交
50 51 52 53
			<uni-collapse-item title="android平台示例" :border="false">

				<uni-list>

54
					<uni-list-item @tap="testLifecyle" title="activity生命周期监听" :clickable="true" link />
打打卡夫卡's avatar
打打卡夫卡 已提交
55
					<uni-list-item @tap="testAssetLoad" title="播放asset音频(需自定义基座)" :clickable="true" link/>
56
					<uni-list-item @tap="gotoDecorView" title="操作DecorView" :clickable="true" link />
杜庆泉's avatar
杜庆泉 已提交
57
					<uni-list-item @tap="testMetaRead" title="读取meta配置" :clickable="true" />
杜庆泉's avatar
杜庆泉 已提交
58
					<uni-list-item @tap="testQuitApp" title="退出当前应用" :clickable="true" />
杜庆泉's avatar
杜庆泉 已提交
59 60
				</uni-list>

61
			</uni-collapse-item>
62 63 64 65 66 67
			
			<uni-collapse-item title="iOS平台示例" :border="false">
				<uni-list>
					<uni-list-item @tap="testGetResourcePath" title="资源路径获取示例" :clickable="true" link />
				</uni-list>
			</uni-collapse-item>
68
		</uni-collapse>
杜庆泉's avatar
杜庆泉 已提交
69

70

杜庆泉's avatar
杜庆泉 已提交
71
	</view>
杜庆泉's avatar
init  
杜庆泉 已提交
72
</template>
杜庆泉's avatar
杜庆泉 已提交
73 74
<script>
	import {
杜庆泉's avatar
杜庆泉 已提交
75 76 77
		doTimerTask,
		doIntervalTask,
		clearIntervalTask,
杜庆泉's avatar
杜庆泉 已提交
78
		playAssetAudio,
杜庆泉's avatar
杜庆泉 已提交
79 80
		getMetaConfig,
		quitApp
打打卡夫卡's avatar
打打卡夫卡 已提交
81
	} from "../../uni_modules/uts-advance";
杜庆泉's avatar
杜庆泉 已提交
82

杜庆泉's avatar
杜庆泉 已提交
83

杜庆泉's avatar
杜庆泉 已提交
84 85 86 87
	export default {
		data() {
			return {
				title: 'UTS进阶示例',
杜庆泉's avatar
杜庆泉 已提交
88
				taskId: 0,
杜庆泉's avatar
杜庆泉 已提交
89 90
			}
		},
杜庆泉's avatar
杜庆泉 已提交
91

杜庆泉's avatar
杜庆泉 已提交
92
		methods: {
杜庆泉's avatar
杜庆泉 已提交
93

94 95 96
			/**
			 * 测试延迟任务
			 */
杜庆泉's avatar
杜庆泉 已提交
97
			testTimer: function() {
杜庆泉's avatar
杜庆泉 已提交
98
				doTimerTask({
杜庆泉's avatar
杜庆泉 已提交
99
					start: function(response) {
杜庆泉's avatar
杜庆泉 已提交
100
						uni.showToast({
杜庆泉's avatar
杜庆泉 已提交
101 102
							title: response,
							icon: 'none'
杜庆泉's avatar
杜庆泉 已提交
103 104
						});
					},
杜庆泉's avatar
杜庆泉 已提交
105
					work: function(response) {
杜庆泉's avatar
杜庆泉 已提交
106
						uni.showToast({
杜庆泉's avatar
杜庆泉 已提交
107 108
							title: response,
							icon: 'none'
杜庆泉's avatar
杜庆泉 已提交
109 110 111 112
						});
					},
				});
			},
113 114 115
			/**
			 * 测试周期任务
			 */
杜庆泉's avatar
杜庆泉 已提交
116
			testInterval: function() {
杜庆泉's avatar
杜庆泉 已提交
117
				var ret = doIntervalTask({
杜庆泉's avatar
杜庆泉 已提交
118
					start: function(response) {
杜庆泉's avatar
杜庆泉 已提交
119
						uni.showToast({
杜庆泉's avatar
杜庆泉 已提交
120 121
							title: response,
							icon: 'none'
杜庆泉's avatar
杜庆泉 已提交
122 123
						});
					},
杜庆泉's avatar
杜庆泉 已提交
124
					work: function(response) {
杜庆泉's avatar
杜庆泉 已提交
125
						uni.showToast({
杜庆泉's avatar
杜庆泉 已提交
126 127
							title: response,
							icon: 'none'
杜庆泉's avatar
杜庆泉 已提交
128 129 130 131 132
						});
					},
				});
				this.taskId = ret.taskId;
			},
133 134 135
			/**
			 * 取消周期任务
			 */
杜庆泉's avatar
杜庆泉 已提交
136
			testClearInterval: function() {
杜庆泉's avatar
杜庆泉 已提交
137
				console.log(this.taskId);
杜庆泉's avatar
杜庆泉 已提交
138
				clearIntervalTask(this.taskId);
杜庆泉's avatar
杜庆泉 已提交
139
			},
杜庆泉's avatar
杜庆泉 已提交
140

141

142 143 144
			/**
			 * 跳转至资源加载演示界面
			 */
杜庆泉's avatar
杜庆泉 已提交
145
			gotoResourceDemo: function() {
杜庆泉's avatar
杜庆泉 已提交
146
				uni.navigateTo({
杜庆泉's avatar
杜庆泉 已提交
147
					url: '/pages/resource/resource'
杜庆泉's avatar
杜庆泉 已提交
148 149
				})
			},
150
			gotoDecorView: function() {
杜庆泉's avatar
杜庆泉 已提交
151 152 153 154 155
				uni.navigateTo({
					url: '/pages/advance/android/decorview'
				})
			},
			testAssetLoad() {
打打卡夫卡's avatar
打打卡夫卡 已提交
156 157 158 159
				// playAssetAudio();
				uni.navigateTo({
					url: '/pages/advance/android/assetaudio'
				})
杜庆泉's avatar
杜庆泉 已提交
160
			},
杜庆泉's avatar
杜庆泉 已提交
161 162 163 164 165
			testInputDialog() {
				getUserInput(function(res){
					console.log(res);
				});
			},
杜庆泉's avatar
杜庆泉 已提交
166 167 168
			testQuitApp(){
				quitApp()
			},
杜庆泉's avatar
杜庆泉 已提交
169

杜庆泉's avatar
杜庆泉 已提交
170 171 172 173 174 175
			testMetaRead() {
				let ret = getMetaConfig();
				uni.showToast({
					icon:"none",
					title: '读取成功,注意查看控制台输出'
				});
176
				console.log(ret);
杜庆泉's avatar
杜庆泉 已提交
177
			},
杜庆泉's avatar
杜庆泉 已提交
178
			testLifecyle: function() {
杜庆泉's avatar
杜庆泉 已提交
179
				uni.navigateTo({
杜庆泉's avatar
杜庆泉 已提交
180
					url: '/pages/lifecycle/lifecycle'
杜庆泉's avatar
杜庆泉 已提交
181 182
				})
			},
183 184
			testHelloUTSComponent: function() {
				uni.navigateTo({
185
					url: '/pages/component/helloView'
186 187
				})
			},
杜庆泉's avatar
杜庆泉 已提交
188
			testSyntax: function() {
杜庆泉's avatar
杜庆泉 已提交
189
				uni.navigateTo({
杜庆泉's avatar
杜庆泉 已提交
190
					url: '/pages/SyntaxCase/index'
杜庆泉's avatar
杜庆泉 已提交
191 192
				})
			},
杜庆泉's avatar
杜庆泉 已提交
193 194 195 196 197
			testParams: function() {
				uni.navigateTo({
					url: '/pages/SyntaxCase/paramTest'
				})
			},
杜庆泉's avatar
杜庆泉 已提交
198 199 200 201 202
			testConsole: function() {
				uni.navigateTo({
					url: '/pages/SyntaxCase/consoleTest'
				})
			},
Y
yurj26 已提交
203 204 205 206 207
			testGrammar: function() {
				uni.navigateTo({
					url: '/pages/test/index'
				})
			},
208 209 210 211 212
			testGetResourcePath: function() {
				uni.navigateTo({
					url: '/pages/advance/iOS/getResourcePath'
				})
			}
杜庆泉's avatar
杜庆泉 已提交
213

杜庆泉's avatar
杜庆泉 已提交
214 215 216
		}
	}
</script>
杜庆泉's avatar
init  
杜庆泉 已提交
217

杜庆泉's avatar
杜庆泉 已提交
218
<style>
219
	
杜庆泉's avatar
杜庆泉 已提交
220
</style>