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


6 7 8 9
		<uni-collapse>
			<uni-collapse-item title="延迟任务">
				<button @tap="testTimer" class="itemButton">开启延迟任务</button>
			</uni-collapse-item>
杜庆泉's avatar
杜庆泉 已提交
10

11 12 13 14
			<uni-collapse-item title="定时任务">
				<button @tap="testInterval" class="itemButton">开启定时任务</button>
				<button @tap="testClearInterval" class="itemButton">关闭定时任务</button>
			</uni-collapse-item>
杜庆泉's avatar
杜庆泉 已提交
15

16
		</uni-collapse>
杜庆泉's avatar
杜庆泉 已提交
17 18


19 20 21 22 23
		<uni-collapse>
			<uni-collapse-item title="进阶语法示例">
				<button type="primary" class="itemButton" @tap="testSyntax">进阶语法示例</button>
			</uni-collapse-item>
		</uni-collapse>
杜庆泉's avatar
杜庆泉 已提交
24 25 26 27




28 29 30 31 32 33 34
		<uni-collapse>
			<uni-collapse-item title="图片加载示例">
				<button type="primary" @tap="gotoResourceDemo" class="itemButton">资源加载示例</button>
			</uni-collapse-item>
			<uni-collapse-item title="asset操作示例">
				<button type="primary" class="itemButton">播放asset音频(需自定义基座)</button>
			</uni-collapse-item>
杜庆泉's avatar
杜庆泉 已提交
35 36


37
		</uni-collapse>
杜庆泉's avatar
杜庆泉 已提交
38

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55


		<uni-collapse>
			<uni-collapse-item title="生命周期">
				<button type="primary" @tap="testLifecyle" class="itemButton">activity生命周期监听</button>
			</uni-collapse-item>

		</uni-collapse>



		<uni-collapse>
			<uni-collapse-item title="DecorView操作示例">
				<button type="primary" @tap="testAddToDecorView" class="itemButton">添加TextView至视图顶层</button>
				<button type="primary" @tap="testRemoveToDecorView" class="itemButton">移除视图顶层的TextView</button>
			</uni-collapse-item>
		</uni-collapse>
杜庆泉's avatar
杜庆泉 已提交
56 57


杜庆泉's avatar
杜庆泉 已提交
58
	</view>
杜庆泉's avatar
init  
杜庆泉 已提交
59
</template>
杜庆泉's avatar
杜庆泉 已提交
60 61
<script>
	import {
杜庆泉's avatar
杜庆泉 已提交
62 63 64 65 66
		doTimerTask,
		doIntervalTask,
		clearIntervalTask,
		addViewToDecorView,
		removeViewToDecorView
打打卡夫卡's avatar
打打卡夫卡 已提交
67
	} from "../../uni_modules/uts-advance";
杜庆泉's avatar
杜庆泉 已提交
68

杜庆泉's avatar
杜庆泉 已提交
69 70 71 72
	export default {
		data() {
			return {
				title: 'UTS进阶示例',
杜庆泉's avatar
杜庆泉 已提交
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
				taskId: 0,
				hideList: [
					'ucharts',
					'nav-city-dropdown'
				],
				list: [
					// #ifdef APP-PLUS || H5 || MP-ALIPAY
					{
						id: 'navbar',
						name: '顶部原生导航标题栏',
						open: false,
						pages: [
							// #ifdef APP-PLUS || H5
							{
								name: '导航栏带自定义按钮',
								url: 'nav-button'
							},
							{
								name: '导航栏带红点和角标',
								url: 'nav-dot'
							},
							{
								name: '导航栏带城市选择',
								url: 'nav-city-dropdown'
							},
							{
								name: '导航栏带搜索框',
								url: 'nav-search-input'
							},
							// #endif
							// #ifdef APP-PLUS || H5 || MP-ALIPAY
							{
								name: '透明渐变样式',
								url: 'nav-transparent'
							},
							{
								name: '导航栏带图片',
								url: 'nav-image'
							}
							// #endif
						]
					},
					// #endif
					// #ifndef QUICKAPP-WEBVIEW || MP-KUAISHOU
					{
						name: '顶部选项卡',
						url: 'tabbar'
					},
					// #endif
					{
						name: '组件通讯',
						url: 'component-communication'
					},
					// #ifndef MP-QQ || QUICKAPP-WEBVIEW
					// {
					// 	name: 'uCharts 图表',
					// 	url: 'ucharts'
					// },
					// #endif
					// #ifndef QUICKAPP-WEBVIEW
					{
						name: '列表到详情示例',
						url: 'list2detail-list'
					},
					// #endif
					// #ifndef VUE3
					// #ifdef APP-PLUS
					// {
					// 	name: '上下滑动切换视频',
					// 	url: 'swiper-vertical'
					// },
					// #endif
					// #endif
					// #ifdef APP-NVUE
					{
						name: 'swiper-list',
						url: 'swiper-list-nvue'
					},
					// #endif
					{
						name: 'GlobalData和vuex',
						url: 'global'
					},
					// #ifdef APP-PLUS
					{
						name: '问题反馈',
						url: '/platforms/app-plus/feedback/feedback'
					},
					{
						name: '打开外部应用',
						url: 'scheme'
					},
					// #endif
					// #ifdef APP-PLUS || MP-WEIXIN || MP-QQ || H5
					// {
					// 	name: '微信自定义组件示例(vant ui)',
					// 	url: 'vant-button'
					// }
					// #endif
				]
杜庆泉's avatar
杜庆泉 已提交
173 174
			}
		},
杜庆泉's avatar
杜庆泉 已提交
175

杜庆泉's avatar
杜庆泉 已提交
176
		methods: {
177 178 179
			/**
			 * 测试延迟任务
			 */
杜庆泉's avatar
杜庆泉 已提交
180
			testTimer: function() {
杜庆泉's avatar
杜庆泉 已提交
181
				doTimerTask({
杜庆泉's avatar
杜庆泉 已提交
182
					start: function(response) {
杜庆泉's avatar
杜庆泉 已提交
183
						uni.showToast({
杜庆泉's avatar
杜庆泉 已提交
184 185
							title: response,
							icon: 'none'
杜庆泉's avatar
杜庆泉 已提交
186 187
						});
					},
杜庆泉's avatar
杜庆泉 已提交
188
					work: function(response) {
杜庆泉's avatar
杜庆泉 已提交
189
						uni.showToast({
杜庆泉's avatar
杜庆泉 已提交
190 191
							title: response,
							icon: 'none'
杜庆泉's avatar
杜庆泉 已提交
192 193 194 195
						});
					},
				});
			},
196 197 198
			/**
			 * 测试周期任务
			 */
杜庆泉's avatar
杜庆泉 已提交
199
			testInterval: function() {
杜庆泉's avatar
杜庆泉 已提交
200
				var ret = doIntervalTask({
杜庆泉's avatar
杜庆泉 已提交
201
					start: function(response) {
杜庆泉's avatar
杜庆泉 已提交
202
						uni.showToast({
杜庆泉's avatar
杜庆泉 已提交
203 204
							title: response,
							icon: 'none'
杜庆泉's avatar
杜庆泉 已提交
205 206
						});
					},
杜庆泉's avatar
杜庆泉 已提交
207
					work: function(response) {
杜庆泉's avatar
杜庆泉 已提交
208
						uni.showToast({
杜庆泉's avatar
杜庆泉 已提交
209 210
							title: response,
							icon: 'none'
杜庆泉's avatar
杜庆泉 已提交
211 212 213 214 215
						});
					},
				});
				this.taskId = ret.taskId;
			},
216 217 218
			/**
			 * 取消周期任务
			 */
杜庆泉's avatar
杜庆泉 已提交
219
			testClearInterval: function() {
杜庆泉's avatar
杜庆泉 已提交
220
				console.log(this.taskId);
杜庆泉's avatar
杜庆泉 已提交
221
				clearIntervalTask(this.taskId);
杜庆泉's avatar
杜庆泉 已提交
222
			},
杜庆泉's avatar
杜庆泉 已提交
223

224 225 226
			/**
			 * 测试添加View实例至顶层容器
			 */
杜庆泉's avatar
杜庆泉 已提交
227
			testAddToDecorView: function() {
杜庆泉's avatar
杜庆泉 已提交
228 229
				addViewToDecorView();
			},
230 231
			/**
			 * 测试移除顶层容器的View实例
杜庆泉's avatar
杜庆泉 已提交
232 233
			 */
			testRemoveToDecorView: function() {
杜庆泉's avatar
杜庆泉 已提交
234 235
				removeViewToDecorView();
			},
杜庆泉's avatar
杜庆泉 已提交
236

237 238 239
			/**
			 * 跳转至资源加载演示界面
			 */
杜庆泉's avatar
杜庆泉 已提交
240
			gotoResourceDemo: function() {
杜庆泉's avatar
杜庆泉 已提交
241
				uni.navigateTo({
杜庆泉's avatar
杜庆泉 已提交
242
					url: '/pages/resource/resource'
杜庆泉's avatar
杜庆泉 已提交
243 244
				})
			},
杜庆泉's avatar
杜庆泉 已提交
245 246

			testLifecyle: function() {
杜庆泉's avatar
杜庆泉 已提交
247
				uni.navigateTo({
杜庆泉's avatar
杜庆泉 已提交
248
					url: '/pages/lifecycle/lifecycle'
杜庆泉's avatar
杜庆泉 已提交
249 250
				})
			},
杜庆泉's avatar
杜庆泉 已提交
251
			testSyntax: function() {
杜庆泉's avatar
杜庆泉 已提交
252
				uni.navigateTo({
杜庆泉's avatar
杜庆泉 已提交
253
					url: '/pages/SyntaxCase/index'
杜庆泉's avatar
杜庆泉 已提交
254 255
				})
			},
杜庆泉's avatar
杜庆泉 已提交
256

杜庆泉's avatar
杜庆泉 已提交
257 258 259
		}
	}
</script>
杜庆泉's avatar
init  
杜庆泉 已提交
260

杜庆泉's avatar
杜庆泉 已提交
261
<style>
262 263 264 265 266 267
	.itemButton {
		margin-top: 5px;
		margin-bottom: 5px;
		margin-left: 10px;
		margin-right: 10px;
	}
杜庆泉's avatar
杜庆泉 已提交
268
</style>