pages.json 19.6 KB
Newer Older
Y
yurj26 已提交
1
{
DCloud-WZF's avatar
DCloud-WZF 已提交
2 3
  "pages": [
    //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
DCloud_JSON's avatar
DCloud_JSON 已提交
4
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
5
      "path": "pages/tabBar/component",
DCloud_JSON's avatar
DCloud_JSON 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
      "style": {
        "navigationBarTitleText": "内置组件",
        "backgroundColor": "#F8F8F8"
      }
    },
    {
      "path": "pages/component/view/view",
      "style": {
        "navigationBarTitleText": "view"
      }
    },
    {
      "path": "pages/component/scroll-view/scroll-view",
      "style": {
        "navigationBarTitleText": "scroll-view"
      }
    },
    {
      "path": "pages/component/text/text",
      "style": {
        "navigationBarTitleText": "text"
      }
H
hdx 已提交
28 29 30 31 32 33 34
    },
    {
      "path": "pages/component/text/text-props",
      "style": {
        "navigationBarTitleText": "text-props"
      }
    },
DCloud_JSON's avatar
DCloud_JSON 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
    {
      "path": "pages/component/progress/progress",
      "style": {
        "navigationBarTitleText": "progress"
      }
    },
    {
      "path": "pages/component/button/button",
      "style": {
        "navigationBarTitleText": "button"
      }
    },
    {
      "path": "pages/component/radio/radio",
      "style": {
        "navigationBarTitleText": "radio"
      }
    },
    {
      "path": "pages/component/checkbox/checkbox",
      "style": {
        "navigationBarTitleText": "checkbox"
      }
    },
    {
      "path": "pages/component/input/input",
      "style": {
        "navigationBarTitleText": "input"
      }
    },
    {
      "path": "pages/component/textarea/textarea",
      "style": {
        "navigationBarTitleText": "textarea"
      }
    },
    {
      "path": "pages/component/slider/slider",
      "style": {
        "navigationBarTitleText": "slider"
      }
    },
Y
yurj26 已提交
77 78 79 80 81 82
    {
      "path": "pages/component/picker-view/picker-view",
      "style": {
        "navigationBarTitleText": "picker-view"
      }
    },
DCloud_JSON's avatar
DCloud_JSON 已提交
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
    {
      "path": "pages/component/slider-100/slider-100",
      "style": {
        "navigationBarTitleText": "slider x 100"
      }
    },
    {
      "path": "pages/component/switch/switch",
      "style": {
        "navigationBarTitleText": "switch"
      }
    },
    {
      "path": "pages/component/swiper/swiper",
      "style": {
        "navigationBarTitleText": "swiper"
      }
    },
    {
      "path": "pages/component/image/image",
      "style": {
        "navigationBarTitleText": "image"
      }
    },
    {
      "path": "pages/component/image/image-format",
      "style": {
        "navigationBarTitleText": "image-format"
      }
    },
    {
      "path": "pages/component/image/image-mode",
      "style": {
        "navigationBarTitleText": "image-mode"
      }
    },
    {
      "path": "pages/component/image/image-path",
      "style": {
        "navigationBarTitleText": "image-path"
      }
    },
125 126 127 128 129
    {
      "path": "pages/component/image/image-large",
      "style": {
        "navigationBarTitleText": "大图测试"
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
130 131 132 133 134 135 136
    },
    {
      "path": "pages/component/video/video",
      "style": {
        "navigationBarTitleText": "video"
      }
    },
DCloud_JSON's avatar
DCloud_JSON 已提交
137 138 139 140 141 142 143 144 145 146 147 148
    {
      "path": "pages/component/web-view/web-view",
      "style": {
        "navigationBarTitleText": "web-view"
      }
    },
    {
      "path": "pages/component/web-view-local/web-view-local",
      "style": {
        "navigationBarTitleText": "web-view-local"
      }
    },
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
    {
      "path": "pages/component/navigator/navigator",
      "style": {
        "navigationBarTitleText": "navigator"
      }
    },
    {
      "path": "pages/component/navigator/navigate",
      "style": {
        "navigationBarTitleText": "navigatePage"
      }
    },
    {
      "path": "pages/component/navigator/redirect",
      "style": {
        "navigationBarTitleText": "redirectPage"
      }
    },
DCloud-WZF's avatar
DCloud-WZF 已提交
167 168 169 170 171 172
    {
      "path": "pages/component/general-event/general-event",
      "style": {
        "navigationBarTitleText": "general-event"
      }
    },
DCloud_JSON's avatar
DCloud_JSON 已提交
173
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
174
      "path": "pages/tabBar/API",
DCloud_JSON's avatar
DCloud_JSON 已提交
175 176 177 178 179
      "style": {
        "navigationBarTitleText": "接口",
        "backgroundColor": "#F8F8F8"
      }
    },
DCloud-WZF's avatar
DCloud-WZF 已提交
180 181 182 183 184 185
    {
      "path": "pages/API/get-app/get-app",
      "style": {
        "navigationBarTitleText": "getApp"
      }
    },
杜庆泉's avatar
杜庆泉 已提交
186 187 188 189 190 191
	{
	  "path": "pages/API/exit/exit",
	  "style": {
	    "navigationBarTitleText": "exit"
	  }
	},
DCloud-WZF's avatar
DCloud-WZF 已提交
192 193 194 195 196 197
    {
      "path": "pages/API/get-current-pages/get-current-pages",
      "style": {
        "navigationBarTitleText": "getCurrentPages"
      }
    },
DCloud-WZF's avatar
DCloud-WZF 已提交
198 199 200 201 202 203
    {
      "path": "pages/API/get-launch-options-sync/get-launch-options-sync",
      "style": {
        "navigationBarTitleText": "getLaunchOptionsSync"
      }
    },
DCloud_JSON's avatar
DCloud_JSON 已提交
204 205 206 207 208 209
    {
      "path": "pages/API/navigator/navigator",
      "style": {
        "navigationBarTitleText": "页面跳转"
      }
    },
DCloud-WZF's avatar
DCloud-WZF 已提交
210 211 212 213 214 215
    {
      "path": "pages/API/set-navigation-bar-color/set-navigation-bar-color",
      "style": {
        "navigationBarTitleText": "设置导航条颜色"
      }
    },
DCloud_JSON's avatar
DCloud_JSON 已提交
216
    {
DCloud-WZF's avatar
DCloud-WZF 已提交
217
      "path": "pages/API/navigator/new-page/new-page-1",
DCloud_JSON's avatar
DCloud_JSON 已提交
218
      "style": {
DCloud-WZF's avatar
DCloud-WZF 已提交
219 220 221 222 223 224 225 226
        "navigationBarTitleText": "新页面-1"
      }
    },
    {
      "path": "pages/API/navigator/new-page/new-page-2",
      "style": {
        "navigationBarTitleText": "新页面-2",
        "enablePullDownRefresh": true
DCloud_JSON's avatar
DCloud_JSON 已提交
227 228
      }
    },
H
hdx 已提交
229 230 231 232 233 234
    {
      "path": "pages/API/nodes-info/nodes-info",
      "style": {
        "navigationBarTitleText": "查询节点信息的对象"
      }
    },
DCloud_JSON's avatar
DCloud_JSON 已提交
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
    {
      "path": "pages/API/storage/storage",
      "style": {
        "navigationBarTitleText": "数据存储"
      }
    },
    {
      "path": "pages/API/action-sheet/action-sheet",
      "style": {
        "navigationBarTitleText": "操作菜单"
      }
    },
    {
      "path": "pages/API/modal/modal",
      "style": {
        "navigationBarTitleText": "模态弹窗"
      }
    },
    {
      "path": "pages/API/show-loading/show-loading",
      "style": {
        "navigationBarTitleText": "加载提示框"
      }
    },
    {
      "path": "pages/API/toast/toast",
      "style": {
        "navigationBarTitleText": "消息提示框"
      }
    },
DCloud-WZF's avatar
DCloud-WZF 已提交
265 266 267 268 269 270 271 272 273 274 275 276
    {
      "path": "pages/API/load-font-face/load-font-face",
      "style": {
        "navigationBarTitleText": "动态加载字体"
      }
    },
    {
      "path": "pages/API/load-font-face/load-font-face-child",
      "style": {
        "navigationBarTitleText": "动态加载字体-子页面"
      }
    },
DCloud_JSON's avatar
DCloud_JSON 已提交
277 278 279 280 281 282 283
    {
      "path": "pages/API/get-location/get-location",
      "style": {
        "navigationBarTitleText": "获取定位"
      }
    },
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
284
      "path": "pages/tabBar/CSS",
DCloud_JSON's avatar
DCloud_JSON 已提交
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
      "style": {
        "navigationBarTitleText": "CSS",
        "backgroundColor": "#F8F8F8"
      }
    },
    {
      "path": "pages/CSS/background/background-color",
      "style": {
        "navigationBarTitleText": "background-color"
      }
    },
    {
      "path": "pages/CSS/background/background-image",
      "style": {
        "navigationBarTitleText": "background-image"
      }
    },
    {
      "path": "pages/CSS/border/border-color",
      "style": {
        "navigationBarTitleText": "border-color"
      }
    },
    {
      "path": "pages/CSS/border/border-radius",
      "style": {
        "navigationBarTitleText": "border-radius"
      }
    },
    {
      "path": "pages/CSS/border/border-style",
      "style": {
        "navigationBarTitleText": "border-style"
      }
    },
    {
      "path": "pages/CSS/border/border-width",
      "style": {
        "navigationBarTitleText": "border-width"
      }
    },
    {
      "path": "pages/CSS/border/border",
      "style": {
        "navigationBarTitleText": "border"
      }
    },
    {
      "path": "pages/CSS/box-shadow/box-shadow",
      "style": {
        "navigationBarTitleText": "box-shadow"
      }
    },
    {
      "path": "pages/CSS/flex/align-content",
      "style": {
        "navigationBarTitleText": "align-content"
      }
    },
    {
      "path": "pages/CSS/flex/align-items",
      "style": {
        "navigationBarTitleText": "align-items"
      }
    },
    {
      "path": "pages/CSS/flex/flex-basis",
      "style": {
        "navigationBarTitleText": "flex-basis"
      }
    },
    {
      "path": "pages/CSS/flex/flex-direction",
      "style": {
        "navigationBarTitleText": "flex-direction"
      }
    },
    {
      "path": "pages/CSS/flex/flex-flow",
      "style": {
        "navigationBarTitleText": "flex-flow"
      }
    },
    {
      "path": "pages/CSS/flex/flex-grow",
      "style": {
        "navigationBarTitleText": "flex-grow"
      }
    },
    {
      "path": "pages/CSS/flex/flex-shrink",
      "style": {
        "navigationBarTitleText": "flex-shrink"
      }
    },
    {
      "path": "pages/CSS/flex/flex",
      "style": {
        "navigationBarTitleText": "flex"
      }
    },
    {
      "path": "pages/CSS/flex/justify-content",
      "style": {
        "navigationBarTitleText": "justify-content"
      }
    },
    {
      "path": "pages/CSS/layout/height",
      "style": {
        "navigationBarTitleText": "height"
      }
    },
    {
      "path": "pages/CSS/layout/max-height",
      "style": {
        "navigationBarTitleText": "max-height"
      }
    },
    {
      "path": "pages/CSS/layout/max-width",
      "style": {
        "navigationBarTitleText": "max-width"
      }
    },
    {
      "path": "pages/CSS/layout/min-height",
      "style": {
        "navigationBarTitleText": "min-height"
      }
    },
    {
      "path": "pages/CSS/layout/min-width",
      "style": {
        "navigationBarTitleText": "min-width"
      }
    },
    {
      "path": "pages/CSS/layout/position",
      "style": {
        "navigationBarTitleText": "position"
      }
    },
    {
      "path": "pages/CSS/layout/width",
      "style": {
        "navigationBarTitleText": "width"
      }
H
hdx 已提交
433 434 435 436 437 438 439
    },
    {
      "path": "pages/CSS/layout/visibility",
      "style": {
        "navigationBarTitleText": "visibility"
      }
    },
DCloud_JSON's avatar
DCloud_JSON 已提交
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
    {
      "path": "pages/CSS/margin/margin-bottom",
      "style": {
        "navigationBarTitleText": "margin-bottom"
      }
    },
    {
      "path": "pages/CSS/margin/margin-left",
      "style": {
        "navigationBarTitleText": "margin-left"
      }
    },
    {
      "path": "pages/CSS/margin/margin-right",
      "style": {
        "navigationBarTitleText": "margin-right"
      }
    },
    {
      "path": "pages/CSS/margin/margin-top",
      "style": {
        "navigationBarTitleText": "margin-top"
      }
    },
    {
      "path": "pages/CSS/margin/margin",
      "style": {
        "navigationBarTitleText": "margin"
      }
    },
    {
      "path": "pages/CSS/padding/padding-bottom",
      "style": {
        "navigationBarTitleText": "padding-bottom"
      }
    },
    {
      "path": "pages/CSS/padding/padding-left",
      "style": {
        "navigationBarTitleText": "padding-left"
      }
    },
    {
      "path": "pages/CSS/padding/padding-right",
      "style": {
        "navigationBarTitleText": "padding-right"
      }
    },
    {
      "path": "pages/CSS/padding/padding-top",
      "style": {
        "navigationBarTitleText": "padding-top"
      }
    },
    {
      "path": "pages/CSS/padding/padding",
      "style": {
        "navigationBarTitleText": "padding"
      }
    },
    {
      "path": "pages/CSS/text/color",
      "style": {
        "navigationBarTitleText": "color"
      }
    },
    {
      "path": "pages/CSS/text/font-family",
      "style": {
        "navigationBarTitleText": "font-family"
      }
    },
    {
      "path": "pages/CSS/text/font-size",
      "style": {
        "navigationBarTitleText": "font-size"
      }
    },
    {
      "path": "pages/CSS/text/font-style",
      "style": {
        "navigationBarTitleText": "font-style"
      }
    },
    {
      "path": "pages/CSS/text/font-weight",
      "style": {
        "navigationBarTitleText": "font-weight"
      }
    },
    {
      "path": "pages/CSS/text/line-height",
      "style": {
        "navigationBarTitleText": "line-height"
      }
    },
    {
      "path": "pages/CSS/text/text-align",
      "style": {
        "navigationBarTitleText": "text-align"
      }
H
hdx 已提交
541 542 543 544 545 546 547
    },
    {
      "path": "pages/CSS/text/text-overflow",
      "style": {
        "navigationBarTitleText": "text-overflow"
      }
    },
DCloud_JSON's avatar
DCloud_JSON 已提交
548 549 550 551 552
    {
      "path": "pages/CSS/text/text-decoration-line",
      "style": {
        "navigationBarTitleText": "text-decoration-line"
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
553 554
    },
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
555 556 557 558
      "path": "pages/CSS/transition/transition",
      "style": {
        "navigationBarTitleText": "Transition"
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
559 560
    },
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
561 562 563 564
      "path": "pages/CSS/transform/transform",
      "style": {
        "navigationBarTitleText": "Transform"
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
565 566
    },
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
567 568
      "path": "pages/API/request/request",
      "style": {
569
        "navigationBarTitleText": ""
DCloud_JSON's avatar
DCloud_JSON 已提交
570
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
571 572
    },
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
573 574
      "path": "pages/API/upload-file/upload-file",
      "style": {
575
        "navigationBarTitleText": ""
DCloud_JSON's avatar
DCloud_JSON 已提交
576
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
577 578
    },
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
579 580
      "path": "pages/API/download-file/download-file",
      "style": {
581
        "navigationBarTitleText": ""
DCloud_JSON's avatar
DCloud_JSON 已提交
582
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
583 584
    },
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
585 586
      "path": "pages/API/websocket-socketTask/websocket-socketTask",
      "style": {
587
        "navigationBarTitleText": ""
DCloud_JSON's avatar
DCloud_JSON 已提交
588
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
589 590
    },
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
591 592
      "path": "pages/API/websocket-global/websocket-global",
      "style": {
593
        "navigationBarTitleText": ""
DCloud_JSON's avatar
DCloud_JSON 已提交
594
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
595 596
    },
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
597 598
      "path": "pages/API/get-system-info/get-system-info",
      "style": {
599
        "navigationBarTitleText": ""
DCloud_JSON's avatar
DCloud_JSON 已提交
600
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
601 602
    },
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
603 604
      "path": "pages/API/get-device-info/get-device-info",
      "style": {
605
        "navigationBarTitleText": ""
DCloud_JSON's avatar
DCloud_JSON 已提交
606
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
607 608
    },
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
609 610
      "path": "pages/API/get-app-base-info/get-app-base-info",
      "style": {
611
        "navigationBarTitleText": ""
DCloud_JSON's avatar
DCloud_JSON 已提交
612
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
613 614
    },
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
615 616
      "path": "pages/API/get-system-setting/get-system-setting",
      "style": {
617
        "navigationBarTitleText": ""
DCloud_JSON's avatar
DCloud_JSON 已提交
618
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
619 620
    },
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
621 622
      "path": "pages/API/get-app-authorize-setting/get-app-authorize-setting",
      "style": {
623
        "navigationBarTitleText": ""
DCloud_JSON's avatar
DCloud_JSON 已提交
624
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
625 626
    },
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
627 628
      "path": "pages/API/preview-image/preview-image",
      "style": {
629
        "navigationBarTitleText": "图片预览"
DCloud_JSON's avatar
DCloud_JSON 已提交
630
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
631 632
    },
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
633 634
      "path": "pages/component/scroll-view/scroll-view-refresher",
      "style": {
635
        "navigationBarTitleText": "scroll-view-refresher"
DCloud_JSON's avatar
DCloud_JSON 已提交
636
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
637 638
    },
    {
639
      "path": "pages/component/list-news/list",
DCloud_JSON's avatar
DCloud_JSON 已提交
640
      "style": {
641
        "navigationBarTitleText": "列表到详情示例"
DCloud_JSON's avatar
DCloud_JSON 已提交
642
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
643 644
    },
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
645 646
      "path": "pages/API/get-network-type/get-network-type",
      "style": {
647
        "navigationBarTitleText": ""
DCloud_JSON's avatar
DCloud_JSON 已提交
648
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
649 650
    },
    {
651
      "path": "pages/component/list-news/detail/detail",
DCloud_JSON's avatar
DCloud_JSON 已提交
652
      "style": {
653
        "navigationBarTitleText": "详情示例"
DCloud_JSON's avatar
DCloud_JSON 已提交
654
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
655 656
    },
    {
657
      "path": "pages/API/page-scroll-to/page-scroll-to",
DCloud_JSON's avatar
DCloud_JSON 已提交
658
      "style": {
659
        "navigationBarTitleText": "pageScrollTo"
Q
qiang 已提交
660
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
661 662
    },
    {
Q
qiang 已提交
663 664
      "path": "pages/API/event-bus/event-bus",
      "style": {
665
        "navigationBarTitleText": "event-bus"
DCloud_JSON's avatar
DCloud_JSON 已提交
666
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
667 668
    },
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
669 670
      "path": "pages/template/drop-card/drop-card",
      "style": {
671
        "navigationBarTitleText": ""
DCloud_JSON's avatar
DCloud_JSON 已提交
672
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
673 674
    },
    {
DCloud_JSON's avatar
DCloud_JSON 已提交
675
      "path": "pages/tabBar/template",
DCloud_JSON's avatar
DCloud_JSON 已提交
676
      "style": {
677
        "navigationBarTitleText": "模板"
DCloud_JSON's avatar
DCloud_JSON 已提交
678
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
679 680 681 682
    },
    {
      "path": "pages/component/long-list/long-list",
      "style": {
683
        "navigationBarTitleText": "长列表示例"
DCloud-WZF's avatar
DCloud-WZF 已提交
684 685 686 687 688
      }
    },
    {
      "path": "pages/component/long-list/detail/detail",
      "style": {
689
        "navigationBarTitleText": "详情示例"
DCloud-WZF's avatar
DCloud-WZF 已提交
690 691
      }
    },
DCloud-WZF's avatar
DCloud-WZF 已提交
692 693 694 695 696 697 698 699 700
    {
      "path": "pages/template/swiper-vertical-video/swiper-vertical-video",
      "style": {
        "navigationBarTitleText": ""
      }
    },
    {
      "path": "pages/template/scroll-fold-nav/scroll-fold-nav",
      "style": {
701 702
        "navigationStyle": "custom",
        "navigationBarTextStyle": "black"
DCloud-WZF's avatar
DCloud-WZF 已提交
703 704
      }
    },
705 706 707 708 709 710 711 712 713 714 715 716
    {
      "path": "pages/template/scroll-sticky/scroll-sticky",
      "style": {
        "navigationBarTitleText": "滚动吸顶"
      }
    },
    {
      "path": "pages/template/scroll-sticky2/scroll-sticky2",
      "style": {
        "navigationBarTitleText": "滚动吸顶2"
      }
    },
DCloud-WZF's avatar
DCloud-WZF 已提交
717 718 719 720 721
    {
      "path": "pages/API/get-battery-info/get-battery-info",
      "style": {
        "navigationBarTitleText": "电量"
      }
722
    },
DCloud-WZF's avatar
DCloud-WZF 已提交
723 724 725 726 727
    {
      "path": "pages/CSS/border/complex-border/complex-border",
      "style": {
        "navigationBarTitleText": "border属性组合示例",
        "enablePullDownRefresh": false
728
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
729 730 731 732
    },
    {
      "path": "pages/template/scroll-fold-nav2/scroll-fold-nav2",
      "style": {
733 734 735 736 737 738 739 740 741 742
        "navigationStyle": "custom",
        "navigationBarTextStyle": "black"
      }
    },
    {
      "path": "pages/template/calendar/calendar",
      "style": {
        "navigationBarTitleText": "日历",
        "enablePullDownRefresh": false
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
743 744
    },
    {
745 746
      "path": "pages/template/custom-refresher/custom-refresher",
      "style": {
DCloud_JSON's avatar
DCloud_JSON 已提交
747
        "navigationBarTitleText": "自定义下拉刷新",
748
        "enablePullDownRefresh": false
DCloud-WZF's avatar
DCloud-WZF 已提交
749
      }
H
hdx 已提交
750 751 752 753 754 755 756
    },
    {
      "path": "pages/API/get-window-info/get-window-info",
      "style": {
        "navigationBarTitleText": "",
        "enablePullDownRefresh": false
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
757 758
    },
    {
H
hdx 已提交
759 760 761 762 763
      "path": "pages/template/half-screen/half-screen",
      "style": {
        "navigationBarTitleText": "半屏弹窗",
        "enablePullDownRefresh": false
      }
DCloud-WZF's avatar
DCloud-WZF 已提交
764 765
    },
    {
H
hdx 已提交
766 767 768 769 770
      "path": "pages/template/long-list/long-list",
      "style": {
        "navigationBarTitleText": "复杂长列表",
        "enablePullDownRefresh": false
      }
771 772 773 774 775 776 777 778
    },
		{
			"path": "pages/component/list-view-autotest/list-view-autotest",
			"style": {
				"navigationBarTitleText": "list-view-autotest",
				"enablePullDownRefresh": false
			}
		}
H
hdx 已提交
779
  ],
DCloud_JSON's avatar
DCloud_JSON 已提交
780 781 782 783 784 785 786
  "globalStyle": {
    "pageOrientation": "portrait",
    "navigationBarTitleText": "Hello uniapp x",
    "navigationBarTextStyle": "white",
    "navigationBarBackgroundColor": "#007AFF",
    "backgroundColor": "#efeff4",
    "backgroundColorTop": "#F4F5F6",
787
    "backgroundColorBottom": "#F4F5F6"
DCloud_JSON's avatar
DCloud_JSON 已提交
788 789 790 791 792 793
  },
  "tabBar": {
    "color": "#7A7E83",
    "selectedColor": "#007AFF",
    "borderStyle": "black",
    "backgroundColor": "#F8F8F8",
794
    "list": [{
DCloud_JSON's avatar
DCloud_JSON 已提交
795
        "pagePath": "pages/tabBar/component",
DCloud_JSON's avatar
DCloud_JSON 已提交
796 797 798 799 800
        "iconPath": "static/component.png",
        "selectedIconPath": "static/componentHL.png",
        "text": "内置组件"
      },
      {
DCloud_JSON's avatar
DCloud_JSON 已提交
801
        "pagePath": "pages/tabBar/API",
DCloud_JSON's avatar
DCloud_JSON 已提交
802 803 804 805 806
        "iconPath": "static/api.png",
        "selectedIconPath": "static/apiHL.png",
        "text": "接口"
      },
      {
DCloud_JSON's avatar
DCloud_JSON 已提交
807
        "pagePath": "pages/tabBar/CSS",
DCloud_JSON's avatar
DCloud_JSON 已提交
808 809
        "iconPath": "static/css.png",
        "selectedIconPath": "static/cssHL.png",
DCloud_JSON's avatar
DCloud_JSON 已提交
810 811 812
        "text": "CSS"
      },
      {
DCloud_JSON's avatar
DCloud_JSON 已提交
813
        "pagePath": "pages/tabBar/template",
DCloud_JSON's avatar
DCloud_JSON 已提交
814 815 816 817 818 819
        "iconPath": "static/template.png",
        "selectedIconPath": "static/templateHL.png",
        "text": "模板"
      }
    ]
  },
DCloud-WZF's avatar
DCloud-WZF 已提交
820 821
  "condition": {
    //模式配置,仅开发期间生效
DCloud_JSON's avatar
DCloud_JSON 已提交
822
    "current": 0, //当前激活的模式(list 的索引项)
823 824 825 826 827
    "list": [{
      "name": "", //模式名称
      "path": "", //启动页面,必选
      "query": "" //启动参数,在页面的onLoad函数里面得到
    }]
DCloud_JSON's avatar
DCloud_JSON 已提交
828
  }
829
}