API.uvue 12.1 KB
Newer Older
DCloud-WZF's avatar
DCloud-WZF 已提交
1
<template>
M
mehaotian 已提交
2 3
	<!-- #ifdef APP -->
	<scroll-view style="flex: 1">
W
wanganxp 已提交
4
	<!-- #endif -->
M
mehaotian 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
		<view class="uni-container">
			<view class="uni-header-logo">
				<image class="uni-header-image" src="/static/apiIndex.png"></image>
			</view>
			<view class="uni-hello-text">
				<text class="hello-text">以下将演示uni-app接口能力,详细文档见:</text>
				<u-link :href="'https://uniapp.dcloud.io/api/'" :text="'https://uniapp.dcloud.io/api/'" :inWhiteList="true"></u-link>
			</view>

			<uni-collapse>
				<template v-for="item in list" :key="item.id">
					<uni-collapse-item :title="item.name" class="item">
						<view class="uni-navigate-item" :hover-class="page.enable == false?'':'is--active'" v-for="(page, key) in item.pages" :key="key" @click="goDetailPage(page)">
							<text class="uni-navigate-text" :class="page.enable == false ? 'text-disabled' : ''">{{ page.name }}</text>
							<image :src="arrowRightIcon" class="uni-icon"></image>
						</view>
					</uni-collapse-item>
				</template>
			</uni-collapse>

		</view>
W
wanganxp 已提交
26
	<!-- #ifdef APP -->
M
mehaotian 已提交
27
	</scroll-view>
W
wanganxp 已提交
28 29 30 31 32 33
	<!-- #endif -->
  <view ref="pop" @click="hidePop()" style="width: 100%; height: 100%; position: absolute;align-items: center;justify-content: center; display: none;background-color: rgba(16, 16, 16, 0.5);">
  	<view style="width: 90%;background-color: white;" @click="stopClickPop">
      <api-set-tabbar></api-set-tabbar>
  	</view>
  </view>
DCloud-WZF's avatar
DCloud-WZF 已提交
34 35
</template>

Y
yurj26 已提交
36
<script lang="uts">
M
mehaotian 已提交
37 38 39
	type Page = {
		name : string
		url : string
40 41
		enable ?: boolean
    api ?: Array<string>
M
mehaotian 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55
	}
	type ListItem = {
		id : string
		name : string
		open : boolean
		pages : Page[]
		url ?: string
		enable ?: boolean
	}
	export default {
		data() {
			return {
				list: [
					{
56 57
						id: 'globle',
						name: '全局',
M
mehaotian 已提交
58 59 60 61 62 63 64 65 66
						open: false,
						pages: [
							{
								name: 'getApp',
								url: 'get-app',
							},
							{
								name: 'getCurrentPages',
								url: 'get-current-pages',
67 68 69 70 71 72 73 74
							}
						] as Page[],
					},
          {
						id: 'base',
						name: '基础',
						open: false,
						pages: [
M
mehaotian 已提交
75
							{
76 77 78
								name: '事件总线event-bus',
								url: 'event-bus',
                api:["$on","$once","$off","$emit"]
M
mehaotian 已提交
79 80 81 82
							},
							{
								name: '获取启动参数',
								url: 'get-launch-options-sync',
83 84 85 86
							},
              {
								name: '退出应用',
								url: 'exit',
M
mehaotian 已提交
87 88 89 90 91
							},
						] as Page[],
					},
					{
						id: 'page',
92
						name: '页面和路由',
M
mehaotian 已提交
93 94 95 96
						open: false,
						pages: [
							{
								name: '页面跳转',
97 98
								url: 'navigator',
                api:["navigator","reLaunch","navigateBack","redirectTo","switchTab"]
M
mehaotian 已提交
99
							},
100
							/*
M
mehaotian 已提交
101 102 103 104
							{
								name: '设置导航条标题',
								url: 'set-navigation-bar-title',
								enable: false,
W
wanganxp 已提交
105
							}, */
M
mehaotian 已提交
106 107 108 109 110 111
							{
								name: '设置导航条颜色',
								url: 'set-navigation-bar-color',
							},
							{
								name: '设置TabBar',
112 113
								url: 'set-tabbar',
                api:["showTabBar","hideTabBar","showTabBarRedDot","hideTabBarRedDot","setTabBarBadge","removeTabBarBadge","setTabBarStyle","setTabBarItem"]
M
mehaotian 已提交
114 115
							},
							{
W
wanganxp 已提交
116
								name: '页面下拉刷新',
117 118
								url: 'pull-down-refresh',
                api:["stopPullDownRefresh"]
M
mehaotian 已提交
119 120 121 122 123 124
							},
							{
								name: '将页面滚动到指定位置',
								url: 'page-scroll-to',
							},
						] as Page[],
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
					},
          {
          	id: 'network',
          	name: '网络',
          	open: false,
          	pages: [
          		{
          			name: '发起一个请求',
          			url: 'request',
          		},
          		{
          			name: '上传文件',
          			url: 'upload-file',
          		},
          		{
          			name: '下载文件',
          			url: 'download-file',
          		},
              {
              	name: '获取设备网络状态',
              	url: 'get-network-type',
              },
              {
              	name: 'socketTask',
              	url: 'websocket-socketTask',
                api:[""] //它不是uni.的api
              },
              {
              	name: '全局websocket',
              	url: 'websocket-global',
                api:["connectSocket","onSocketOpen","onSocketError","sendSocketMessage","onSocketMessage","closeSocket","onSocketClose"]
              },
          	] as Page[],
          },
M
mehaotian 已提交
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
					{
						id: 'ui',
						name: '界面',
						open: false,
						pages: [
							/* {
								name: "创建动画",
								url: "animation",
								enable: false
							},
							{
								name: "创建绘画",
								url: "canvas",
								enable: false
							},
							{
								name: "节点布局交互状态",
								url: "intersection-observer",
								enable: false
							}, */
							{
								name: '节点信息',
181 182
								url: 'nodes-info',
                api:["createSelectorQuery"]
M
mehaotian 已提交
183 184 185 186 187 188 189
							},
							{
								name: '显示操作菜单',
								url: 'action-sheet',
							},
							{
								name: '显示模态弹窗',
190 191
								url: 'modal',
                api:["showModal"]
M
mehaotian 已提交
192 193 194 195 196 197 198
							},
							{
								name: '显示加载提示框',
								url: 'show-loading',
							},
							{
								name: '显示消息提示框',
199 200
								url: 'toast',
                api:["showToast"]
M
mehaotian 已提交
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
							},
							{
								name: '动态加载字体',
								url: 'load-font-face',
							},
						] as Page[],
					},
					{
						id: 'device',
						name: '设备',
						open: false,
						pages: [
							{
								name: '获取系统信息',
								url: 'get-system-info',
							},
							{
								name: '获取设备信息',
								url: 'get-device-info',
							},
							{
222 223
								name: '获取窗口信息',
								url: 'get-window-info',
M
mehaotian 已提交
224 225
							},
							{
226 227
								name: '获取APP基础信息',
								url: 'get-app-base-info',
M
mehaotian 已提交
228 229 230 231 232 233
							},
							{
								name: '获取APP授权设置',
								url: 'get-app-authorize-setting',
							},
							{
234 235
								name: '获取系统设置',
								url: 'get-system-setting',
M
mehaotian 已提交
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
							},
							{
								name: '电量',
								url: 'get-battery-info',
							},
							/* {
								name: "打电话",
								url: "make-phone-call",
							},
							{
								name: "震动",
								url: "vibrate",
							},
							{
								name: "添加手机联系人",
								url: "add-phone-contact",
							},
							{
								name: "扫码",
								url: "scan-code",
							},
							{
								name: "剪贴板",
								url: "clipboard",
							},
							{
								name: "屏幕亮度",
								url: "brightness",
							},
							{
								name: "蓝牙",
								url: "bluetooth",
							},
							{
								name: "生物认证",
								url: "soter",
							},
							{
								name: "iBeacon",
								url: "ibeacon",
							},
							{
								name: "监听加速度传感器",
								url: "on-accelerometer-change",
							},
							{
								name: "监听罗盘数据",
								url: "on-compass-change",
							},
							{
								name: "监听距离传感器",
								url: "/platforms/app-plus/proximity/proximity",
							},
							{
								name: "监听方向传感器",
								url: "/platforms/app-plus/orientation/orientation",
							}, */
						] as Page[],
					},
					{
						id: 'media',
						name: '媒体',
						open: false,
						pages: [
							{
								name: '图片选择和预览',
302 303
								url: 'preview-image',
								api: ["previewImage","closePreviewImage","chooseImage"]
M
mehaotian 已提交
304
							},
张磊 已提交
305 306 307 308
							{
								name: "保存图片到相册",
								url: 'save-image-to-album'
							}
M
mehaotian 已提交
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
							/* {
								name: "图片选择和拍照",
								url: "image",
								enable: false
							},{
								name: "音频",
								url: "inner-audio",
							},
							{
								name: "录音",
								url: "voice",
							},
							{
								name: "背景音频",
								url: "background-audio",
W
wanganxp 已提交
324
							},
M
mehaotian 已提交
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
							{
								name: "视频选择和拍照",
								url: "video",
								enable: false
							},
							{
								name: "文件",
								url: "file",
							},
							{
								name: "保存媒体到本地",
								url: "save-media",
							}, */
						] as Page[],
					},
					{
						id: 'location',
						name: '位置',
						open: false,
						pages: [
							{
								name: '获取当前位置',
								url: 'get-location',
							},
							/* {
								name: "使用地图查看位置",
								url: "open-location",
							},
							{
								name: "使用地图选择位置",
								url: "choose-location",
							},
							{
								name: "地图控制",
								url: "map",
							},
							{
								name: "地图搜索",
								url: "map-search",
							}, */
						] as Page[],
					},
					{
						id: 'storage',
369
						name: '数据存储',
M
mehaotian 已提交
370 371 372 373
						open: false,
						pages: [
							{
								name: 'storage(key-value存储)',
374 375
								url: 'storage',
                api:["uni.getStorageInfo","uni.getStorageInfoSync","uni.getStorage","uni.getStorageSync","uni.setStorage","uni.setStorageSync","uni.removeStorage","uni.removeStorageSync","uni.clearStorage","uni.clearStorageSync"]
M
mehaotian 已提交
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
							},
						] as Page[],
					},
					/* {
						id: "rewarded-video-ad",
						url: "rewarded-video-ad",
						name: "激励视频广告",
						open: false,
						enable: false,
						pages: [] as Page[]
					},
					{
						id: "full-screen-video-ad",
						url: "full-screen-video-ad",
						name: "全屏视频广告",
						open: false,
						enable: false,
						pages: [] as Page[]
					},
					{
						id: "login",
						name: "登录",
						open: false,
						pages: [
							{
								name: "登录",
								url: "login",
							},
							{
								name: "获取用户信息",
								url: "get-user-info",
							},
						] as Page[],
					},
					{
						id: "share",
						name: "分享",
						open: false,
						pages: [
							{
								name: "分享",
								url: "share",
							},
						] as Page[],
					},
					{
						id: "payment",
						name: "支付",
						open: false,
						pages: [
							{
								name: "发起支付",
								url: "request-payment",
							},
						] as Page[],
					},
					{
						id: "speech",
						name: "语音",
						open: false,
						pages: [
							{
								name: "语音识别",
								url: "/platforms/app-plus/speech/speech",
							},
						] as Page[],
					},
					{
						id: "push",
						name: "推送",
						open: false,
						pages: [
							{
								name: "推送",
								url: "/platforms/app-plus/push/push",
							},
						] as Page[],
					}, */
				] as ListItem[],
				arrowUpIcon: '/static/icons/arrow-up.png',
				arrowDownIcon: '/static/icons/arrow-down.png',
				arrowRightIcon: '/static/icons/arrow-right.png',
			}
		},
		methods: {
			triggerCollapse(index ?: number, item : ListItem) {
				if (item.pages.length == 0) {
					const page : Page = {
						name: item.name,
						enable: item.enable,
						url: item.url!,
					}
					this.goDetailPage(page)
					return
				}
				for (var i = 0; i < this.list.length; ++i) {
					if (index == i) {
						this.list[i].open = !this.list[i].open
					} else {
						this.list[i].open = false
					}
				}
			},
			goDetailPage(e : Page) {
				if (e.enable == false) {
					uni.showToast({
						title: '暂不支持',
						icon: 'none',
					})
					return
W
wanganxp 已提交
486 487 488 489 490
				}
        if (e.url === 'set-tabbar') {
        	this.showPop()
        	return;
        }
M
mehaotian 已提交
491 492 493 494 495
				const url =
					e.url.indexOf('platform') > -1 ? e.url : `/pages/API/${e.url}/${e.url}`
				uni.navigateTo({
					url,
				})
W
wanganxp 已提交
496 497 498 499 500 501 502 503 504 505
			},
      showPop: function () {
      	(this.$refs["pop"] as INode).style.setProperty("display","flex")
      },
      hidePop: function () {
      	(this.$refs["pop"] as INode).style.setProperty("display","none")
      },
      stopClickPop: function (e:MouseEvent) {
      	e.stopPropagation() //点击到pop的非灰色区域,拦截点击事件
      }
M
mehaotian 已提交
506 507
		},
	}
DCloud-WZF's avatar
DCloud-WZF 已提交
508 509 510
</script>

<style>
M
mehaotian 已提交
511 512 513 514
	@import '../../common/uni-uvue.css';

	.item {
		margin-bottom: 12px;
张磊 已提交
515
	}
W
wanganxp 已提交
516
</style>