pages.json 77.2 KB
Newer Older
1
{
2 3 4 5 6 7 8 9 10 11 12 13
	"leftWindow": {
		"path": "windows/left-window.uvue",
		"style": {
			"width": "350px"
		}
	},
	"topWindow": {
		"path": "windows/top-window.uvue",
		"style": {
			"height": "60px"
		}
	},
14 15 16 17 18
	"pages": [
		{
			"path": "pages/tabBar/component",
			"style": {
				"navigationBarTitleText": "内置组件",
19
				"backgroundColorContent": "#f8f8f8"
20 21
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
22
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
23 24 25 26 27 28 29
		{
			"path": "pages/component/view/view",
			"group": "0,1,0",
			"style": {
				"navigationBarTitleText": "view | 基本视图容器"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
30 31
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
32 33 34 35 36 37 38
		{
			"path": "pages/component/scroll-view/scroll-view",
			"group": "0,1,1",
			"style": {
				"navigationBarTitleText": "scroll-view | 可滚动视图容器"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
39 40
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
41 42 43 44 45 46
		{
			"path": "pages/component/scroll-view/scroll-view-refresher",
			"style": {
				"navigationBarTitleText": "scroll-view-refresher"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
47 48
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
49 50 51 52 53 54
		{
			"path": "pages/component/scroll-view/scroll-view-props",
			"style": {
				"navigationBarTitleText": "非下拉刷新的scroll-view属性示例"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
55 56
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
57 58 59 60 61 62
		{
			"path": "pages/component/scroll-view/scroll-view-refresher-props",
			"style": {
				"navigationBarTitleText": "下拉刷新的scroll-view属性示例"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
63 64
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
65 66 67 68 69 70
		{
			"path": "pages/component/scroll-view/scroll-view-custom-refresher-props",
			"style": {
				"navigationBarTitleText": "自定义下拉刷新的scroll-view属性示例"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
71 72
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
73 74 75 76 77 78 79
		{
			"path": "pages/component/swiper/swiper",
			"group": "0,1,2",
			"style": {
				"navigationBarTitleText": "swiper | 滑块视图容器"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
80
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
81
		// #ifdef APP-ANDROID || APP-IOS || WEB
82 83
		{
			"path": "pages/component/list-view/list-view",
DCloud-WZF's avatar
DCloud-WZF 已提交
84
			"group": "0,1,6",
85
			"style": {
DCloud-WZF's avatar
DCloud-WZF 已提交
86
				"navigationBarTitleText": "list-view | 列表容器"
87 88
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
89 90
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB
91 92 93 94 95 96 97
		{
			"path": "pages/component/list-view/list-view-refresh",
			"style": {
				"navigationBarTitleText": "list-view-refresh",
				"enablePullDownRefresh": false
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
98 99
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB
100 101 102 103 104 105
		{
			"path": "pages/component/list-view/list-view-multiplex",
			"style": {
				"navigationBarTitleText": "list-view-multiplex"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
106 107
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB
108 109 110 111 112 113 114
		{
			"path": "pages/component/list-view/list-view-multiplex-input",
			"style": {
				"navigationBarTitleText": "list-view复用input",
				"enablePullDownRefresh": false
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
115 116
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB
117 118 119 120 121 122
		{
			"path": "pages/component/list-view/list-view-multiplex-video",
			"style": {
				"navigationBarTitleText": "list-view-multiplex-video"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
123 124
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB
125 126 127 128 129 130
		{
			"path": "pages/component/list-view/list-view-children-in-slot",
			"style": {
				"navigationBarTitleText": "list-view-children-in-slot"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
131 132
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB
133 134
		{
			"path": "pages/component/sticky-section/sticky-section",
DCloud-WZF's avatar
DCloud-WZF 已提交
135
			"group": "0,1,8,1",
136 137 138 139
			"style": {
				"navigationBarTitleText": "sticky-section | 吸顶布局容器"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
140 141
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB
142 143
		{
			"path": "pages/component/sticky-header/sticky-header",
DCloud-WZF's avatar
DCloud-WZF 已提交
144
			"group": "0,1,8,0",
145 146 147 148 149
			"style": {
				"navigationBarTitleText": "sticky-header | 吸顶布局容器",
				"enablePullDownRefresh": false
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
150
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
151
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
152 153 154 155 156 157 158
		{
			"path": "pages/component/text/text",
			"group": "0,2,1",
			"style": {
				"navigationBarTitleText": "text | 文本"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
159 160
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
161 162 163 164 165 166
		{
			"path": "pages/component/text/text-props",
			"style": {
				"navigationBarTitleText": "text-props"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
167 168
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
169 170 171 172
		{
			"path": "pages/component/rich-text/rich-text",
			"group": "0,2,2",
			"style": {
173
				"navigationBarTitleText": "rich-text | 富文本"
174 175
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
176 177
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
178 179 180 181 182 183
		{
			"path": "pages/component/rich-text/rich-text-tags",
			"style": {
				"navigationBarTitleText": "rich-text-tags"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
184 185
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
186 187 188 189 190 191
		{
			"path": "pages/component/rich-text/rich-text-complex",
			"style": {
				"navigationBarTitleText": "rich-text-complex"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
192 193
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
194 195 196 197 198 199 200
		{
			"path": "pages/component/progress/progress",
			"group": "0,2,3",
			"style": {
				"navigationBarTitleText": "progress | 进度条"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
201 202
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
203 204 205 206 207 208 209
		{
			"path": "pages/component/form/form",
			"group": "0,3,2",
			"style": {
				"navigationBarTitleText": "form | 表单"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
210 211
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
212 213 214 215 216 217 218
		{
			"path": "pages/component/button/button",
			"group": "0,3,0",
			"style": {
				"navigationBarTitleText": "button | 按钮"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
219 220
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
221 222 223 224 225 226
		{
			"path": "pages/component/button/buttonstatus",
			"style": {
				"navigationBarTitleText": "buttonstatus"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
227 228
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
229 230 231 232
		{
			"path": "pages/component/radio/radio",
			"group": "0,3,8",
			"style": {
233
				"navigationBarTitleText": "radio | 单选框"
234 235
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
236 237
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
238 239 240 241 242 243 244
		{
			"path": "pages/component/checkbox/checkbox",
			"group": "0,3,1",
			"style": {
				"navigationBarTitleText": "checkbox | 多选框"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
245 246
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
247 248 249 250 251 252 253
		{
			"path": "pages/component/input/input",
			"group": "0,3,3",
			"style": {
				"navigationBarTitleText": "input | 输入框"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
254 255
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
256 257 258 259 260 261 262
		{
			"path": "pages/component/textarea/textarea",
			"group": "0,3,11",
			"style": {
				"navigationBarTitleText": "textarea | 多行输入框"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
263 264
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
265 266 267 268 269 270 271
		{
			"path": "pages/component/slider/slider",
			"group": "0,3,9",
			"style": {
				"navigationBarTitleText": "slider | 滑动选择器"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
272 273
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
274 275 276 277 278 279
		{
			"path": "pages/component/slider/slider-in-swiper",
			"style": {
				"navigationBarTitleText": "slider-in-swiper"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
280 281 282 283 284 285 286 287 288 289
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
		{
			"path": "pages/component/slider/slider-maxValue",
			"style": {
				"navigationBarTitleText": "slider-maxValue-test"
			}
		},
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
290 291 292 293 294 295 296
		{
			"path": "pages/component/picker-view/picker-view",
			"group": "0,3,7",
			"style": {
				"navigationBarTitleText": "picker-view | 嵌入页面的滚动选择器"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
297 298
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
299 300 301 302 303 304 305
		{
			"path": "pages/component/switch/switch",
			"group": "0,3,10",
			"style": {
				"navigationBarTitleText": "switch | 开关选择器"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
306 307
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
308 309
		{
			"path": "pages/component/image/image",
DCloud-WZF's avatar
DCloud-WZF 已提交
310
			"group": "0,5,0",
311 312 313 314
			"style": {
				"navigationBarTitleText": "image | 图片"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
315 316
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
317 318 319 320 321 322
		{
			"path": "pages/component/image/image-format",
			"style": {
				"navigationBarTitleText": "image-format"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
323 324
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
325 326 327 328 329 330
		{
			"path": "pages/component/image/image-mode",
			"style": {
				"navigationBarTitleText": "image-mode"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
331 332
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
333 334 335 336 337 338
		{
			"path": "pages/component/image/image-path",
			"style": {
				"navigationBarTitleText": "image-path"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
339 340
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
341 342 343 344 345 346
		{
			"path": "pages/component/image/image-large",
			"style": {
				"navigationBarTitleText": "大图测试"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
347 348
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
349 350
		{
			"path": "pages/component/video/video",
DCloud-WZF's avatar
DCloud-WZF 已提交
351
			"group": "0,5,1",
352 353 354 355
			"style": {
				"navigationBarTitleText": "video | 视频"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
356 357
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
358 359 360 361 362 363
		{
			"path": "pages/component/video/video-format",
			"style": {
				"navigationBarTitleText": "video-format"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
364 365
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
366 367 368 369 370 371 372
		{
			"path": "pages/component/navigator/navigator",
			"group": "0,4,0",
			"style": {
				"navigationBarTitleText": "navigator | 页面链接"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
373 374
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
375 376 377 378 379 380
		{
			"path": "pages/component/navigator/navigate",
			"style": {
				"navigationBarTitleText": "navigatePage"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
381 382
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
383 384 385 386 387 388
		{
			"path": "pages/component/navigator/redirect",
			"style": {
				"navigationBarTitleText": "redirectPage"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
389 390
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
391 392
		{
			"path": "pages/component/web-view/web-view",
DCloud-WZF's avatar
DCloud-WZF 已提交
393
			"group": "0,9",
394 395 396 397
			"style": {
				"navigationBarTitleText": "web-view"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
398 399
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB
400 401
		{
			"path": "pages/component/web-view/web-view/web-view-local",
DCloud-WZF's avatar
DCloud-WZF 已提交
402
			"group": "0,9",
403 404 405 406
			"style": {
				"navigationBarTitleText": "本地网页"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
407
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
408 409 410 411 412 413 414 415 416
		// #ifdef MP-WEIXIN
		{
			"path": "pages/component/page-meta/page-meta",
			"group": "0,10",
			"style": {
				"navigationBarTitleText": "page-meta"
			}
		},
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
417
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
418 419
		{
			"path": "pages/component/unicloud-db/unicloud-db/contacts/list",
DCloud-WZF's avatar
DCloud-WZF 已提交
420
			"group": "0,11",
421 422 423 424 425
			"style": {
				"navigationBarTitleText": "联系人",
				"enablePullDownRefresh": true
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
426 427
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
428 429 430 431 432 433
		{
			"path": "pages/component/unicloud-db/unicloud-db/contacts/add",
			"style": {
				"navigationBarTitleText": "新增联系人"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
434 435
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
436 437 438 439 440 441
		{
			"path": "pages/component/unicloud-db/unicloud-db/contacts/edit",
			"style": {
				"navigationBarTitleText": "编辑联系人"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
442 443
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
444 445 446 447 448 449
		{
			"path": "pages/component/unicloud-db/unicloud-db/contacts/detail",
			"style": {
				"navigationBarTitleText": ""
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
450 451
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
452 453
		{
			"path": "pages/component/unicloud-db/unicloud-db/mixin-datacom/mixin-datacom",
DCloud-WZF's avatar
DCloud-WZF 已提交
454
			"group": "0,11",
455 456 457 458
			"style": {
				"navigationBarTitleText": "mixinDatacom"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
459
		// #endif
460
		{
461
			"path": "pages/component/global-properties/global-properties",
462 463
			"group": "0,0",
			"style": {
464
				"navigationBarTitleText": "全局属性"
465 466 467
			}
		},
		{
468
			"path": "pages/component/global-events/global-events",
469 470
			"group": "0,0",
			"style": {
471
				"navigationBarTitleText": "全局事件"
472 473 474
			}
		},
		{
475
			"path": "pages/component/global-events/transition-events",
476 477 478 479 480 481
			"group": "0,0",
			"style": {
				"navigationBarTitleText": "Transition Events"
			}
		},
		{
482
			"path": "pages/component/global-events/touch-events",
483 484 485 486 487
			"group": "0,0",
			"style": {
				"navigationBarTitleText": "Touch Events"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
488 489 490 491 492 493
		{
			"path": "pages/component/global-events/touch-events-bubbles",
			"style": {
				"navigationBarTitleText": "Touch Events bubbles"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
494
		// #ifdef APP-ANDROID || APP-IOS
495 496
		{
			"path": "pages/component/nested-scroll-header/nested-scroll-header",
DCloud-WZF's avatar
DCloud-WZF 已提交
497
			"group": "0,1,9,0",
498 499 500 501
			"style": {
				"navigationBarTitleText": "nested-scroll-header"
			}
		},
502
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
503
		// #ifdef APP-ANDROID || APP-IOS
504 505
		{
			"path": "pages/component/nested-scroll-body/nested-scroll-body",
DCloud-WZF's avatar
DCloud-WZF 已提交
506
			"group": "0,1,9,1",
507 508 509 510
			"style": {
				"navigationBarTitleText": "nested-scroll-body"
			}
		},
511
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
512
		// #ifdef APP-ANDROID || APP-IOS || WEB
513 514 515 516 517 518 519
		{
			"path": "pages/component/swiper/swiper-list-view",
			"style": {
				"navigationBarTitleText": "swiper嵌套list-view",
				"enablePullDownRefresh": false
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
520
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
521
		// #ifdef WEB || MP-WEIXIN
522 523
		{
			"path": "pages/component/movable-view/movable-view",
DCloud-WZF's avatar
DCloud-WZF 已提交
524
			"group": "0,1,4,1",
525
			"style": {
DCloud-WZF's avatar
DCloud-WZF 已提交
526
				"navigationBarTitleText": "movable-view | 可拖动视图容器"
527 528
			}
		},
529
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
530
		// #ifdef WEB || MP-WEIXIN
531 532 533 534 535 536 537
		{
			"path": "pages/component/label/label",
			"group": "0,3,5",
			"style": {
				"navigationBarTitleText": "label"
			}
		},
538
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
539
		// #ifdef WEB || MP-WEIXIN
540 541 542 543
		{
			"path": "pages/component/picker/picker",
			"group": "0,3,6",
			"style": {
DCloud-WZF's avatar
DCloud-WZF 已提交
544
				"navigationBarTitleText": "picker | 底部弹出滚动选择器"
545 546
			}
		},
547
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
548
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
549 550 551 552 553 554 555
		{
			"path": "pages/component/map/map",
			"group": "0,6",
			"style": {
				"navigationBarTitleText": "map | 地图"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
556 557
		// #endif
		// #ifdef WEB || MP-WEIXIN
558 559
		{
			"path": "pages/component/cover-view/cover-view",
DCloud-WZF's avatar
DCloud-WZF 已提交
560
			"group": "0,1,5,0",
561 562 563 564
			"style": {
				"navigationBarTitleText": "cover-view"
			}
		},
565
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
566
		// #ifdef WEB || MP-WEIXIN
567 568 569 570 571 572 573
		{
			"path": "pages/component/editor/editor",
			"group": "0,3,4",
			"style": {
				"navigationBarTitleText": "editor | 富文本编辑器"
			}
		},
574
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
575
		// #ifdef APP-ANDROID || APP-IOS || WEB
576 577 578 579 580 581 582
		{
			"path": "pages/component/list-view/issue-2199",
			"style": {
				"navigationBarTitleText": "issue-2199",
				"enablePullDownRefresh": false
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
583
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
584
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
585 586 587 588 589 590 591
		{
			"path": "pages/component/canvas/canvas",
			"group": "0,7",
			"style": {
				"navigationBarTitleText": "canvas | 画布"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
592
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
593
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
594 595 596 597 598 599
		{
			"path": "pages/component/canvas/canvas-context",
			"style": {
				"navigationBarTitleText": "createCanvasContextAsync"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
600
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
601
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
602 603 604 605 606 607 608
		{
			"path": "pages/component/canvas/canvas/ball",
			"group": "0,7",
			"style": {
				"navigationBarTitleText": "ball"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
609
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
610
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
611 612 613 614 615 616 617
		{
			"path": "pages/component/canvas/canvas/doodle",
			"group": "0,7",
			"style": {
				"navigationBarTitleText": "涂鸦"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
618 619
		// #endif
		// #ifdef APP-ANDROID || APP-IOS
shutao-dc's avatar
shutao-dc 已提交
620 621
		{
			"path": "pages/component/native-view/native-view",
622
			"group": "0,2,4",
shutao-dc's avatar
shutao-dc 已提交
623 624 625 626 627
			"style": {
				"navigationBarTitleText": "native-view"
			}
		},
		// #endif
628
		// #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
DCloud-WZF's avatar
DCloud-WZF 已提交
629 630 631 632 633 634 635 636
		{
			"path": "pages/component/ad/ad",
			"group": "0,8",
			"style": {
				"navigationBarTitleText": "ad | 信息流广告",
				"enablePullDownRefresh": false
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
637
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
638 639
		// #ifdef APP-ANDROID || APP-IOS
		{
DCloud-WZF's avatar
DCloud-WZF 已提交
640
			"path": "pages/component/waterflow/waterflow",
DCloud-WZF's avatar
DCloud-WZF 已提交
641 642
			"group": "0,1,7",
			"style": {
DCloud-WZF's avatar
DCloud-WZF 已提交
643
				"navigationBarTitleText": "waterflow | 瀑布流容器"
DCloud-WZF's avatar
DCloud-WZF 已提交
644 645 646
			}
		},
		// #endif
647
		// #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
DCloud-WZF's avatar
DCloud-WZF 已提交
648 649 650 651 652 653 654
		{
			"path": "pages/component/ad/list-view-ad",
			"style": {
				"navigationBarTitleText": "ad | 信息流广告",
				"enablePullDownRefresh": false
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
655
		// #endif
656 657 658 659
		{
			"path": "pages/tabBar/API",
			"style": {
				"navigationBarTitleText": "接口",
660
				"backgroundColorContent": "#f8f8f8"
661 662
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
663
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
664 665 666 667 668 669 670
		{
			"path": "pages/API/get-app/get-app",
			"group": "1,0,0",
			"style": {
				"navigationBarTitleText": "getApp | 获取当前应用实例"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
671 672
		// #endif
		// #ifdef APP-ANDROID || APP-IOS
673 674 675 676 677 678 679
		{
			"path": "pages/API/exit/exit",
			"group": "1,1,5",
			"style": {
				"navigationBarTitleText": "exit | 退出应用"
			}
		},
680 681
		// #endif
		// #ifdef APP-ANDROID
682 683 684 685 686 687 688 689
		{
			"path": "pages/API/install-apk/install-apk",
			"group": "1,6,6",
			"style": {
				"navigationBarTitleText": "installApk | 安装 APK",
				"enablePullDownRefresh": false
			}
		},
690
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
691
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
692 693 694 695 696 697 698 699
		{
			"path": "pages/API/get-current-pages/get-current-pages",
			"group": "1,0,1",
			"style": {
				"navigationBarTitleText": "getCurrentPages | 获取当前页面栈",
				"enablePullDownRefresh": true
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
700 701
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB
702 703 704 705 706 707 708
		{
			"path": "pages/API/get-current-pages/set-page-style-disable-pull-down-refresh",
			"style": {
				"navigationBarTitleText": "setPageStyle pull default false",
				"enablePullDownRefresh": false
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
709 710
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
711 712
		{
			"path": "pages/API/get-launch-options-sync/get-launch-options-sync",
DCloud-WZF's avatar
DCloud-WZF 已提交
713
			"group": "1,1,4,0",
714 715 716 717
			"style": {
				"navigationBarTitleText": "getLaunchOptionsSync | 获取启动参数"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
718 719
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
720 721 722 723
		{
			"path": "pages/API/get-enter-options-sync/get-enter-options-sync",
			"group": "1,1,4,1",
			"style": {
DCloud-WZF's avatar
DCloud-WZF 已提交
724
				"navigationBarTitleText": "getEnterOptionsSync | 获取本次启动时的参数"
725 726
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
727
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
728
		// #ifdef APP-ANDROID || APP-IOS || WEB
DCloud-WZF's avatar
DCloud-WZF 已提交
729
		{
730
			"path": "pages/API/animation-frame/animation-frame",
731
			"group": "1,0,2",
DCloud-WZF's avatar
DCloud-WZF 已提交
732
			"style": {
DCloud-WZF's avatar
DCloud-WZF 已提交
733
				"navigationBarTitleText": "animationFrame | 动画帧"
DCloud-WZF's avatar
DCloud-WZF 已提交
734 735
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
736
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
737
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
738 739 740 741 742 743 744
		{
			"path": "pages/API/navigator/navigator",
			"group": "1,2,0",
			"style": {
				"navigationBarTitleText": "navigator | 页面跳转"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
745 746
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
747 748
		{
			"path": "pages/API/set-navigation-bar-color/set-navigation-bar-color",
DCloud-WZF's avatar
DCloud-WZF 已提交
749
			"group": "1,2,2",
750 751 752 753
			"style": {
				"navigationBarTitleText": "setNavigationBarColor | 设置导航条颜色"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
754 755
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
756 757
		{
			"path": "pages/API/set-navigation-bar-title/set-navigation-bar-title",
DCloud-WZF's avatar
DCloud-WZF 已提交
758
			"group": "1,2,3",
759 760 761 762
			"style": {
				"navigationBarTitleText": "setNavigationBarTitle | 设置导航条标题"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
763 764
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB
765 766 767 768 769 770 771
		{
			"path": "pages/API/set-page-backgroundColorContent/set-page-backgroundColorContent",
			"group": "1,2",
			"style": {
				"navigationBarTitleText": "设置页面容器背景色"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
772 773
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
774 775 776 777 778 779
		{
			"path": "pages/API/navigator/new-page/new-page-1",
			"style": {
				"navigationBarTitleText": "新页面-1"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
780 781
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
782 783 784 785 786 787
		{
			"path": "pages/API/navigator/new-page/new-page-3",
			"style": {
				"navigationBarTitleText": "新页面-3"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
788 789
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
790 791 792 793 794 795
		{
			"path": "pages/API/navigator/new-page/onLoad",
			"style": {
				"navigationBarTitleText": "onLoad 生命周期测试"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
796 797
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
798 799
		{
			"path": "pages/API/pull-down-refresh/pull-down-refresh",
DCloud-WZF's avatar
DCloud-WZF 已提交
800
			"group": "1,2,5",
801 802 803 804 805
			"style": {
				"navigationBarTitleText": "pullDownRefresh | 页面下拉刷新",
				"enablePullDownRefresh": true
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
806 807
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
808 809
		{
			"path": "pages/API/storage/storage",
810
			"group": "1,10",
811 812 813 814
			"style": {
				"navigationBarTitleText": "storage | key-value本地数据存储"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
815 816
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
817 818
		{
			"path": "pages/API/get-file-system-manager/get-file-system-manager",
819
			"group": "1,11,0",
820 821 822 823
			"style": {
				"navigationBarTitleText": "getFileSystemManager | 获取文件管理器"
			}
		},
824
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
825
		// #ifdef APP-ANDROID || APP-IOS
826 827 828 829 830 831 832
		{
			"path": "pages/API/env/env",
			"group": "1,1,0",
			"style": {
				"navigationBarTitleText": "env | 环境变量"
			}
		},
833
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
834
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
835 836 837 838 839 840 841
		{
			"path": "pages/API/show-action-sheet/show-action-sheet",
			"group": "1,4,1",
			"style": {
				"navigationBarTitleText": "showActionSheet | 弹出操作菜单"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
842 843
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
844 845 846 847 848 849 850
		{
			"path": "pages/API/show-modal/show-modal",
			"group": "1,4,2",
			"style": {
				"navigationBarTitleText": "showModal | 显示模态弹窗"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
851 852
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
853 854 855 856 857 858 859
		{
			"path": "pages/API/show-loading/show-loading",
			"group": "1,4,3",
			"style": {
				"navigationBarTitleText": "showLoading | 显示 loading 提示框"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
860 861
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
862 863 864 865 866 867 868
		{
			"path": "pages/API/show-toast/show-toast",
			"group": "1,4,4",
			"style": {
				"navigationBarTitleText": "showToast | 显示消息提示框"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
869 870
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
871 872 873 874 875 876 877
		{
			"path": "pages/API/load-font-face/load-font-face",
			"group": "1,4,5",
			"style": {
				"navigationBarTitleText": "loadFontFace | 动态加载字体"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
878 879
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
880 881 882 883 884 885
		{
			"path": "pages/API/load-font-face/load-font-face-child",
			"style": {
				"navigationBarTitleText": "动态加载字体-子页面"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
886 887
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
888 889
		{
			"path": "pages/API/get-location/get-location",
890
			"group": "1,9,0",
891 892 893 894
			"style": {
				"navigationBarTitleText": "getLocation | 获取当前位置"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
895
		// #endif
VK1688's avatar
VK1688 已提交
896
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
DCloud-WZF's avatar
DCloud-WZF 已提交
897 898
		{
			"path": "pages/API/open-location/open-location",
899
			"group": "1,9,1",
DCloud-WZF's avatar
DCloud-WZF 已提交
900 901 902 903 904
			"style": {
				"navigationBarTitleText": "openLocation | 使用地图查看位置"
			}
		},
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
905
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
DCloud-WZF's avatar
DCloud-WZF 已提交
906 907
		{
			"path": "pages/API/choose-location/choose-location",
908
			"group": "1,9,2",
DCloud-WZF's avatar
DCloud-WZF 已提交
909 910 911 912
			"style": {
				"navigationBarTitleText": "chooseLocation | 使用地图选择位置"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
913 914
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
915 916 917 918 919 920 921
		{
			"path": "pages/API/interceptor/interceptor",
			"group": "1,1,3",
			"style": {
				"navigationBarTitleText": "interceptor | 拦截器"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
922 923
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
924 925 926 927 928 929
		{
			"path": "pages/API/interceptor/page1",
			"style": {
				"navigationBarTitleText": "拦截器测试页面 1"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
930 931
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
932 933 934 935 936 937
		{
			"path": "pages/API/interceptor/page2",
			"style": {
				"navigationBarTitleText": "拦截器测试页面 2"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
938 939
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
940 941 942 943 944 945 946
		{
			"path": "pages/API/request/request",
			"group": "1,5,0",
			"style": {
				"navigationBarTitleText": "request | 发起网络请求"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
947 948
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
949 950 951 952 953 954 955
		{
			"path": "pages/API/upload-file/upload-file",
			"group": "1,5,1",
			"style": {
				"navigationBarTitleText": "uploadFile | 上传文件"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
956 957
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
958 959 960 961 962 963 964
		{
			"path": "pages/API/download-file/download-file",
			"group": "1,5,2",
			"style": {
				"navigationBarTitleText": "downloadFile | 下载文件"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
965 966
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
967 968 969 970 971 972
		{
			"path": "pages/API/websocket/socketTask",
			"style": {
				"navigationBarTitleText": "socketTask"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
973 974
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
975 976 977 978 979 980 981
		{
			"path": "pages/API/websocket/websocket",
			"group": "1,5,4",
			"style": {
				"navigationBarTitleText": "websocket"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
982
		// #endif
983 984
		{
			"path": "pages/API/unicloud/unicloud/cloud-function",
DCloud-WZF's avatar
DCloud-WZF 已提交
985
			"group": "1,19,0",
986 987 988 989 990 991
			"style": {
				"navigationBarTitleText": "cloud function | 云函数"
			}
		},
		{
			"path": "pages/API/unicloud/unicloud/cloud-object",
DCloud-WZF's avatar
DCloud-WZF 已提交
992
			"group": "1,19,1",
993 994 995 996
			"style": {
				"navigationBarTitleText": "cloud object | 云对象"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
997
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
998 999 1000 1001 1002 1003 1004
		{
			"path": "pages/API/get-system-info/get-system-info",
			"group": "1,6,0",
			"style": {
				"navigationBarTitleText": "getSystemInfo | 获取系统信息"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1005 1006
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1007 1008 1009 1010 1011 1012 1013
		{
			"path": "pages/API/get-device-info/get-device-info",
			"group": "1,6,1",
			"style": {
				"navigationBarTitleText": "getDeviceInfo | 获取设备信息"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1014 1015
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1016 1017 1018 1019 1020 1021 1022
		{
			"path": "pages/API/get-app-base-info/get-app-base-info",
			"group": "1,6,3",
			"style": {
				"navigationBarTitleText": "getAppBaseInfo | 获取APP基础信息"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1023 1024
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
1025 1026 1027 1028 1029 1030 1031
		{
			"path": "pages/API/get-system-setting/get-system-setting",
			"group": "1,6,5",
			"style": {
				"navigationBarTitleText": "getSystemSetting | 获取系统设置"
			}
		},
1032
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1033
		// #ifdef APP-ANDROID || APP-IOS
1034 1035 1036 1037
		{
			"path": "pages/API/element-takesnapshot/element-takesnapshot",
			"group": "1,30",
			"style": {
1038
				"navigationBarTitleText": "takeSnapshot | 截图",
1039 1040 1041
				"enablePullDownRefresh": false
			}
		},
1042
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1043 1044 1045 1046 1047 1048 1049 1050 1051
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
		{
			"path": "pages/API/element-get-bounding-client-rect-async/element-get-bounding-client-rect-async",
			"group": "1,30",
			"style": {
				"navigationBarTitleText": "getBoundingClientRectAsync | 异步获取元素信息"
			}
		},
		// #endif
Anne_LXM's avatar
Anne_LXM 已提交
1052 1053 1054 1055 1056 1057 1058 1059 1060 1061
    // #ifdef MP-WEIXIN
    {
      "path" : "pages/API/element-get-attribute/element-get-attribute",
      "group": "1,30",
      "style" :
      {
        "navigationBarTitleText" : "getAttribute | 获取元素的属性值"
      }
    },
    // #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1062
		// #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
1063 1064 1065 1066 1067 1068 1069
		{
			"path": "pages/API/get-app-authorize-setting/get-app-authorize-setting",
			"group": "1,6,4",
			"style": {
				"navigationBarTitleText": "getAppAuthorizeSetting | 获取APP授权设置"
			}
		},
1070
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1071
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1072 1073 1074 1075 1076 1077 1078
		{
			"path": "pages/API/preview-image/preview-image",
			"group": "1,7,1",
			"style": {
				"navigationBarTitleText": "previewImage | 图片预览"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1079 1080
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1081 1082 1083 1084
		{
			"path": "pages/API/choose-image/choose-image",
			"group": "1,7,0",
			"style": {
1085
				"navigationBarTitleText": "chooseImage | 拍照或从相册选择图片"
1086 1087
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1088 1089
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1090 1091 1092 1093 1094 1095 1096
		{
			"path": "pages/API/get-image-info/get-image-info",
			"group": "1,7,3",
			"style": {
				"navigationBarTitleText": "getImageInfo | 获取图片信息"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1097 1098
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
1099 1100 1101 1102 1103 1104 1105
		{
			"path": "pages/API/compress-image/compress-image",
			"group": "1,7,4",
			"style": {
				"navigationBarTitleText": "compressImage | 压缩图片"
			}
		},
1106
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1107
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1108 1109 1110 1111 1112 1113 1114
		{
			"path": "pages/API/choose-video/choose-video",
			"group": "1,7,5",
			"style": {
				"navigationBarTitleText": "chooseVideo | 拍摄视频或从相册中选择视频"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1115 1116
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
1117 1118 1119 1120 1121 1122 1123
		{
			"path": "pages/API/save-image-to-photos-album/save-image-to-photos-album",
			"group": "1,7,2",
			"style": {
				"navigationBarTitleText": "saveImageToPhotosAlbum | 保存图片到相册"
			}
		},
1124
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1125
		// #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
1126 1127 1128 1129 1130 1131 1132
		{
			"path": "pages/API/save-video-to-photos-album/save-video-to-photos-album",
			"group": "1,7,6",
			"style": {
				"navigationBarTitleText": "saveVideoToPhotosAlbum | 保存视频到相册"
			}
		},
1133
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1134
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1135 1136 1137 1138 1139 1140 1141
		{
			"path": "pages/API/get-video-info/get-video-info",
			"group": "1,7,7",
			"style": {
				"navigationBarTitleText": "getVideoInfo | 获取视频信息"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1142 1143
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
1144 1145 1146 1147 1148 1149 1150
		{
			"path": "pages/API/compress-video/compress-video",
			"group": "1,7,8",
			"style": {
				"navigationBarTitleText": "compressVideo | 压缩视频"
			}
		},
1151
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1152
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1153 1154 1155 1156 1157 1158 1159
		{
			"path": "pages/API/get-network-type/get-network-type",
			"group": "1,5,3",
			"style": {
				"navigationBarTitleText": "getNetworkType | 获取网络类型"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1160 1161
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1162 1163
		{
			"path": "pages/API/page-scroll-to/page-scroll-to",
DCloud-WZF's avatar
DCloud-WZF 已提交
1164
			"group": "1,2,6",
1165 1166 1167 1168
			"style": {
				"navigationBarTitleText": "pageScrollTo | 将页面滚动到指定位置"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1169 1170
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1171 1172 1173 1174 1175 1176 1177
		{
			"path": "pages/API/event-bus/event-bus",
			"group": "1,1,1",
			"style": {
				"navigationBarTitleText": "eventBus | 事件总线"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1178 1179
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1180 1181
		{
			"path": "pages/API/unicloud/unicloud/cloud-storage",
DCloud-WZF's avatar
DCloud-WZF 已提交
1182
			"group": "1,19,2",
1183 1184 1185 1186
			"style": {
				"navigationBarTitleText": "cloud storage | 云存储"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1187
		// #endif
1188 1189
		{
			"path": "pages/API/unicloud/unicloud/database",
DCloud-WZF's avatar
DCloud-WZF 已提交
1190
			"group": "1,19,3",
1191 1192 1193 1194
			"style": {
				"navigationBarTitleText": "database | 数据库"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1195
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1196 1197
		{
			"path": "pages/API/get-battery-info/get-battery-info",
1198
			"group": "1,6,7",
1199 1200 1201 1202
			"style": {
				"navigationBarTitleText": "getBatteryInfo | 获取电池电量信息"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1203 1204
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1205 1206 1207 1208 1209 1210 1211
		{
			"path": "pages/API/get-window-info/get-window-info",
			"group": "1,6,2",
			"style": {
				"navigationBarTitleText": "getWindowInfo | 获取窗口信息"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1212 1213
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
1214 1215 1216 1217 1218 1219 1220
		{
			"path": "pages/API/get-window-info/window-area",
			"style": {
				"navigationBarTitleText": "window area",
				"navigationStyle": "custom"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1221
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1222
		// #ifdef APP-ANDROID || APP-IOS
1223 1224 1225 1226
		{
			"path": "pages/API/element-draw/element-draw",
			"group": "1,30",
			"style": {
1227
				"navigationBarTitleText": "getDrawableContext | 获取绘制对象",
1228 1229 1230
				"enablePullDownRefresh": false
			}
		},
1231
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1232
		// #ifdef APP-ANDROID || APP-IOS
1233 1234
		{
			"path": "pages/API/facial-recognition-meta-info/facial-recognition-meta-info",
1235
			"group": "1,12,1",
1236 1237 1238 1239 1240
			"style": {
				"navigationBarTitleText": "facialRecognitionMetaInfo | 金融级实人认证",
				"enablePullDownRefresh": false
			}
		},
1241
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1242
		// #ifdef APP-ANDROID || APP-IOS
1243 1244
		{
			"path": "pages/API/get-univerify-manager/get-univerify-manager",
1245
			"group": "1,12,0",
1246 1247
			"style": {
				"navigationBarTitleText": "getUniverifyManager | App一键登录",
DCloud-WZF's avatar
DCloud-WZF 已提交
1248
				"navigationBarTextStyle": "white",
1249 1250 1251
				"enablePullDownRefresh": false
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263
		// #endif
		// #ifdef APP-ANDROID || APP-IOS
		{
			"path": "pages/API/get-univerify-manager/univerify-custom-page",
			"style": {
				"navigationBarTextStyle": "black",
				"navigationStyle": "custom"
			}
		},
		// #endif
		// #ifdef APP-ANDROID || APP-IOS
		{
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
1264
			"path": "pages/API/get-univerify-manager/full-webview-page",
DCloud-WZF's avatar
DCloud-WZF 已提交
1265
			"style": {
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
1266
				"navigationBarTextStyle": "white",
DCloud-WZF's avatar
DCloud-WZF 已提交
1267 1268 1269
				"navigationStyle": "custom"
			}
		},
1270
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1271
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1272 1273 1274 1275 1276 1277 1278 1279
		{
			"path": "pages/API/rpx2px/rpx2px",
			"group": "1,4,6",
			"style": {
				"navigationBarTitleText": "rpx2px | 将rpx单位值转换成px",
				"enablePullDownRefresh": false
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1280
		// #endif
1281
		// #ifdef APP-ANDROID
1282 1283
		{
			"path": "pages/API/create-request-permission-listener/create-request-permission-listener",
1284
			"group": "1,6,15",
1285 1286 1287 1288 1289
			"style": {
				"navigationBarTitleText": "createRequestPermissionListener | 监听权限申请",
				"enablePullDownRefresh": false
			}
		},
1290
		// #endif
1291
		// #ifdef APP-ANDROID || APP-IOS
1292 1293 1294 1295
		{
			"path": "pages/API/request-payment/request-payment",
			"group": "1,14,0",
			"style": {
DCloud-WZF's avatar
DCloud-WZF 已提交
1296
				"navigationBarTitleText": "requestPayment | 支付(requestPayment)",
1297 1298 1299
				"enablePullDownRefresh": false
			}
		},
1300
		// #endif
1301
		// #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
1302 1303
		{
			"path": "pages/API/create-rewarded-video-ad/create-rewarded-video-ad",
1304
			"group": "1,13,0",
1305 1306 1307 1308 1309
			"style": {
				"navigationBarTitleText": "createRewardedVideoAd | 激励视频广告",
				"enablePullDownRefresh": false
			}
		},
1310
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1311
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1312 1313 1314 1315 1316 1317 1318 1319
		{
			"path": "pages/API/request-payment/request-payment/request-payment-uni-pay",
			"group": "1,14",
			"style": {
				"navigationBarTitleText": "uni-pay示例",
				"enablePullDownRefresh": false
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1320
		// #endif
1321
		// #ifdef APP-IOS
1322 1323 1324 1325
		{
			"path": "pages/API/virtual-payment/virtual-payment",
			"group": "1,14,1",
			"style": {
DCloud-WZF's avatar
DCloud-WZF 已提交
1326
				"navigationBarTitleText": "virtualPayment | 虚拟支付(requestVirtualPayment)",
1327 1328 1329
				"enablePullDownRefresh": false
			}
		},
1330
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1331
		// #ifdef APP-IOS || MP-WEIXIN
1332 1333 1334 1335 1336 1337 1338
		{
			"path": "pages/API/virtual-payment/virtual-payment-uni-pay",
			"style": {
				"navigationBarTitleText": "苹果虚拟支付(uni-pay)",
				"enablePullDownRefresh": false
			}
		},
1339
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1340
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1341 1342 1343 1344 1345 1346 1347
		{
			"path": "pages/API/request-payment/request-payment/order-detail",
			"style": {
				"navigationBarTitleText": "订单详情示例",
				"enablePullDownRefresh": false
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1348 1349
		// #endif
		// #ifdef WEB || MP-WEIXIN
1350 1351
		{
			"path": "pages/API/make-phone-call/make-phone-call",
1352
			"group": "1,6,8",
1353 1354 1355 1356
			"style": {
				"navigationBarTitleText": "makePhoneCall | 打电话"
			}
		},
1357
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1358
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1359 1360 1361 1362 1363 1364 1365
		{
			"path": "pages/API/create-inner-audio-context/create-inner-audio-context",
			"group": "1,7,9",
			"style": {
				"navigationBarTitleText": "createInnerAudioContext | 音频"
			}
		},
1366
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1367
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1368 1369 1370 1371 1372 1373
		{
			"path": "pages/API/create-inner-audio-context/inner-audio-format",
			"style": {
				"navigationBarTitleText": "inner-audio-format"
			}
		},
1374
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1375
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1376 1377 1378 1379 1380 1381
		{
			"path": "pages/API/create-inner-audio-context/inner-audio-path",
			"style": {
				"navigationBarTitleText": "inner-audio-path"
			}
		},
1382
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1383
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
DCloud-WZF's avatar
DCloud-WZF 已提交
1384 1385 1386 1387 1388 1389 1390 1391
		{
			"path": "pages/API/create-inner-audio-context/inner-audio-mult",
			"style": {
				"navigationBarTitleText": "inner-audio-mult"
			}
		},
		// #endif
		// #ifdef WEB || MP-WEIXIN
1392 1393
		{
			"path": "pages/API/clipboard/clipboard",
1394
			"group": "1,6,9",
1395 1396 1397 1398
			"style": {
				"navigationBarTitleText": "clipboard | 剪切板"
			}
		},
1399
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1400
		// #ifdef WEB || MP-WEIXIN
1401 1402
		{
			"path": "pages/API/compass/compass",
1403
			"group": "1,6,10",
1404 1405 1406 1407
			"style": {
				"navigationBarTitleText": "compass | 罗盘"
			}
		},
1408
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1409
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1410 1411 1412 1413 1414 1415 1416 1417
		{
			"path": "pages/API/theme-change/theme-change",
			"group": "1,4,7",
			"style": {
				"navigationBarTitleText": "themeChange | 主题切换",
				"enablePullDownRefresh": false
			}
		},
1418
		// #endif
1419
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1420 1421 1422 1423 1424 1425 1426
		{
			"path": "pages/API/get-element-by-id/get-element-by-id",
			"group": "1,3,0",
			"style": {
				"navigationBarTitleText": "getElementById | 通过 id 获取 element"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1427
		// #endif
1428
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1429 1430 1431 1432 1433 1434
		{
			"path": "pages/API/get-element-by-id/get-element-by-id-multiple-root-node",
			"style": {
				"navigationBarTitleText": "获取节点-多根节点"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1435
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1436
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1437 1438
		{
			"path": "pages/API/create-selector-query/create-selector-query",
DCloud-WZF's avatar
DCloud-WZF 已提交
1439
			"group": "1,3,2",
1440 1441 1442 1443
			"style": {
				"navigationBarTitleText": "createSelectorQuery | 创建 SelectorQuery 实例"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1444 1445 1446 1447 1448 1449 1450 1451
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
		{
			"path": "pages/API/create-selector-query/create-selector-query-onScroll",
			"style": {
				"navigationBarTitleText": "createSelectorQuery"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1452
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1453
		// #ifdef APP-ANDROID || APP-IOS
shutao-dc's avatar
shutao-dc 已提交
1454
		{
1455
			"path": "pages/API/get-native-view/element-getnativeview",
DCloud-WZF's avatar
DCloud-WZF 已提交
1456
			"group": "1,30",
shutao-dc's avatar
shutao-dc 已提交
1457
			"style": {
1458
				"navigationBarTitleText": "getNativeView | 获取原生 View",
shutao-dc's avatar
shutao-dc 已提交
1459 1460 1461 1462
				"backgroundColor": "#F8F8F8"
			}
		},
		// #endif
1463
		// #ifdef APP-ANDROID || APP-IOS || WEB
1464 1465 1466 1467 1468 1469 1470
		{
			"path": "pages/API/resize-observer/resize-observer",
			"group": "1,30",
			"style": {
				"navigationBarTitleText": "UniResizeObserver"
			}
		},
1471
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1472
		// #ifdef APP-ANDROID || APP-IOS
DCloud-WZF's avatar
DCloud-WZF 已提交
1473
		{
1474
			"path": "pages/API/provider/provider",
DCloud-WZF's avatar
DCloud-WZF 已提交
1475 1476
			"group": "1,1,6",
			"style": {
1477
				"navigationBarTitleText": "provider | 服务提供商"
DCloud-WZF's avatar
DCloud-WZF 已提交
1478 1479
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1480
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1481
		// #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
DCloud-WZF's avatar
DCloud-WZF 已提交
1482 1483 1484 1485 1486 1487 1488
		{
			"path": "pages/API/privacy/privacy",
			"group": "1,1,8",
			"style": {
				"navigationBarTitleText": "privacy | 隐私信息授权"
			}
		},
1489
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1490
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
DCloud-WZF's avatar
DCloud-WZF 已提交
1491
		{
1492
			"path": "pages/API/uni-push/uni-push",
1493
			"group": "1,16,0",
DCloud-WZF's avatar
DCloud-WZF 已提交
1494
			"style": {
1495
				"navigationBarTitleText": "推送"
DCloud-WZF's avatar
DCloud-WZF 已提交
1496 1497
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1498 1499
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB
DCloud-WZF's avatar
DCloud-WZF 已提交
1500 1501 1502 1503 1504 1505 1506
		{
			"path": "pages/API/report/report",
			"group": "1,17,0",
			"style": {
				"navigationBarTitleText": "report | 统计采集上报"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1507
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
1508
		// #ifdef APP-ANDROID || APP-IOS || WEB
1509 1510
		{
			"path": "pages/API/dialog-page/dialog-page",
DCloud-WZF's avatar
DCloud-WZF 已提交
1511
			"group": "1,2,1",
1512
			"style": {
DCloud-WZF's avatar
DCloud-WZF 已提交
1513
				"navigationBarTitleText": "dialogPage"
1514 1515
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1516 1517
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB
1518 1519 1520 1521 1522 1523
		{
			"path": "pages/API/dialog-page/next-page",
			"style": {
				"navigationBarTitleText": "dialogNextPage"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1524 1525
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB
1526 1527 1528 1529 1530 1531
		{
			"path": "pages/API/dialog-page/dialog-1",
			"style": {
				"navigationBarTitleText": "dialogPage1"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1532 1533
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB
1534 1535 1536
		{
			"path": "pages/API/dialog-page/dialog-2",
			"style": {
DCloud-WZF's avatar
DCloud-WZF 已提交
1537
				"navigationBarTitleText": "dialogPage2"
1538 1539
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1540
		// #endif
1541 1542 1543 1544 1545 1546 1547 1548
		// #ifdef APP-ANDROID || APP-IOS || WEB
		{
			"path": "pages/API/dialog-page/dialog-3",
			"style": {
				"navigationBarTitleText": "dialogPage3"
			}
		},
		// #endif
1549
		// #ifdef APP-ANDROID || APP-IOS || WEB
DCloud-WZF's avatar
DCloud-WZF 已提交
1550 1551 1552 1553
		{
			"path": "pages/API/dialog-page/dialog-4",
			"style": {
				"navigationBarTitleText": "dialogPage4",
1554
				"navigationBarTextStyle": "black"
DCloud-WZF's avatar
DCloud-WZF 已提交
1555 1556 1557
			}
		},
		// #endif
1558
		// #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
DCloud-WZF's avatar
DCloud-WZF 已提交
1559 1560 1561 1562 1563 1564 1565 1566 1567
		{
			"path": "pages/API/create-interstitial-ad/create-interstitial-ad",
			"group": "1,13,1",
			"style": {
				"navigationBarTitleText": "createInterstitialAd | 插屏广告",
				"enablePullDownRefresh": false
			}
		},
		// #endif
1568
		// #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
DCloud-WZF's avatar
DCloud-WZF 已提交
1569 1570 1571 1572 1573 1574 1575 1576 1577
		{
			"path": "pages/API/get-background-audio-manager/get-background-audio-manager",
			"group": "1,7,10",
			"style": {
				"navigationBarTitleText": "getBackgroundAudioManager | 背景音频",
				"enablePullDownRefresh": false
			}
		},
		// #endif
1578 1579 1580 1581 1582 1583 1584 1585 1586 1587
		// #ifdef APP-ANDROID || APP-IOS
		{
			"path": "pages/API/share-with-system/share-with-system",
			"group": "1,15,0",
			"style": {
				"navigationBarTitleText": "shareWithSystem",
				"enablePullDownRefresh": false
			}
		},
		// #endif
1588 1589 1590 1591
		{
			"path": "pages/tabBar/CSS",
			"style": {
				"navigationBarTitleText": "CSS",
1592
				"backgroundColorContent": "#f8f8f8"
1593 1594
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1595
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1596 1597 1598 1599 1600 1601 1602
		{
			"path": "pages/CSS/background/background-color",
			"group": "2,8,1",
			"style": {
				"navigationBarTitleText": "background-color"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1603 1604
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1605 1606 1607 1608 1609 1610 1611
		{
			"path": "pages/CSS/background/background-image",
			"group": "2,8,2",
			"style": {
				"navigationBarTitleText": "background-image"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1612 1613
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1614 1615 1616 1617 1618 1619 1620
		{
			"path": "pages/CSS/border/border-bottom",
			"group": "2,13,22",
			"style": {
				"navigationBarTitleText": "border-bottom"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1621 1622
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1623 1624 1625 1626 1627 1628 1629
		{
			"path": "pages/CSS/border/border-color",
			"group": "2,13,11",
			"style": {
				"navigationBarTitleText": "border-color"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1630 1631
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1632 1633 1634 1635 1636 1637 1638
		{
			"path": "pages/CSS/border/border-left",
			"group": "2,13,23",
			"style": {
				"navigationBarTitleText": "border-left"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1639 1640
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1641 1642 1643 1644 1645 1646 1647
		{
			"path": "pages/CSS/border/border-radius",
			"group": "2,13,16",
			"style": {
				"navigationBarTitleText": "border-radius"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1648 1649
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1650 1651 1652 1653 1654 1655 1656
		{
			"path": "pages/CSS/border/border-right",
			"group": "2,13,24",
			"style": {
				"navigationBarTitleText": "border-right"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1657 1658
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1659 1660 1661 1662 1663 1664 1665
		{
			"path": "pages/CSS/border/border-style",
			"group": "2,13,1",
			"style": {
				"navigationBarTitleText": "border-style"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1666 1667
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1668 1669 1670 1671 1672 1673 1674
		{
			"path": "pages/CSS/border/border-top",
			"group": "2,13,21",
			"style": {
				"navigationBarTitleText": "border-top"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1675 1676
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1677 1678 1679 1680 1681 1682 1683
		{
			"path": "pages/CSS/border/border-width",
			"group": "2,13,6",
			"style": {
				"navigationBarTitleText": "border-width"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1684 1685
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1686 1687 1688 1689 1690 1691 1692
		{
			"path": "pages/CSS/border/border",
			"group": "2,13,0",
			"style": {
				"navigationBarTitleText": "border"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1693 1694
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1695 1696 1697 1698 1699 1700 1701
		{
			"path": "pages/CSS/border/complex-border/complex-border",
			"group": "2,13",
			"style": {
				"navigationBarTitleText": "border属性组合示例"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1702 1703
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1704 1705 1706 1707 1708 1709 1710
		{
			"path": "pages/CSS/border/dynamic-border",
			"group": "2,13",
			"style": {
				"navigationBarTitleText": "border动态修改"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1711 1712
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1713 1714 1715 1716
		{
			"path": "pages/CSS/border/border-update",
			"group": "2,13",
			"style": {
DCloud-WZF's avatar
DCloud-WZF 已提交
1717
				"navigationBarTitleText": "border更新样式"
1718 1719
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1720 1721
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1722 1723 1724 1725 1726 1727 1728
		{
			"path": "pages/CSS/box-shadow/box-shadow",
			"group": "2,15",
			"style": {
				"navigationBarTitleText": "box-shadow"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1729 1730
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1731 1732 1733 1734 1735 1736 1737
		{
			"path": "pages/CSS/display/flex",
			"group": "2,5",
			"style": {
				"navigationBarTitleText": "flex"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1738 1739
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1740 1741 1742 1743 1744 1745 1746
		{
			"path": "pages/CSS/display/none",
			"group": "2,5",
			"style": {
				"navigationBarTitleText": "none"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1747 1748
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1749 1750 1751 1752 1753 1754 1755
		{
			"path": "pages/CSS/flex/align-content",
			"group": "2,7,6",
			"style": {
				"navigationBarTitleText": "align-content"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1756 1757
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1758 1759 1760 1761 1762 1763 1764
		{
			"path": "pages/CSS/flex/align-items",
			"group": "2,7,4",
			"style": {
				"navigationBarTitleText": "align-items"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1765 1766
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1767 1768 1769 1770 1771 1772 1773
		{
			"path": "pages/CSS/flex/flex-basis",
			"group": "2,7,9",
			"style": {
				"navigationBarTitleText": "flex-basis"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1774 1775
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1776 1777 1778 1779 1780 1781 1782
		{
			"path": "pages/CSS/flex/flex-direction",
			"group": "2,7,1",
			"style": {
				"navigationBarTitleText": "flex-direction"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1783 1784
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1785 1786 1787 1788 1789 1790 1791
		{
			"path": "pages/CSS/flex/flex-flow",
			"group": "2,7,10",
			"style": {
				"navigationBarTitleText": "flex-flow"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1792 1793
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1794 1795 1796 1797 1798 1799 1800
		{
			"path": "pages/CSS/flex/flex-grow",
			"group": "2,7,7",
			"style": {
				"navigationBarTitleText": "flex-grow"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1801 1802
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1803 1804 1805 1806 1807 1808 1809
		{
			"path": "pages/CSS/flex/flex-shrink",
			"group": "2,7,8",
			"style": {
				"navigationBarTitleText": "flex-shrink"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1810 1811
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1812 1813 1814 1815 1816 1817 1818
		{
			"path": "pages/CSS/flex/flex",
			"group": "2,7,0",
			"style": {
				"navigationBarTitleText": "flex"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1819 1820
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1821 1822 1823 1824 1825 1826 1827
		{
			"path": "pages/CSS/flex/justify-content",
			"group": "2,7,2",
			"style": {
				"navigationBarTitleText": "justify-content"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1828 1829
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1830 1831 1832 1833 1834 1835 1836
		{
			"path": "pages/CSS/layout/height",
			"group": "2,1,0",
			"style": {
				"navigationBarTitleText": "height"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1837 1838
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1839 1840 1841 1842 1843 1844 1845
		{
			"path": "pages/CSS/layout/max-height",
			"group": "2,1,2",
			"style": {
				"navigationBarTitleText": "max-height"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1846 1847
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1848 1849 1850 1851 1852 1853 1854
		{
			"path": "pages/CSS/layout/max-width",
			"group": "2,0,2",
			"style": {
				"navigationBarTitleText": "max-width"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1855 1856
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1857 1858 1859 1860 1861 1862 1863
		{
			"path": "pages/CSS/layout/min-height",
			"group": "2,1,1",
			"style": {
				"navigationBarTitleText": "min-height"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1864 1865
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1866 1867 1868 1869 1870 1871 1872
		{
			"path": "pages/CSS/layout/min-width",
			"group": "2,0,1",
			"style": {
				"navigationBarTitleText": "min-width"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1873 1874
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1875 1876 1877 1878 1879 1880 1881
		{
			"path": "pages/CSS/layout/position",
			"group": "2,9,0",
			"style": {
				"navigationBarTitleText": "position"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1882 1883
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1884 1885 1886 1887 1888 1889 1890
		{
			"path": "pages/CSS/layout/width",
			"group": "2,0,0",
			"style": {
				"navigationBarTitleText": "width"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1891 1892
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1893 1894 1895 1896 1897 1898 1899
		{
			"path": "pages/CSS/layout/z-index",
			"group": "2,10",
			"style": {
				"navigationBarTitleText": "z-index"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1900 1901
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1902 1903 1904 1905 1906 1907 1908
		{
			"path": "pages/CSS/layout/visibility",
			"group": "2,6",
			"style": {
				"navigationBarTitleText": "visibility"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1909 1910
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1911 1912 1913 1914 1915 1916 1917
		{
			"path": "pages/CSS/margin/margin-bottom",
			"group": "2,2,2",
			"style": {
				"navigationBarTitleText": "margin-bottom"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1918 1919
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1920 1921 1922 1923 1924 1925 1926
		{
			"path": "pages/CSS/margin/margin-left",
			"group": "2,2,3",
			"style": {
				"navigationBarTitleText": "margin-left"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1927 1928
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1929 1930 1931 1932 1933 1934 1935
		{
			"path": "pages/CSS/margin/margin-right",
			"group": "2,2,4",
			"style": {
				"navigationBarTitleText": "margin-right"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1936 1937
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1938 1939 1940 1941 1942 1943 1944
		{
			"path": "pages/CSS/margin/margin-top",
			"group": "2,2,1",
			"style": {
				"navigationBarTitleText": "margin-top"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1945 1946
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1947 1948 1949 1950 1951 1952 1953
		{
			"path": "pages/CSS/margin/margin",
			"group": "2,2,0",
			"style": {
				"navigationBarTitleText": "margin"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1954 1955
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1956 1957 1958 1959 1960 1961 1962
		{
			"path": "pages/CSS/overflow/overflow",
			"group": "2,11",
			"style": {
				"navigationBarTitleText": "overflow"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1963 1964
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1965 1966 1967 1968 1969 1970 1971
		{
			"path": "pages/CSS/padding/padding-bottom",
			"group": "2,3,2",
			"style": {
				"navigationBarTitleText": "padding-bottom"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1972 1973
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1974 1975 1976 1977 1978 1979 1980
		{
			"path": "pages/CSS/padding/padding-left",
			"group": "2,3,3",
			"style": {
				"navigationBarTitleText": "padding-left"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1981 1982
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1983 1984 1985 1986 1987 1988 1989
		{
			"path": "pages/CSS/padding/padding-right",
			"group": "2,3,4",
			"style": {
				"navigationBarTitleText": "padding-right"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1990 1991
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
1992 1993 1994 1995 1996 1997 1998
		{
			"path": "pages/CSS/padding/padding-top",
			"group": "2,3,1",
			"style": {
				"navigationBarTitleText": "padding-top"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
1999 2000
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
2001 2002 2003 2004 2005 2006 2007
		{
			"path": "pages/CSS/padding/padding",
			"group": "2,3,0",
			"style": {
				"navigationBarTitleText": "padding"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2008 2009
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
2010 2011 2012 2013 2014 2015 2016
		{
			"path": "pages/CSS/text/color",
			"group": "2,14,0",
			"style": {
				"navigationBarTitleText": "color"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2017 2018
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
2019 2020 2021 2022 2023 2024 2025
		{
			"path": "pages/CSS/text/font-family",
			"group": "2,14,2",
			"style": {
				"navigationBarTitleText": "font-family"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2026 2027
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
2028 2029 2030 2031 2032 2033 2034
		{
			"path": "pages/CSS/text/font-size",
			"group": "2,14,1",
			"style": {
				"navigationBarTitleText": "font-size"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2035 2036
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
2037 2038 2039 2040 2041 2042 2043
		{
			"path": "pages/CSS/text/font-style",
			"group": "2,14,3",
			"style": {
				"navigationBarTitleText": "font-style"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2044 2045
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
2046 2047 2048 2049 2050 2051 2052
		{
			"path": "pages/CSS/text/font-weight",
			"group": "2,14,4",
			"style": {
				"navigationBarTitleText": "font-weight"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2053 2054
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
2055 2056 2057 2058 2059 2060 2061
		{
			"path": "pages/CSS/text/letter-spacing",
			"group": "2,14,14",
			"style": {
				"navigationBarTitleText": "letter-spacing"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2062
		// #endif
DCloud-yyl's avatar
DCloud-yyl 已提交
2063
		{
2064
			"path": "pages/CSS/text/font-family-icon",
DCloud-yyl's avatar
DCloud-yyl 已提交
2065
			"style": {
2066
				"navigationBarTitleText": "font-family: uni-icon"
DCloud-yyl's avatar
DCloud-yyl 已提交
2067 2068
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2069
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
2070 2071 2072 2073 2074 2075 2076
		{
			"path": "pages/CSS/text/line-height",
			"group": "2,14,12",
			"style": {
				"navigationBarTitleText": "line-height"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2077 2078
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
2079 2080 2081 2082 2083 2084 2085
		{
			"path": "pages/CSS/text/text-align",
			"group": "2,14,10",
			"style": {
				"navigationBarTitleText": "text-align"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2086 2087
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
2088 2089 2090 2091 2092 2093 2094
		{
			"path": "pages/CSS/text/text-overflow",
			"group": "2,14,11",
			"style": {
				"navigationBarTitleText": "text-overflow"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2095 2096
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
2097 2098 2099 2100 2101 2102 2103
		{
			"path": "pages/CSS/text/text-decoration-line",
			"group": "2,14,6",
			"style": {
				"navigationBarTitleText": "text-decoration-line"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2104 2105
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
2106 2107 2108 2109 2110 2111 2112
		{
			"path": "pages/CSS/transition/transition",
			"group": "2,16",
			"style": {
				"navigationBarTitleText": "transition"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2113 2114
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
2115 2116 2117 2118 2119 2120 2121
		{
			"path": "pages/CSS/pointer-events/pointer-events",
			"group": "2,18",
			"style": {
				"navigationBarTitleText": "pointer-events"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2122 2123
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
2124 2125 2126 2127 2128 2129 2130
		{
			"path": "pages/CSS/transform/translate",
			"group": "2,17",
			"style": {
				"navigationBarTitleText": "translate"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2131 2132
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
2133 2134 2135 2136 2137 2138 2139
		{
			"path": "pages/CSS/transform/scale",
			"group": "2,17",
			"style": {
				"navigationBarTitleText": "scale"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2140 2141
		// #endif
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
2142 2143 2144 2145 2146 2147 2148
		{
			"path": "pages/CSS/transform/rotate",
			"group": "2,17",
			"style": {
				"navigationBarTitleText": "rotate"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2149
		// #endif
2150 2151 2152 2153 2154 2155 2156
		{
			"path": "pages/CSS/variable/variable",
			"group": "2,20",
			"style": {
				"navigationBarTitleText": "css 变量"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2157
		// #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN
2158 2159 2160 2161 2162 2163
		{
			"path": "pages/CSS/overflow/overflow-visible-event",
			"group": "2,11",
			"style": {
				"navigationBarTitleText": "overflow-visible-event"
			}
DCloud-WZF's avatar
DCloud-WZF 已提交
2164
		}
DCloud-WZF's avatar
DCloud-WZF 已提交
2165
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
2166
		,
2167 2168 2169
		{
			"path": "pages/tabBar/template",
			"style": {
2170 2171
				"navigationBarTitleText": "模板",
				"backgroundColorContent": "#f8f8f8"
2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263
			}
		},
		{
			"path": "pages/template/list-news/list-news",
			"style": {
				"navigationBarTitleText": "列表到详情示例(吸顶)"
			}
		},
		{
			"path": "pages/template/list-news/detail/detail",
			"style": {
				"navigationBarTitleText": "详情示例"
			}
		},
		{
			"path": "pages/template/drop-card/drop-card",
			"style": {
				"navigationBarTitleText": "drop-card"
			}
		},
		{
			"path": "pages/template/swiper-list/swiper-list",
			"style": {
				"navigationBarTitleText": "swiper-list"
			}
		},
		{
			"path": "pages/template/swiper-list2/swiper-list2",
			"style": {
				"navigationBarTitleText": "swiper-list2"
			}
		},
		{
			"path": "pages/template/slider-100/slider-100",
			"style": {
				"navigationBarTitleText": "slider x 100"
			}
		},
		{
			"path": "pages/template/swiper-vertical-video/swiper-vertical-video",
			"style": {
				"navigationStyle": "custom",
				"backgroundColorContent": "#000000"
			}
		},
		// #ifdef APP
		{
			"path": "pages/template/scroll-sticky/scroll-sticky",
			"style": {
				"navigationBarTitleText": "scroll-view自定义滚动吸顶"
			}
		},
		// #endif
		{
			"path": "pages/template/scroll-fold-nav/scroll-fold-nav",
			"style": {
				"navigationStyle": "custom",
				"navigationBarTextStyle": "black"
			}
		},
		{
			"path": "pages/template/custom-refresher/custom-refresher",
			"style": {
				"navigationBarTitleText": "自定义下拉刷新"
			}
		},
		{
			"path": "pages/template/half-screen/half-screen",
			"style": {
				"navigationBarTitleText": "半屏弹窗"
			}
		},
		{
			"path": "pages/template/long-list/long-list",
			"style": {
				"navigationBarTitleText": "Android顶部搜索框随时下移长列表",
				"enablePullDownRefresh": true
			}
		},
		{
			"path": "pages/template/long-list2/long-list2",
			"style": {
				"navigationBarTitleText": "顶部banner长列表嵌套滚动示例",
				"enablePullDownRefresh": true
			}
		},
		{
			"path": "pages/template/long-list-nested/long-list-nested",
			"style": {
				"navigationBarTitleText": "顶部banner长列表嵌套滚动示例",
				"enablePullDownRefresh": true
			}
2264
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2265
		{
shutao-dc's avatar
shutao-dc 已提交
2266
			"path": "pages/template/long-waterflow-nested/long-waterflow-nested",
DCloud-WZF's avatar
DCloud-WZF 已提交
2267 2268 2269 2270 2271
			"style": {
				"navigationBarTitleText": "顶部banner瀑布流长列表嵌套滚动示例",
				"enablePullDownRefresh": true
			}
		},
2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298
		{
			"path": "pages/template/pull-zoom-image/pull-zoom-image",
			"style": {
				"navigationStyle": "custom"
			}
		},
		{
			"path": "pages/template/navbar-lite/navbar-lite",
			"style": {
				"navigationBarTitleText": "自定义导航栏",
				"navigationStyle": "custom"
			}
		},
		{
			"path": "pages/template/custom-tab-bar/custom-tab-bar",
			"style": {
				"navigationBarTitleText": "自定义TabBar"
			}
		},
		// #ifdef APP
		{
			"path": "pages/template/calendar/calendar",
			"style": {
				"navigationBarTitleText": "日历"
			}
		},
		// #endif
W
wanganxp 已提交
2299
		// #ifdef APP || WEB
2300 2301 2302 2303 2304 2305
		{
			"path": "pages/template/schema/schema",
			"style": {
				"navigationBarTitleText": "打开schema示例"
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2306
		// #endif
2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318
		{
			"path": "uni_modules/uni-pay-x/pages/success/success",
			"style": {
				"navigationBarTitleText": "",
				"backgroundColor": "#F8F8F8",
				"navigationBarBackgroundColor": "#007aff",
				"navigationBarTextStyle": "white"
			}
		},
		{
			"path": "uni_modules/uni-pay-x/pages/ad-interactive-webview/ad-interactive-webview",
			"style": {
VK1688's avatar
VK1688 已提交
2319
				"navigationBarTitleText": "ad",
2320 2321 2322 2323 2324 2325
				"backgroundColor": "#F8F8F8"
			}
		},
		{
			"path": "uni_modules/uni-pay-x/pages/pay-desk/pay-desk",
			"style": {
VK1688's avatar
VK1688 已提交
2326
				"navigationBarTitleText": "收银台",
2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342
				"backgroundColor": "#F8F8F8"
			}
		},
		{
			"path": "pages/template/custom-long-list/custom-long-list",
			"style": {
				"navigationBarTitleText": "自定义虚拟长列表",
				"enablePullDownRefresh": false
			}
		},
		{
			"path": "pages/template/test-background-color-content/test-background-color-content",
			"style": {
				"navigationBarTitleText": "",
				"backgroundColorContent": "#fffae8"
			}
M
mahaifeng 已提交
2343
		},
VK1688's avatar
VK1688 已提交
2344 2345 2346 2347 2348 2349 2350 2351 2352 2353
		// #ifdef APP-ANDROID || APP-IOS || WEB
		{
			"path": "uni_modules/uni-openLocation/pages/openLocation/openLocation",
			"style": {
				"navigationBarTitleText": " ",
				"navigationStyle": "custom",
				"disableSwipeBack": false
			}
		},
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
2354 2355 2356 2357 2358 2359 2360
		// #ifdef APP-IOS
		{
			"path": "pages/API/event-bus/uts-event-bus",
			"style": {
				"navigationBarTitleText": ""
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2361 2362 2363 2364 2365 2366
		{
			"path": "pages/API/dialog-page/uts-dialog-page",
			"style": {
				"navigationBarTitleText": ""
			}
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2367 2368
		// #endif
		// #ifdef APP
M
mahaifeng 已提交
2369
		{
M
mahaifeng 已提交
2370
			"path": "pages/component/button/privacy",
DCloud-WZF's avatar
DCloud-WZF 已提交
2371 2372 2373
			"style": {
				"navigationBarTitleText": ""
			}
DCloud-WZF's avatar
DCloud-WZF 已提交
2374 2375
		},
		{
2376 2377 2378
			"path": "uni_modules/uni-upgrade-center-app/pages/uni-app-x/upgrade-popup",
			"style": {
				"navigationBarTitleText": ""
DCloud-WZF's avatar
DCloud-WZF 已提交
2379
			}
Anne_LXM's avatar
Anne_LXM 已提交
2380
		},
DCloud-WZF's avatar
DCloud-WZF 已提交
2381
		// #endif
DCloud-WZF's avatar
DCloud-WZF 已提交
2382 2383 2384 2385 2386 2387 2388 2389
		// #ifdef WEB
		{
			"path": "pages/template/browser-element/browser-element",
			"style": {
				"navigationBarTitleText": "如何使用浏览器 element"
			}
		},
		// #endif
W
wanganxp 已提交
2390
		// #ifdef MP-WEIXIN
DCloud-WZF's avatar
DCloud-WZF 已提交
2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401
		{
			"path": "pages/template/vant/vant",
			"style": {
				"navigationBarTitleText": "微信自定义组件示例",
				"usingComponents": {
					"vant-button": "/wxcomponents/vant/button/index",
					"vant-icon": "/wxcomponents/vant/icon/index",
					"vant-info": "/wxcomponents/vant/info/index",
					"vant-loading": "/wxcomponents/vant/loading/index"
				}
			}
Anne_LXM's avatar
Anne_LXM 已提交
2402 2403
		},
		{
2404 2405 2406 2407
			"path": "pages/template/WXS/WXS",
			"style": {
				"navigationBarTitleText": "WXS"
			}
DCloud-WZF's avatar
DCloud-WZF 已提交
2408 2409
		}
		// #endif
VK1688's avatar
VK1688 已提交
2410
],
2411 2412 2413 2414 2415 2416
	"globalStyle": {
		"pageOrientation": "portrait",
		"navigationBarTitleText": "Hello uniapp x",
		"navigationBarTextStyle": "@navigationBarTextStyle",
		"navigationBarBackgroundColor": "@navigationBarBackgroundColor",
		"backgroundColorContent": "@backgroundColorContent",
2417
		"backgroundColor": "@backgroundColor",
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
2418
		"backgroundTextStyle": "@backgroundTextStyle"
2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429
	},
	"tabBar": {
		"color": "@tabBarColor",
		"selectedColor": "@tabBarSelectedColor",
		"borderStyle": "@tabBarBorderStyle",
		"backgroundColor": "@tabBarBackgroundColor",
		"list": [
			{
				"pagePath": "pages/tabBar/component",
				"iconPath": "@tabBarComponentIconPath",
				"selectedIconPath": "@tabBarComponentSelectedIconPath",
2430
				"text": "组件"
2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468
			},
			{
				"pagePath": "pages/tabBar/API",
				"iconPath": "@tabBarAPIIconPath",
				"selectedIconPath": "@tabBarAPISelectedIconPath",
				"text": "接口"
			},
			{
				"pagePath": "pages/tabBar/CSS",
				"iconPath": "@tabBarCSSIconPath",
				"selectedIconPath": "@tabBarCSSSelectedIconPath",
				"text": "CSS"
			},
			{
				"pagePath": "pages/tabBar/template",
				"iconPath": "@tabBarTemplateIconPath",
				"selectedIconPath": "@tabBarTemplateSelectedIconPath",
				"text": "模板"
			}
		]
	},
	"condition": {
		//模式配置,仅开发期间生效
		"current": 0, //当前激活的模式(list 的索引项)
		"list": [
			{
				"name": "", //模式名称
				"path": "", //启动页面,必选
				"query": "" //启动参数,在页面的onLoad函数里面得到
			}
		]
	},
	"groups": [
		{
			"id": "component",
			"name": "组件",
			"children": [
				{
2469 2470
					"id": "component.global-properties-events",
					"name": "全局属性和事件"
2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489
				},
				{
					"id": "component.view-container",
					"name": "视图容器",
					"children": [
						{
							"id": "component.view-container.view",
							"name": "view"
						},
						{
							"id": "component.view-container.scroll-view",
							"name": "scroll-view"
						},
						{
							"id": "component.view-container.swiper",
							"name": "swiper"
						},
						null,
						{
DCloud-WZF's avatar
DCloud-WZF 已提交
2490 2491 2492 2493 2494 2495 2496 2497 2498
							"id": "component.view-container.movable",
							"name": "movable",
							"children": [
								null,
								{
									"id": "component.view-container.movable.movable-view",
									"name": "movable-view"
								}
							]
2499 2500
						},
						{
DCloud-WZF's avatar
DCloud-WZF 已提交
2501 2502 2503 2504 2505 2506 2507 2508
							"id": "component.view-container.cover",
							"name": "cover",
							"children": [
								{
									"id": "component.view-container.cover.cover-view",
									"name": "cover-view"
								}
							]
2509 2510 2511 2512 2513
						},
						{
							"id": "component.view-container.list-view",
							"name": "list-view"
						},
DCloud-WZF's avatar
DCloud-WZF 已提交
2514
						{
DCloud-WZF's avatar
DCloud-WZF 已提交
2515 2516
							"id": "component.view-container.waterflow",
							"name": "waterflow"
DCloud-WZF's avatar
DCloud-WZF 已提交
2517
						},
2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563
						{
							"id": "component.view-container.sticky",
							"name": "sticky",
							"children": [
								{
									"id": "component.view-container.sticky.sticky-header",
									"name": "sticky-header"
								},
								{
									"id": "component.view-container.sticky.sticky-section",
									"name": "sticky-section"
								}
							]
						},
						{
							"id": "component.view-container.nested-scroll",
							"name": "nested-scroll",
							"children": [
								{
									"id": "component.view-container.nested-scroll.nested-scroll-header",
									"name": "nested-scroll-header"
								},
								{
									"id": "component.view-container.nested-scroll.nested-scroll-body",
									"name": "nested-scroll-body"
								}
							]
						}
					]
				},
				{
					"id": "component.basic-content",
					"name": "基础内容",
					"children": [
						null,
						{
							"id": "component.basic-content.text",
							"name": "text"
						},
						{
							"id": "component.basic-content.rich-text",
							"name": "rich-text"
						},
						{
							"id": "component.basic-content.progress",
							"name": "progress"
2564 2565 2566 2567
						},
						{
							"id": "component.basic-content.native-view",
							"name": "native-view"
2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621
						}
					]
				},
				{
					"id": "component.form-component",
					"name": "表单组件",
					"children": [
						{
							"id": "component.form-component.button",
							"name": "button"
						},
						{
							"id": "component.form-component.checkbox",
							"name": "checkbox"
						},
						{
							"id": "component.form-component.form",
							"name": "form"
						},
						{
							"id": "component.form-component.input",
							"name": "input"
						},
						{
							"id": "component.form-component.editor",
							"name": "editor"
						},
						{
							"id": "component.form-component.label",
							"name": "label"
						},
						{
							"id": "component.form-component.picker",
							"name": "picker"
						},
						{
							"id": "component.form-component.picker-view",
							"name": "picker-view"
						},
						{
							"id": "component.form-component.radio",
							"name": "radio"
						},
						{
							"id": "component.form-component.slider",
							"name": "slider"
						},
						{
							"id": "component.form-component.switch",
							"name": "switch"
						},
						{
							"id": "component.form-component.textarea",
							"name": "textarea"
DCloud-WZF's avatar
DCloud-WZF 已提交
2622
						}
2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645
					]
				},
				{
					"id": "component.navigation",
					"name": "导航",
					"children": [
						{
							"id": "component.navigation.navigator",
							"name": "navigator"
						}
					]
				},
				{
					"id": "component.media",
					"name": "媒体组件",
					"children": [
						{
							"id": "component.media.image",
							"name": "image"
						},
						{
							"id": "component.media.video",
							"name": "video"
2646
						}
2647 2648 2649 2650 2651 2652 2653 2654 2655 2656
					]
				},
				{
					"id": "component.map",
					"name": "地图"
				},
				{
					"id": "component.canvas",
					"name": "画布"
				},
DCloud-WZF's avatar
DCloud-WZF 已提交
2657 2658 2659 2660
				{
					"id": "component.ad",
					"name": "广告"
				},
2661 2662 2663 2664
				{
					"id": "component.web-view",
					"name": "网页"
				},
DCloud-WZF's avatar
DCloud-WZF 已提交
2665 2666 2667 2668
				{
					"id": "component.page-meta",
					"name": "page-meta"
				},
2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689
				{
					"id": "component.unicloud",
					"name": "unicloud"
				}
			]
		},
		{
			"id": "API",
			"name": "API",
			"children": [
				{
					"id": "api.global",
					"name": "全局",
					"children": [
						{
							"id": "api.global.getApp",
							"name": "getApp"
						},
						{
							"id": "api.global.getCurrentPages",
							"name": "getCurrentPages"
2690 2691 2692 2693
						},
						{
							"id": "api.global.animationFrame",
							"name": "animationFrame"
2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714
						}
					]
				},
				{
					"id": "api.base",
					"name": "基础",
					"children": [
						{
							"id": "api.base.env",
							"name": "env"
						},
						{
							"id": "api.base.eventBus",
							"name": "eventBus"
						},
						null,
						{
							"id": "api.base.interceptor",
							"name": "interceptor"
						},
						{
DCloud-WZF's avatar
DCloud-WZF 已提交
2715
							"id": "api.base.launch",
DCloud-WZF's avatar
DCloud-WZF 已提交
2716
							"name": "启动",
DCloud-WZF's avatar
DCloud-WZF 已提交
2717 2718 2719 2720
							"children": [
								{
									"id": "api.base.launch.getLaunchOptionsSync",
									"name": "getLaunchOptionsSync"
2721 2722 2723
								},
								{
									"id": "api.base.launch.getEnterOptionsSync",
辛宝Otto's avatar
辛宝Otto 已提交
2724
									"name": "getEnterOptionsSync"
DCloud-WZF's avatar
DCloud-WZF 已提交
2725 2726
								}
							]
2727 2728 2729 2730
						},
						{
							"id": "api.base.exit",
							"name": "exit"
DCloud-WZF's avatar
DCloud-WZF 已提交
2731 2732
						},
						{
2733 2734
							"id": "api.base.provider",
							"name": "provider"
2735
						},
DCloud-WZF's avatar
DCloud-WZF 已提交
2736 2737 2738 2739 2740
						null,
						{
							"id": "api.base.privacy",
							"name": "privacy"
						}
2741 2742 2743 2744 2745 2746 2747 2748 2749 2750
					]
				},
				{
					"id": "api.page",
					"name": "页面和路由",
					"children": [
						{
							"id": "api.page.navigator",
							"name": "navigator"
						},
DCloud-WZF's avatar
DCloud-WZF 已提交
2751 2752 2753 2754
						{
							"id": "api.page.dialogPage",
							"name": "dialogPage"
						},
2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775
						{
							"id": "api.page.setNavigationBarColor",
							"name": "setNavigationBarColor"
						},
						{
							"id": "api.page.setNavigationBarTitle",
							"name": "setNavigationBarTitle"
						},
						null,
						{
							"id": "api.page.pullDownRefresh",
							"name": "pullDownRefresh"
						},
						{
							"id": "api.page.pageScrollTo",
							"name": "pageScrollTo"
						}
					]
				},
				{
					"id": "api.dom",
2776
					"name": "element 和 node",
2777 2778 2779 2780 2781
					"children": [
						{
							"id": "api.dom.getElementById",
							"name": "getElementById"
						},
DCloud-WZF's avatar
DCloud-WZF 已提交
2782
						null,
2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950
						{
							"id": "api.dom.createSelectorQuery",
							"name": "createSelectorQuery"
						}
					]
				},
				{
					"id": "api.ui",
					"name": "界面",
					"children": [
						null,
						{
							"id": "api.ui.showActionSheet",
							"name": "showActionSheet"
						},
						{
							"id": "api.ui.showModal",
							"name": "showModal"
						},
						{
							"id": "api.ui.showLoading",
							"name": "showLoading"
						},
						{
							"id": "api.ui.showToast",
							"name": "showToast"
						},
						{
							"id": "api.ui.loadFontFace",
							"name": "loadFontFace"
						},
						{
							"id": "api.ui.rpx2px",
							"name": "rpx2px"
						},
						{
							"id": "api.ui.themeChange",
							"name": "themeChange"
						}
					]
				},
				{
					"id": "api.network",
					"name": "网络",
					"children": [
						{
							"id": "api.network.request",
							"name": "request"
						},
						{
							"id": "api.network.uploadFile",
							"name": "uploadFile"
						},
						{
							"id": "api.network.downloadFile",
							"name": "downloadFile"
						},
						{
							"id": "api.network.getNetworkType",
							"name": "getNetworkType"
						},
						{
							"id": "api.network.websocket",
							"name": "websocket"
						}
					]
				},
				{
					"id": "api.device",
					"name": "设备",
					"children": [
						{
							"id": "api.device.getSystemInfo",
							"name": "getSystemInfo"
						},
						{
							"id": "api.device.getDeviceInfo",
							"name": "getDeviceInfo"
						},
						{
							"id": "api.device.getWindowInfo",
							"name": "getWindowInfo"
						},
						{
							"id": "api.device.getAppBaseInfo",
							"name": "getAppBaseInfo"
						},
						{
							"id": "api.device.getAppAuthorizeSetting",
							"name": "getAppAuthorizeSetting"
						},
						{
							"id": "api.device.getSystemSetting",
							"name": "getSystemSetting"
						},
						{
							"id": "api.device.installApk",
							"name": "installApk"
						},
						{
							"id": "api.device.getBatteryInfo",
							"name": "getBatteryInfo"
						},
						{
							"id": "api.device.makePhoneCall",
							"name": "makePhoneCall"
						},
						{
							"id": "api.device.clipboard",
							"name": "clipboard"
						},
						{
							"id": "api.device.compass",
							"name": "compass"
						},
						null,
						null,
						null,
						null,
						{
							"id": "api.device.createRequestPermissionListener",
							"name": "createRequestPermissionListener"
						}
					]
				},
				{
					"id": "api.media",
					"name": "媒体",
					"children": [
						{
							"id": "api.media.chooseImage",
							"name": "chooseImage"
						},
						{
							"id": "api.media.previewImage",
							"name": "previewImage"
						},
						{
							"id": "api.media.saveImageToPhotosAlbum",
							"name": "saveImageToPhotosAlbum"
						},
						{
							"id": "api.media.getImageInfo",
							"name": "getImageInfo"
						},
						{
							"id": "api.media.compressImage",
							"name": "compressImage"
						},
						{
							"id": "api.media.chooseVideo",
							"name": "chooseVideo"
						},
						{
							"id": "api.media.saveVideoToPhotosAlbum",
							"name": "saveVideoToPhotosAlbum"
						},
						{
							"id": "api.media.getVideoInfo",
							"name": "getVideoInfo"
						},
						{
							"id": "api.media.compressVideo",
							"name": "compressVideo"
						},
						{
							"id": "api.media.createInnerAudioContext",
							"name": "createInnerAudioContext"
DCloud-WZF's avatar
DCloud-WZF 已提交
2951 2952 2953 2954
						},
						{
							"id": "api.media.getBackgroundAudioManager",
							"name": "getBackgroundAudioManager"
2955 2956 2957
						}
					]
				},
2958
				null,
2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011
				{
					"id": "api.location",
					"name": "位置",
					"children": [
						{
							"id": "api.location.getLocation",
							"name": "getLocation"
						},
						{
							"id": "api.location.openLocation",
							"name": "openLocation"
						},
						{
							"id": "api.location.chooseLocation",
							"name": "chooseLocation"
						}
					]
				},
				{
					"id": "api.storage",
					"name": "数据存储"
				},
				{
					"id": "api.file",
					"name": "文件",
					"children": [
						{
							"id": "api.file.getFileSystemManager",
							"name": "getFileSystemManager"
						}
					]
				},
				{
					"id": "api.loginVerify",
					"name": "登录与认证",
					"children": [
						{
							"id": "api.loginVerify.getUniverifyManager",
							"name": "getUniverifyManager"
						},
						{
							"id": "api.loginVerify.facialRecognitionMetaInfo",
							"name": "facialRecognitionMetaInfo"
						}
					]
				},
				{
					"id": "api.ad",
					"name": "广告",
					"children": [
						{
							"id": "api.ad.createRewardedVideoAd",
							"name": "createRewardedVideoAd"
DCloud-WZF's avatar
DCloud-WZF 已提交
3012 3013 3014 3015
						},
						{
							"id": "api.ad.createInterstitialAd",
							"name": "createInterstitialAd"
3016 3017 3018 3019 3020 3021 3022 3023 3024 3025
						}
					]
				},
				{
					"id": "api.payment",
					"name": "支付",
					"children": [
						{
							"id": "api.payment.requestPayment",
							"name": "requestPayment"
3026 3027 3028 3029
						},
						{
							"id": "api.payment.virtualPayment",
							"name": "virtualPayment"
3030 3031 3032
						}
					]
				},
3033 3034 3035 3036 3037 3038 3039 3040 3041 3042
				{
					"id": "api.share",
					"name": "分享",
					"children": [
						{
							"id": "api.share.shareWithSystem",
							"name": "shareWithSystem"
						}
					]
				},
3043 3044 3045 3046 3047 3048 3049 3050 3051 3052
				{
					"id": "api.push",
					"name": "推送",
					"children": [
						{
							"id": "api.push.uni-push",
							"name": "push"
						}
					]
				},
DCloud-WZF's avatar
DCloud-WZF 已提交
3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063
				{
					"id": "api.stat",
					"name": "统计",
					"children": [
						{
							"id": "api.stat.report",
							"name": "report"
						}
					]
				},
				null,
3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097
				{
					"id": "api.unicloud",
					"name": "uniCloud客户端API",
					"children": [
						{
							"id": "api.unicloud.cloudFunction",
							"name": "cloudFunction"
						},
						{
							"id": "api.unicloud.cloudObject",
							"name": "cloudObject"
						},
						{
							"id": "api.unicloud.cloudStorage",
							"name": "cloudStorage"
						},
						{
							"id": "api.unicloud.database",
							"name": "database"
						}
					]
				},
				null,
				null,
				null,
				null,
				null,
				null,
				null,
				null,
				null,
				null,
				{
					"id": "api.elementInstance",
3098
					"name": "UniElement 实例"
3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413
				}
			]
		},
		{
			"id": "CSS",
			"name": "组件",
			"children": [
				{
					"id": "css.properties.width",
					"name": "width",
					"children": [
						{
							"id": "css.properties.width.width",
							"name": "width"
						},
						{
							"id": "css.properties.width.min-width",
							"name": "min-width"
						},
						{
							"id": "css.properties.width.max-width",
							"name": "max-width"
						}
					]
				},
				{
					"id": "css.properties.height",
					"name": "height",
					"children": [
						{
							"id": "css.properties.height.height",
							"name": "height"
						},
						{
							"id": "css.properties.height.min-height",
							"name": "min-height"
						},
						{
							"id": "css.properties.height.max-height",
							"name": "max-height"
						}
					]
				},
				{
					"id": "css.properties.margin",
					"name": "margin",
					"children": [
						{
							"id": "css.properties.margin.margin",
							"name": "margin"
						},
						{
							"id": "css.properties.margin.margin-top",
							"name": "margin-top"
						},
						{
							"id": "css.properties.margin.margin-bottom",
							"name": "margin-bottom"
						},
						{
							"id": "css.properties.margin.margin-left",
							"name": "margin-left"
						},
						{
							"id": "css.properties.margin.margin-right",
							"name": "margin-right"
						}
					]
				},
				{
					"id": "css.properties.padding",
					"name": "padding",
					"children": [
						{
							"id": "css.properties.padding.padding",
							"name": "padding"
						},
						{
							"id": "css.properties.padding.padding-top",
							"name": "padding-top"
						},
						{
							"id": "css.properties.padding.padding-bottom",
							"name": "padding-bottom"
						},
						{
							"id": "css.properties.padding.padding-left",
							"name": "padding-left"
						},
						{
							"id": "css.properties.padding.padding-right",
							"name": "padding-right"
						}
					]
				},
				null,
				{
					"id": "display",
					"name": "display"
				},
				{
					"id": "css.properties.visibility",
					"name": "visibility"
				},
				{
					"id": "css.properties.flex",
					"name": "flex",
					"children": [
						{
							"id": "css.properties.flex.flex",
							"name": "flex"
						},
						{
							"id": "css.properties.flex.flex-direction",
							"name": "flex-direction"
						},
						{
							"id": "css.properties.flex.justify-content",
							"name": "justify-content"
						},
						null,
						{
							"id": "css.properties.flex.align-items",
							"name": "align-items"
						},
						null,
						{
							"id": "css.properties.flex.align-content",
							"name": "align-content"
						},
						{
							"id": "css.properties.flex.flex-grow",
							"name": "flex-grow"
						},
						{
							"id": "css.properties.flex.flex-shrink",
							"name": "flex-shrink"
						},
						{
							"id": "css.properties.flex.flex-basis",
							"name": "flex-basis"
						},
						{
							"id": "css.properties.flex.flex-flow",
							"name": "flex-flow"
						}
					]
				},
				{
					"id": "css.properties.background",
					"name": "background",
					"children": [
						null,
						{
							"id": "css.properties.background.background-color",
							"name": "background-color"
						},
						{
							"id": "css.properties.background.background-image",
							"name": "background-image"
						}
					]
				},
				{
					"id": "css.properties.position",
					"name": "position",
					"children": [
						{
							"id": "css.properties.position.position",
							"name": "position"
						}
					]
				},
				{
					"id": "css.properties.z-index",
					"name": "z-index"
				},
				{
					"id": "overflow",
					"name": "overflow"
				},
				null,
				{
					"id": "css.properties.border",
					"name": "border",
					"children": [
						{
							"id": "css.properties.border.border",
							"name": "border"
						},
						{
							"id": "css.properties.border.border-style",
							"name": "border-style"
						},
						null,
						null,
						null,
						null,
						{
							"id": "css.properties.border.border-width",
							"name": "border-width"
						},
						null,
						null,
						null,
						null,
						{
							"id": "css.properties.border.border-color",
							"name": "border-color"
						},
						null,
						null,
						null,
						null,
						{
							"id": "css.properties.border.border-radius",
							"name": "border-radius"
						},
						null,
						null,
						null,
						null,
						{
							"id": "css.properties.border.border-top",
							"name": "border-top"
						},
						{
							"id": "css.properties.border.border-bottom",
							"name": "border-bottom"
						},
						{
							"id": "css.properties.border.border-left",
							"name": "border-left"
						},
						{
							"id": "css.properties.border.border-right",
							"name": "border-right"
						}
					]
				},
				{
					"id": "css.properties.text",
					"name": "text",
					"children": [
						{
							"id": "css.properties.text.color",
							"name": "color"
						},
						{
							"id": "css.properties.text.font-size",
							"name": "font-size"
						},
						{
							"id": "css.properties.text.font-family",
							"name": "font-family"
						},
						{
							"id": "css.properties.text.font-style",
							"name": "font-style"
						},
						{
							"id": "css.properties.text.font-weight",
							"name": "font-weight"
						},
						null,
						{
							"id": "css.properties.text.text-decoration-line",
							"name": "text-decoration-line"
						},
						null,
						null,
						null,
						{
							"id": "css.properties.text.text-align",
							"name": "text-align"
						},
						{
							"id": "css.properties.text.text-overflow",
							"name": "text-overflow"
						},
						{
							"id": "css.properties.text.line-height",
							"name": "line-height"
						},
						null,
						{
							"id": "css.properties.text.letter-spacing",
							"name": "letter-spacing"
						}
					]
				},
				{
					"id": "css.properties.box-shadow",
					"name": "box-shadow"
				},
				{
					"id": "css.properties.transition",
					"name": "transition"
				},
				{
					"id": "css.properties.transform",
					"name": "transform"
				},
				{
					"id": "css.properties.pointer-events",
					"name": "pointer-events"
				},
				null,
				{
					"id": "variable",
					"name": "variable"
				}
			]
		}
	]
Anne_LXM's avatar
Anne_LXM 已提交
3414
}