advance.vue 4.3 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 27
					</uni-list-item>
				</uni-list>
28
			</uni-collapse-item>
杜庆泉's avatar
杜庆泉 已提交
29 30
			<uni-collapse-item title="资源加载示例" :border="false">
				<uni-list>
31
					<uni-list-item @tap="gotoResourceDemo" title="图片加载示例" :clickable="true" link>
杜庆泉's avatar
杜庆泉 已提交
32 33
					</uni-list-item>
				</uni-list>
34
			</uni-collapse-item>
35 36 37 38 39 40 41 42 43
			<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
杜庆泉 已提交
44 45 46 47
			<uni-collapse-item title="android平台示例" :border="false">

				<uni-list>

48
					<uni-list-item @tap="testLifecyle" title="activity生命周期监听" :clickable="true" link />
打打卡夫卡's avatar
打打卡夫卡 已提交
49
					<uni-list-item @tap="testAssetLoad" title="播放asset音频(需自定义基座)" :clickable="true" link/>
50
					<uni-list-item @tap="gotoDecorView" title="操作DecorView" :clickable="true" link />
杜庆泉's avatar
杜庆泉 已提交
51
					<uni-list-item @tap="testMetaRead" title="读取meta配置" :clickable="true" />
52

杜庆泉's avatar
杜庆泉 已提交
53 54
				</uni-list>

55
			</uni-collapse-item>
56 57 58 59 60 61
			
			<uni-collapse-item title="iOS平台示例" :border="false">
				<uni-list>
					<uni-list-item @tap="testGetResourcePath" title="资源路径获取示例" :clickable="true" link />
				</uni-list>
			</uni-collapse-item>
62
		</uni-collapse>
杜庆泉's avatar
杜庆泉 已提交
63

64

杜庆泉's avatar
杜庆泉 已提交
65
	</view>
杜庆泉's avatar
init  
杜庆泉 已提交
66
</template>
杜庆泉's avatar
杜庆泉 已提交
67 68
<script>
	import {
杜庆泉's avatar
杜庆泉 已提交
69 70 71
		doTimerTask,
		doIntervalTask,
		clearIntervalTask,
杜庆泉's avatar
杜庆泉 已提交
72 73
		playAssetAudio,
		getMetaConfig
打打卡夫卡's avatar
打打卡夫卡 已提交
74
	} from "../../uni_modules/uts-advance";
杜庆泉's avatar
杜庆泉 已提交
75

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

杜庆泉's avatar
杜庆泉 已提交
77 78 79 80
	export default {
		data() {
			return {
				title: 'UTS进阶示例',
杜庆泉's avatar
杜庆泉 已提交
81
				taskId: 0,
杜庆泉's avatar
杜庆泉 已提交
82 83
			}
		},
杜庆泉's avatar
杜庆泉 已提交
84

杜庆泉's avatar
杜庆泉 已提交
85
		methods: {
杜庆泉's avatar
杜庆泉 已提交
86

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

134

135 136 137
			/**
			 * 跳转至资源加载演示界面
			 */
杜庆泉's avatar
杜庆泉 已提交
138
			gotoResourceDemo: function() {
杜庆泉's avatar
杜庆泉 已提交
139
				uni.navigateTo({
杜庆泉's avatar
杜庆泉 已提交
140
					url: '/pages/resource/resource'
杜庆泉's avatar
杜庆泉 已提交
141 142
				})
			},
143
			gotoDecorView: function() {
杜庆泉's avatar
杜庆泉 已提交
144 145 146 147 148
				uni.navigateTo({
					url: '/pages/advance/android/decorview'
				})
			},
			testAssetLoad() {
打打卡夫卡's avatar
打打卡夫卡 已提交
149 150 151 152
				// playAssetAudio();
				uni.navigateTo({
					url: '/pages/advance/android/assetaudio'
				})
杜庆泉's avatar
杜庆泉 已提交
153
			},
杜庆泉's avatar
杜庆泉 已提交
154 155 156 157 158
			testInputDialog() {
				getUserInput(function(res){
					console.log(res);
				});
			},
杜庆泉's avatar
杜庆泉 已提交
159

杜庆泉's avatar
杜庆泉 已提交
160 161 162 163 164 165
			testMetaRead() {
				let ret = getMetaConfig();
				uni.showToast({
					icon:"none",
					title: '读取成功,注意查看控制台输出'
				});
166
				console.log(ret);
杜庆泉's avatar
杜庆泉 已提交
167
			},
杜庆泉's avatar
杜庆泉 已提交
168
			testLifecyle: function() {
杜庆泉's avatar
杜庆泉 已提交
169
				uni.navigateTo({
杜庆泉's avatar
杜庆泉 已提交
170
					url: '/pages/lifecycle/lifecycle'
杜庆泉's avatar
杜庆泉 已提交
171 172
				})
			},
173 174
			testHelloUTSComponent: function() {
				uni.navigateTo({
175
					url: '/pages/component/helloView'
176 177
				})
			},
杜庆泉's avatar
杜庆泉 已提交
178
			testSyntax: function() {
杜庆泉's avatar
杜庆泉 已提交
179
				uni.navigateTo({
杜庆泉's avatar
杜庆泉 已提交
180
					url: '/pages/SyntaxCase/index'
杜庆泉's avatar
杜庆泉 已提交
181 182
				})
			},
183 184 185 186 187
			testGetResourcePath: function() {
				uni.navigateTo({
					url: '/pages/advance/iOS/getResourcePath'
				})
			}
杜庆泉's avatar
杜庆泉 已提交
188

杜庆泉's avatar
杜庆泉 已提交
189 190 191
		}
	}
</script>
杜庆泉's avatar
init  
杜庆泉 已提交
192

杜庆泉's avatar
杜庆泉 已提交
193
<style>
194
	
杜庆泉's avatar
杜庆泉 已提交
195
</style>