pages.json 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338
  1. {
  2. "leftWindow": {
  3. "path": "windows/left-window.vue",
  4. "style": {
  5. "width": "350px"
  6. }
  7. },
  8. "topWindow": {
  9. "path": "windows/top-window.vue",
  10. "style": {
  11. "height": "60px"
  12. }
  13. },
  14. "pages": [
  15. // pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  16. {
  17. "path": "pages/tabBar/component/component",
  18. "style": {
  19. "navigationBarTitleText": "内置组件",
  20. "app-plus": {
  21. "bounce": "vertical",
  22. "titleNView": {
  23. "buttons": [{
  24. "text": "\ue534",
  25. "fontSrc": "/static/uni.ttf",
  26. "fontSize": "22px",
  27. "color": "#FFFFFF"
  28. }]
  29. }
  30. }
  31. }
  32. },
  33. {
  34. "path": "pages/tabBar/API/API",
  35. "style": {
  36. "navigationBarTitleText": "接口",
  37. "app-plus": {
  38. "titleNView": {
  39. "buttons": [{
  40. "text": "\ue534",
  41. "fontSrc": "/static/uni.ttf",
  42. "fontSize": "22px",
  43. "color": "#FFFFFF"
  44. }]
  45. }
  46. }
  47. }
  48. },
  49. {
  50. "path": "pages/tabBar/template/template",
  51. "style": {
  52. "navigationBarTitleText": "模版",
  53. "app-plus": {
  54. "titleNView": {
  55. "buttons": [{
  56. "text": "\ue534",
  57. "fontSrc": "/static/uni.ttf",
  58. "fontSize": "22px",
  59. "color": "#FFFFFF"
  60. }]
  61. }
  62. }
  63. }
  64. },
  65. {
  66. "path": "pages/tabBar/extUI/extUI",
  67. "style": {
  68. "navigationBarTitleText": "扩展组件",
  69. "app-plus": {
  70. "titleNView": {
  71. "buttons": [{
  72. "text": "\ue534",
  73. "fontSrc": "/static/uni.ttf",
  74. "fontSize": "22px",
  75. "color": "#FFFFFF"
  76. }]
  77. }
  78. }
  79. }
  80. },
  81. {
  82. "path": "pages/component/view/view",
  83. "style": {
  84. "navigationBarTitleText": "view"
  85. }
  86. },
  87. {
  88. "path": "pages/component/scroll-view/scroll-view",
  89. "style": {
  90. "navigationBarTitleText": "scroll-view"
  91. }
  92. },
  93. {
  94. "path": "pages/component/swiper/swiper",
  95. "style": {
  96. "navigationBarTitleText": "swiper"
  97. }
  98. },
  99. // #ifndef MP-TOUTIAO
  100. {
  101. "path": "pages/component/cover-view/cover-view",
  102. "style": {
  103. "navigationBarTitleText": "cover-view"
  104. }
  105. },
  106. {
  107. "path": "pages/component/movable-view/movable-view",
  108. "style": {
  109. "navigationBarTitleText": "movable-view"
  110. }
  111. },
  112. // #endif
  113. {
  114. "path": "pages/component/text/text",
  115. "style": {
  116. "navigationBarTitleText": "text"
  117. }
  118. },
  119. {
  120. "path": "pages/component/rich-text/rich-text",
  121. "style": {
  122. "navigationBarTitleText": "rich-text"
  123. }
  124. },
  125. {
  126. "path": "pages/component/progress/progress",
  127. "style": {
  128. "navigationBarTitleText": "progress"
  129. }
  130. },
  131. {
  132. "path": "pages/component/button/button",
  133. "style": {
  134. "navigationBarTitleText": "button"
  135. }
  136. },
  137. {
  138. "path": "pages/component/checkbox/checkbox",
  139. "style": {
  140. "navigationBarTitleText": "checkbox"
  141. }
  142. },
  143. {
  144. "path": "pages/component/form/form",
  145. "style": {
  146. "navigationBarTitleText": "form"
  147. }
  148. },
  149. {
  150. "path": "pages/component/input/input",
  151. "style": {
  152. "navigationBarTitleText": "input",
  153. "app-plus": {
  154. "softinputNavBar": "none"
  155. }
  156. }
  157. },
  158. {
  159. "path": "pages/component/label/label",
  160. "style": {
  161. "navigationBarTitleText": "label"
  162. }
  163. },
  164. {
  165. "path": "pages/component/picker/picker",
  166. "style": {
  167. "navigationBarTitleText": "picker"
  168. }
  169. },
  170. {
  171. "path": "pages/component/picker-view/picker-view",
  172. "style": {
  173. "navigationBarTitleText": "picker-view"
  174. }
  175. },
  176. {
  177. "path": "pages/component/radio/radio",
  178. "style": {
  179. "navigationBarTitleText": "radio"
  180. }
  181. },
  182. {
  183. "path": "pages/component/slider/slider",
  184. "style": {
  185. "navigationBarTitleText": "slider"
  186. }
  187. },
  188. {
  189. "path": "pages/component/switch/switch",
  190. "style": {
  191. "navigationBarTitleText": "switch"
  192. }
  193. },
  194. {
  195. "path": "pages/component/textarea/textarea",
  196. "style": {
  197. "navigationBarTitleText": "textarea"
  198. }
  199. },
  200. // #ifdef APP-PLUS || MP-WEIXIN || H5
  201. {
  202. "path": "pages/component/editor/editor",
  203. "style": {
  204. "navigationBarTitleText": "editor",
  205. "app-plus": {
  206. "softinputMode": "adjustResize"
  207. }
  208. }
  209. },
  210. // #endif
  211. {
  212. "path": "pages/component/navigator/navigator",
  213. "style": {
  214. "navigationBarTitleText": "navigator"
  215. }
  216. },
  217. {
  218. "path": "pages/component/navigator/navigate/navigate",
  219. "style": {
  220. "navigationBarTitleText": "navigatePage"
  221. }
  222. },
  223. {
  224. "path": "pages/component/navigator/redirect/redirect",
  225. "style": {
  226. "navigationBarTitleText": "redirectPage"
  227. }
  228. },
  229. {
  230. "path": "pages/component/image/image",
  231. "style": {
  232. "navigationBarTitleText": "image"
  233. }
  234. },
  235. {
  236. "path": "pages/component/video/video",
  237. "style": {
  238. "navigationBarTitleText": "video"
  239. }
  240. },
  241. // #ifndef MP-ALIPAY || MP-TOUTIAO || VUE3
  242. // {
  243. // "path": "pages/component/audio/audio",
  244. // "style": {
  245. // "navigationBarTitleText": "audio"
  246. // }
  247. // },
  248. // #endif
  249. // #ifndef MP-TOUTIAO
  250. {
  251. "path": "pages/component/map/map",
  252. "style": {
  253. "navigationBarTitleText": "map"
  254. }
  255. },
  256. // #endif
  257. {
  258. "path": "pages/component/canvas/canvas",
  259. "style": {
  260. "navigationBarTitleText": "canvas"
  261. }
  262. },
  263. {
  264. "path": "pages/component/web-view/web-view",
  265. "style": {
  266. "navigationBarTitleText": "web-view"
  267. }
  268. },
  269. // #ifdef APP-VUE || APP-NVUE
  270. {
  271. "path": "pages/component/ad/ad",
  272. "style": {
  273. "navigationBarTitleText": "AD"
  274. }
  275. },
  276. // #endif
  277. // #ifdef APP-PLUS || H5
  278. {
  279. "path": "pages/component/web-view-local/web-view-local",
  280. "style": {}
  281. },
  282. // #endif
  283. {
  284. "path": "platforms/app-plus/speech/speech",
  285. "style": {
  286. "navigationBarTitleText": "语音识别"
  287. }
  288. },
  289. {
  290. "path": "platforms/app-plus/orientation/orientation",
  291. "style": {
  292. "navigationBarTitleText": "方向传感器"
  293. }
  294. },
  295. {
  296. "path": "platforms/app-plus/proximity/proximity",
  297. "style": {
  298. "navigationBarTitleText": "距离传感器"
  299. }
  300. },
  301. {
  302. "path": "platforms/app-plus/push/push",
  303. "style": {
  304. "navigationBarTitleText": "推送"
  305. }
  306. },
  307. {
  308. "path": "platforms/app-plus/shake/shake",
  309. "style": {
  310. "navigationBarTitleText": "摇一摇"
  311. }
  312. },
  313. // #ifdef H5 || APP-PLUS
  314. {
  315. "path": "pages/about/about",
  316. "style": {
  317. "navigationBarTitleText": "关于"
  318. }
  319. },
  320. // #endif
  321. {
  322. "path": "platforms/app-plus/feedback/feedback",
  323. "style": {
  324. "navigationBarTitleText": "问题反馈"
  325. }
  326. }
  327. // #ifdef H5
  328. , {
  329. "path": "pages/error/404",
  330. "style": {
  331. "navigationBarTitleText": "Not Found"
  332. }
  333. }
  334. // #endif
  335. ],
  336. "subPackages": [{
  337. "root": "pages/API",
  338. "pages": [{
  339. "path": "login/login",
  340. "style": {
  341. "navigationBarTitleText": "授权登录"
  342. }
  343. },
  344. // #ifdef APP-PLUS
  345. {
  346. "path": "subnvue/subnvue",
  347. "style": {
  348. "navigationBarTitleText": "原生子窗体",
  349. "app-plus": {
  350. "subNVues": [{
  351. "id": "drawer",
  352. "path": "subnvue/subnvue/drawer",
  353. "type": "popup",
  354. "style": {
  355. "width": "50%"
  356. }
  357. }, {
  358. "id": "popup",
  359. "path": "subnvue/subnvue/popup",
  360. "type": "popup",
  361. "style": {
  362. "margin": "auto",
  363. "width": "80%",
  364. "height": "600rpx"
  365. }
  366. }, {
  367. "id": "video_mask",
  368. "path": "subnvue/subnvue/video-mask",
  369. "style": {
  370. "position": "absolute",
  371. "bottom": "30px",
  372. "left": "0",
  373. "width": "230px",
  374. "height": "110px",
  375. "background": "transparent"
  376. }
  377. }]
  378. }
  379. }
  380. },
  381. // #endif
  382. {
  383. "path": "get-user-info/get-user-info",
  384. "style": {
  385. "navigationBarTitleText": "获取用户信息"
  386. }
  387. },
  388. {
  389. "path": "request-payment/request-payment",
  390. "style": {
  391. "navigationBarTitleText": "发起支付"
  392. }
  393. },
  394. {
  395. "path": "share/share",
  396. "style": {
  397. "navigationBarTitleText": "分享"
  398. }
  399. },
  400. {
  401. "path": "set-navigation-bar-title/set-navigation-bar-title",
  402. "style": {
  403. "navigationBarTitleText": "设置界面标题"
  404. }
  405. },
  406. {
  407. "path": "show-loading/show-loading",
  408. "style": {
  409. "navigationBarTitleText": "加载提示框"
  410. }
  411. },
  412. {
  413. "path": "navigator/navigator",
  414. "style": {
  415. "navigationBarTitleText": "页面跳转"
  416. }
  417. },
  418. {
  419. "path": "navigator/new-page/new-vue-page-1",
  420. "style": {
  421. "navigationBarTitleText": "新VUE页面1"
  422. }
  423. },
  424. {
  425. "path": "navigator/new-page/new-vue-page-2",
  426. "style": {
  427. "navigationBarTitleText": "新VUE页面2"
  428. }
  429. },
  430. // #ifndef VUE3
  431. {
  432. "path": "navigator/new-page/new-nvue-page-1",
  433. "style": {
  434. "navigationBarTitleText": "新NVUE页面1"
  435. }
  436. },
  437. {
  438. "path": "navigator/new-page/new-nvue-page-2",
  439. "style": {
  440. "navigationBarTitleText": "新NVUE页面2"
  441. }
  442. },
  443. // #endif
  444. {
  445. "path": "pull-down-refresh/pull-down-refresh",
  446. "style": {
  447. "navigationBarTitleText": "下拉刷新",
  448. "enablePullDownRefresh": true
  449. }
  450. },
  451. {
  452. "path": "animation/animation",
  453. "style": {
  454. "navigationBarTitleText": "创建动画"
  455. }
  456. },
  457. {
  458. "path": "get-node-info/get-node-info",
  459. "style": {
  460. "navigationBarTitleText": "节点信息"
  461. }
  462. },
  463. {
  464. "path": "intersection-observer/intersection-observer",
  465. "style": {
  466. "navigationBarTitleText": "节点布局相交状态"
  467. }
  468. },
  469. {
  470. "path": "canvas/canvas",
  471. "style": {
  472. "navigationBarTitleText": "创建绘画"
  473. }
  474. },
  475. {
  476. "path": "action-sheet/action-sheet",
  477. "style": {
  478. "navigationBarTitleText": "操作菜单"
  479. }
  480. },
  481. {
  482. "path": "modal/modal",
  483. "style": {
  484. "navigationBarTitleText": "模态弹窗"
  485. }
  486. },
  487. {
  488. "path": "toast/toast",
  489. "style": {
  490. "navigationBarTitleText": "消息提示框"
  491. }
  492. },
  493. {
  494. "path": "get-network-type/get-network-type",
  495. "style": {
  496. "navigationBarTitleText": "获取设备网络状态"
  497. }
  498. },
  499. {
  500. "path": "get-system-info/get-system-info",
  501. "style": {
  502. "navigationBarTitleText": "获取设备系统信息"
  503. }
  504. },
  505. {
  506. "path": "add-phone-contact/add-phone-contact",
  507. "style": {
  508. "navigationBarTitleText": "添加手机联系人"
  509. }
  510. },
  511. {
  512. "path": "on-accelerometer-change/on-accelerometer-change",
  513. "style": {
  514. "navigationBarTitleText": "监听加速度计数据"
  515. }
  516. },
  517. {
  518. "path": "on-compass-change/on-compass-change",
  519. "style": {
  520. "navigationBarTitleText": "监听罗盘数据"
  521. }
  522. },
  523. {
  524. "path": "make-phone-call/make-phone-call",
  525. "style": {
  526. "navigationBarTitleText": "打电话"
  527. }
  528. },
  529. {
  530. "path": "scan-code/scan-code",
  531. "style": {
  532. "navigationBarTitleText": "扫码"
  533. }
  534. },
  535. {
  536. "path": "clipboard/clipboard",
  537. "style": {
  538. "navigationBarTitleText": "剪贴板"
  539. }
  540. },
  541. {
  542. "path": "request/request",
  543. "style": {
  544. "navigationBarTitleText": "网络请求"
  545. }
  546. },
  547. {
  548. "path": "upload-file/upload-file",
  549. "style": {
  550. "navigationBarTitleText": "上传文件"
  551. }
  552. },
  553. {
  554. "path": "download-file/download-file",
  555. "style": {
  556. "navigationBarTitleText": "下载文件"
  557. }
  558. },
  559. {
  560. "path": "image/image",
  561. "style": {
  562. "navigationBarTitleText": "图片"
  563. }
  564. },
  565. {
  566. "path": "voice/voice",
  567. "style": {
  568. "navigationBarTitleText": "录音"
  569. }
  570. },
  571. {
  572. "path": "inner-audio/inner-audio",
  573. "style": {
  574. "navigationBarTitleText": "音频"
  575. }
  576. },
  577. {
  578. "path": "background-audio/background-audio",
  579. "style": {
  580. "navigationBarTitleText": "背景音频"
  581. }
  582. },
  583. {
  584. "path": "video/video",
  585. "style": {
  586. "navigationBarTitleText": "视频"
  587. }
  588. },
  589. {
  590. "path": "file/file",
  591. "style": {
  592. "navigationBarTitleText": "文件"
  593. }
  594. },
  595. // #ifndef MP-QQ || MP-TOUTIAO
  596. {
  597. "path": "map/map",
  598. "style": {
  599. "navigationBarTitleText": "map"
  600. }
  601. },
  602. // #endif
  603. // #ifdef APP-PLUS
  604. {
  605. "path": "map-search/map-search",
  606. "style": {
  607. "navigationBarTitleText": "map search"
  608. }
  609. },
  610. // #endif
  611. {
  612. "path": "get-location/get-location",
  613. "style": {
  614. "navigationBarTitleText": "获取位置"
  615. }
  616. },
  617. {
  618. "path": "open-location/open-location",
  619. "style": {
  620. "navigationBarTitleText": "查看位置"
  621. }
  622. },
  623. // #ifndef MP-TOUTIAO
  624. {
  625. "path": "choose-location/choose-location",
  626. "style": {
  627. "navigationBarTitleText": "使用地图选择位置"
  628. }
  629. },
  630. // #endif
  631. {
  632. "path": "storage/storage",
  633. "style": {
  634. "navigationBarTitleText": "数据存储"
  635. }
  636. },
  637. {
  638. "path": "sqlite/sqlite",
  639. "style": {
  640. "navigationBarTitleText": "SQLite"
  641. }
  642. },
  643. // #ifdef APP-PLUS || MP-WEIXIN
  644. {
  645. "path": "rewarded-video-ad/rewarded-video-ad",
  646. "style": {
  647. "navigationBarTitleText": "激励视频广告"
  648. }
  649. },
  650. // #endif
  651. // #ifdef APP-PLUS
  652. {
  653. "path": "full-screen-video-ad/full-screen-video-ad",
  654. "style": {
  655. "navigationBarTitleText": "全屏视频广告"
  656. }
  657. },
  658. // #endif
  659. // #ifndef H5
  660. {
  661. "path": "brightness/brightness",
  662. "style": {
  663. "navigationBarTitleText": "屏幕亮度"
  664. }
  665. },
  666. // #endif
  667. // #ifndef H5 || MP-ALIPAY
  668. {
  669. "path": "save-media/save-media",
  670. "style": {
  671. "navigationBarTitleText": "保存媒体到本地"
  672. }
  673. },
  674. // #endif
  675. // #ifdef APP-PLUS || MP-WEIXIN || MP-QQ || MP-JD
  676. {
  677. "path": "bluetooth/bluetooth",
  678. "style": {
  679. "navigationBarTitleText": "蓝牙"
  680. }
  681. },
  682. {
  683. "path": "soter/soter",
  684. "style": {
  685. "navigationBarTitleText": "生物认证"
  686. }
  687. },
  688. // #endif
  689. // #ifdef APP-PLUS || MP-WEIXIN
  690. {
  691. "path": "ibeacon/ibeacon",
  692. "style": {
  693. "navigationBarTitleText": "iBeacon"
  694. }
  695. },
  696. // #endif
  697. {
  698. "path": "vibrate/vibrate",
  699. "style": {
  700. "navigationBarTitleText": "震动"
  701. }
  702. },
  703. // #ifndef MP-ALIPAY
  704. {
  705. "path": "websocket-socketTask/websocket-socketTask",
  706. "style": {
  707. "navigationBarTitleText": "websocket-socketTask"
  708. }
  709. },
  710. // #endif
  711. {
  712. "path": "websocket-global/websocket-global",
  713. "style": {
  714. "navigationBarTitleText": "websocket-global"
  715. }
  716. }
  717. ]
  718. },
  719. {
  720. "root": "pages/extUI",
  721. "pages": [{
  722. "path": "forms/forms",
  723. "style": {
  724. "navigationBarTitleText": "Form 表单"
  725. }
  726. },
  727. {
  728. "path": "group/group",
  729. "style": {
  730. "navigationBarTitleText": "Group 分组"
  731. }
  732. },
  733. {
  734. "path": "badge/badge",
  735. "style": {
  736. "navigationBarTitleText": "Badge 数字角标"
  737. }
  738. },
  739. {
  740. "path": "countdown/countdown",
  741. "style": {
  742. "navigationBarTitleText": "Countdown 倒计时"
  743. }
  744. },
  745. {
  746. "path": "drawer/drawer",
  747. "style": {
  748. "navigationBarTitleText": "Drawer 抽屉"
  749. }
  750. },
  751. {
  752. "path": "icons/icons",
  753. "style": {
  754. "navigationBarTitleText": "Icons 图标"
  755. }
  756. },
  757. {
  758. "path": "load-more/load-more",
  759. "style": {
  760. "navigationBarTitleText": "LoadMore 加载更多"
  761. }
  762. },
  763. {
  764. "path": "nav-bar/nav-bar",
  765. "style": {
  766. "navigationBarTitleText": "NavBar 导航栏",
  767. "navigationStyle": "custom",
  768. "enablePullDownRefresh": true,
  769. "app-plus": {
  770. "titleNView": false,
  771. "bounce": "none",
  772. "pullToRefresh": {
  773. "style": "circle",
  774. "offset": "70px"
  775. }
  776. }
  777. }
  778. },
  779. {
  780. "path": "number-box/number-box",
  781. "style": {
  782. "navigationBarTitleText": "NumberBox 数字输入框"
  783. }
  784. },
  785. {
  786. "path": "popup/popup",
  787. "style": {
  788. "navigationBarTitleText": "Popup 弹出层",
  789. "app-plus": {
  790. "softinputMode": "adjustResize"
  791. }
  792. }
  793. },
  794. {
  795. "path": "segmented-control/segmented-control",
  796. "style": {
  797. "navigationBarTitleText": "SegmentedControl 分段器"
  798. }
  799. },
  800. {
  801. "path": "tag/tag",
  802. "style": {
  803. "navigationBarTitleText": "Tag 标签"
  804. }
  805. },
  806. {
  807. "path": "list/list",
  808. "style": {
  809. "navigationBarTitleText": "List 列表"
  810. }
  811. },
  812. {
  813. "path": "card/card",
  814. "style": {
  815. "navigationBarTitleText": "Card 卡片"
  816. }
  817. },
  818. {
  819. "path": "collapse/collapse",
  820. "style": {
  821. "navigationBarTitleText": "Collapse 折叠面板"
  822. }
  823. },
  824. {
  825. "path": "pagination/pagination",
  826. "style": {
  827. "navigationBarTitleText": "Pagination 分页器"
  828. }
  829. },
  830. {
  831. "path": "swiper-dot/swiper-dot",
  832. "style": {
  833. "navigationBarTitleText": "SwiperDot 轮播图指示点",
  834. "mp-baidu": {
  835. "disableSwipeBack": true
  836. }
  837. }
  838. },
  839. {
  840. "path": "grid/grid",
  841. "style": {
  842. "navigationBarTitleText": "Grid 宫格"
  843. }
  844. },
  845. {
  846. "path": "rate/rate",
  847. "style": {
  848. "navigationBarTitleText": "Rate 评分"
  849. }
  850. },
  851. {
  852. "path": "steps/steps",
  853. "style": {
  854. "navigationBarTitleText": "Steps 步骤条"
  855. }
  856. },
  857. {
  858. "path": "notice-bar/notice-bar",
  859. "style": {
  860. "navigationBarTitleText": "NoticeBar 通告栏"
  861. }
  862. },
  863. {
  864. "path": "swipe-action/swipe-action",
  865. "style": {
  866. "navigationBarTitleText": "SwipeAction 滑动操作",
  867. "app-plus": {
  868. "bounce": "none"
  869. }
  870. }
  871. },
  872. {
  873. "path": "search-bar/search-bar",
  874. "style": {
  875. "navigationBarTitleText": "SearchBar 搜索栏"
  876. }
  877. },
  878. {
  879. "path": "calendar/calendar",
  880. "style": {
  881. "navigationBarTitleText": "Calendar 日历"
  882. }
  883. },
  884. {
  885. "path": "indexed-list/indexed-list",
  886. "style": {
  887. "navigationBarTitleText": "IndexedList 索引列表",
  888. "mp-weixin": {
  889. "disableScroll": true
  890. },
  891. "app-plus": {
  892. "bounce": "none"
  893. },
  894. "mp-alipay": {
  895. "allowsBounceVertical": "NO"
  896. },
  897. "mp-baidu": {
  898. "disableScroll": true
  899. }
  900. }
  901. },
  902. {
  903. "path": "fab/fab",
  904. "style": {
  905. "navigationBarTitleText": "Fab 悬浮按钮"
  906. }
  907. },
  908. {
  909. "path": "fav/fav",
  910. "style": {
  911. "navigationBarTitleText": "Fav 收藏按钮"
  912. }
  913. },
  914. {
  915. "path": "goods-nav/goods-nav",
  916. "style": {
  917. "navigationBarTitleText": "GoodsNav 商品导航"
  918. }
  919. },
  920. {
  921. "path": "section/section",
  922. "style": {
  923. "navigationBarTitleText": "Section 章节标题"
  924. }
  925. },
  926. {
  927. "path": "transition/transition",
  928. "style": {
  929. "navigationBarTitleText": "Transition 过渡动画"
  930. }
  931. },
  932. {
  933. "path": "title/title",
  934. "style": {
  935. "navigationBarTitleText": "Title 章节标题"
  936. }
  937. },
  938. {
  939. "path": "link/link",
  940. "style": {
  941. "navigationBarTitleText": "Link 链接"
  942. }
  943. },
  944. {
  945. "path": "combox/combox",
  946. "style": {
  947. "navigationBarTitleText": "Combox 组合框"
  948. }
  949. },
  950. {
  951. "path": "list/chat",
  952. "style": {}
  953. },
  954. {
  955. "path": "table/table",
  956. "style": {
  957. "navigationBarTitleText": "",
  958. "enablePullDownRefresh": false
  959. }
  960. },
  961. {
  962. "path": "dateformat/dateformat",
  963. "style": {
  964. "navigationBarTitleText": "Dateformat 日期格式化",
  965. "enablePullDownRefresh": false
  966. }
  967. },
  968. {
  969. "path": "data-checkbox/data-checkbox",
  970. "style": {
  971. "navigationBarTitleText": "DataCheckbox 单选复选框",
  972. "enablePullDownRefresh": false
  973. }
  974. },
  975. {
  976. "path": "easyinput/easyinput",
  977. "style": {
  978. "navigationBarTitleText": "Easyinput 增强输入框",
  979. "enablePullDownRefresh": false
  980. }
  981. },
  982. {
  983. "path": "data-picker/data-picker",
  984. "style": {
  985. "navigationBarTitleText": "DataPicker 级联选择",
  986. "enablePullDownRefresh": false
  987. }
  988. },
  989. {
  990. "path": "datetime-picker/datetime-picker",
  991. "style": {
  992. "navigationBarTitleText": "DatetimePicker 日期时间",
  993. "enablePullDownRefresh": false
  994. }
  995. },
  996. {
  997. "path": "row/row",
  998. "style": {
  999. "navigationBarTitleText": "Layout 布局",
  1000. "enablePullDownRefresh": false
  1001. }
  1002. },
  1003. {
  1004. "path": "file-picker/file-picker",
  1005. "style": {
  1006. "navigationBarTitleText": "FilePicker 文件选择上传",
  1007. "enablePullDownRefresh": false
  1008. }
  1009. },
  1010. {
  1011. "path": "space/space",
  1012. "style": {
  1013. "navigationBarTitleText": "间距",
  1014. "enablePullDownRefresh": false
  1015. }
  1016. },
  1017. {
  1018. "path": "font/font",
  1019. "style": {
  1020. "navigationBarTitleText": "字体",
  1021. "enablePullDownRefresh": false
  1022. }
  1023. },
  1024. {
  1025. "path": "color/color",
  1026. "style": {
  1027. "navigationBarTitleText": "颜色",
  1028. "enablePullDownRefresh": false
  1029. }
  1030. },
  1031. {
  1032. "path": "radius/radius",
  1033. "style": {
  1034. "navigationBarTitleText": "圆角",
  1035. "enablePullDownRefresh": false
  1036. }
  1037. },
  1038. {
  1039. "path": "button/button",
  1040. "style": {
  1041. "navigationBarTitleText": "",
  1042. "enablePullDownRefresh": false
  1043. }
  1044. }
  1045. ]
  1046. },
  1047. {
  1048. "root": "pages/template",
  1049. "pages": [
  1050. // #ifndef VUE3
  1051. {
  1052. "path": "ucharts/ucharts",
  1053. "style": {
  1054. "navigationBarTitleText": "uCharts 图表"
  1055. }
  1056. },
  1057. // #endif
  1058. {
  1059. "path": "nav-default/nav-default",
  1060. "style": {
  1061. "navigationBarTitleText": "默认导航栏"
  1062. }
  1063. },
  1064. {
  1065. "path": "component-communication/component-communication",
  1066. "style": {
  1067. "navigationBarTitleText": "组件通讯"
  1068. }
  1069. },
  1070. // #ifdef APP-PLUS || H5 || MP-ALIPAY
  1071. {
  1072. "path": "nav-transparent/nav-transparent",
  1073. "style": {
  1074. "navigationBarTitleText": "透明渐变导航栏",
  1075. "transparentTitle": "auto"
  1076. }
  1077. },
  1078. // #endif
  1079. // #ifdef APP-PLUS || H5
  1080. {
  1081. "path": "nav-button/nav-button",
  1082. "style": {
  1083. "navigationBarTitleText": "导航栏带自定义按钮",
  1084. "app-plus": {
  1085. "titleNView": {
  1086. "buttons": [{
  1087. "type": "share"
  1088. },
  1089. {
  1090. "type": "favorite"
  1091. }
  1092. ]
  1093. }
  1094. }
  1095. }
  1096. },
  1097. // #endif
  1098. // #ifdef APP-PLUS || H5 || MP-ALIPAY
  1099. {
  1100. "path": "nav-image/nav-image",
  1101. "style": {
  1102. "navigationBarBackgroundColor": "#FFFFFF",
  1103. "navigationBarTextStyle": "black",
  1104. "titleImage": "https://vkceyugu.cdn.bspapp.com/VKCEYUGU-dc-site/b3e4cbd0-517d-11eb-a16f-5b3e54966275.png"
  1105. }
  1106. },
  1107. // #endif
  1108. // #ifdef APP-PLUS || H5
  1109. {
  1110. "path": "nav-city-dropdown/nav-city-dropdown",
  1111. "style": {
  1112. "navigationBarTitleText": "导航栏带城市选择",
  1113. "app-plus": {
  1114. "titleNView": {
  1115. "buttons": [{
  1116. "text": "北京市",
  1117. "fontSize": "14",
  1118. "select": true,
  1119. "width": "auto"
  1120. }]
  1121. }
  1122. }
  1123. }
  1124. },
  1125. {
  1126. "path": "nav-dot/nav-dot",
  1127. "style": {
  1128. "navigationBarTitleText": "导航栏带红点和角标",
  1129. "app-plus": {
  1130. "titleNView": {
  1131. "buttons": [{
  1132. "text": "消息",
  1133. "fontSize": "14",
  1134. "redDot": true
  1135. },
  1136. {
  1137. "text": "关注",
  1138. "fontSize": "14",
  1139. "badgeText": "12"
  1140. }
  1141. ]
  1142. }
  1143. }
  1144. }
  1145. },
  1146. {
  1147. "path": "nav-search-input/nav-search-input",
  1148. "style": {
  1149. "navigationBarTitleText": "导航栏带搜索框",
  1150. "app-plus": {
  1151. "titleNView": {
  1152. "type": "transparent",
  1153. "titleColor": "#fff",
  1154. "backgroundColor": "#007AFF",
  1155. "buttons": [{
  1156. "fontSrc": "/static/uni.ttf",
  1157. "text": "\ue537",
  1158. "width": "40px",
  1159. "fontSize": "28px",
  1160. "color": "#fff",
  1161. "background": "rgba(0,0,0,0)"
  1162. }],
  1163. "searchInput": {
  1164. "backgroundColor": "#fff",
  1165. "borderRadius": "6px",
  1166. "placeholder": "请输入地址 如:大钟寺",
  1167. "disabled": true
  1168. }
  1169. }
  1170. }
  1171. }
  1172. },
  1173. {
  1174. "path": "nav-search-input/detail/detail",
  1175. "style": {
  1176. "navigationBarTitleText": "搜索",
  1177. "app-plus": {
  1178. "titleNView": {
  1179. "titleColor": "#fff",
  1180. "backgroundColor": "#007AFF",
  1181. "buttons": [{
  1182. "fontSrc": "/static/uni.ttf",
  1183. "text": "\ue537",
  1184. "width": "auto",
  1185. "fontSize": "28px",
  1186. "color": "#fff"
  1187. }],
  1188. "searchInput": {
  1189. "backgroundColor": "#fff",
  1190. "borderRadius": "6px",
  1191. "placeholder": "请输入地址 如:大钟寺",
  1192. "autoFocus": true
  1193. }
  1194. }
  1195. }
  1196. }
  1197. },
  1198. // #endif
  1199. {
  1200. "path": "list2detail-list/list2detail-list",
  1201. "style": {
  1202. "navigationBarTitleText": "列表到详情示例",
  1203. "enablePullDownRefresh": true
  1204. }
  1205. },
  1206. {
  1207. "path": "list2detail-detail/list2detail-detail",
  1208. "style": {
  1209. "navigationBarTitleText": "详情",
  1210. "app-plus": {
  1211. "titleNView": {
  1212. "type": "transparent",
  1213. "buttons": [{
  1214. "type": "share"
  1215. }]
  1216. }
  1217. },
  1218. "h5": {
  1219. "titleNView": {
  1220. "type": "transparent",
  1221. "buttons": []
  1222. }
  1223. }
  1224. }
  1225. },
  1226. {
  1227. "path": "tabbar/tabbar",
  1228. "style": {
  1229. "navigationBarTitleText": "可拖动顶部选项卡"
  1230. }
  1231. },
  1232. {
  1233. "path": "tabbar/detail/detail",
  1234. "style": {
  1235. "navigationBarTitleText": "详情页面"
  1236. }
  1237. },
  1238. // #ifdef APP-PLUS || H5 || MP-WEIXIN || MP-QQ
  1239. {
  1240. "path": "swiper-vertical/swiper-vertical",
  1241. "style": {
  1242. "navigationBarTitleText": "上下滑动切换视频",
  1243. "app-plus": {
  1244. "titleNView": false
  1245. }
  1246. }
  1247. },
  1248. {
  1249. "path": "swiper-list/swiper-list",
  1250. "style": {
  1251. "navigationBarTitleText": "swiper-list"
  1252. }
  1253. },
  1254. // #endif
  1255. // #ifdef APP-PLUS
  1256. {
  1257. "path": "swiper-list-nvue/swiper-list-nvue",
  1258. "style": {
  1259. "navigationBarTitleText": "swiper-list"
  1260. }
  1261. },
  1262. // #endif
  1263. {
  1264. "path": "scheme/scheme",
  1265. "style": {
  1266. "navigationBarTitleText": "打开外部应用"
  1267. }
  1268. },
  1269. // #ifdef APP-PLUS || MP-WEIXIN || MP-QQ || H5
  1270. // #ifndef VUE3
  1271. {
  1272. "path": "vant-button/vant-button",
  1273. "style": {
  1274. "navigationBarTitleText": "微信自定义组件示例",
  1275. "usingComponents": {
  1276. "van-button": "/wxcomponents/vant/button/index"
  1277. }
  1278. }
  1279. },
  1280. // #endif
  1281. // #endif
  1282. {
  1283. "path": "global/global",
  1284. "style": {
  1285. "navigationBarTitleText": "GlobalData和vuex"
  1286. }
  1287. }
  1288. ]
  1289. }
  1290. ],
  1291. "globalStyle": {
  1292. "pageOrientation": "portrait",
  1293. "navigationBarTitleText": "Hello uniapp",
  1294. "navigationBarTextStyle": "white",
  1295. "navigationBarBackgroundColor": "#007AFF",
  1296. "backgroundColor": "#F8F8F8",
  1297. "backgroundColorTop": "#F4F5F6",
  1298. "backgroundColorBottom": "#F4F5F6",
  1299. "mp-360": {
  1300. "navigationStyle": "custom"
  1301. },
  1302. "h5": {
  1303. "maxWidth": 1190,
  1304. "navigationBarTextStyle": "black",
  1305. "navigationBarBackgroundColor": "#F1F1F1"
  1306. }
  1307. },
  1308. "tabBar": {
  1309. "color": "#7A7E83",
  1310. "selectedColor": "#007AFF",
  1311. "borderStyle": "black",
  1312. "backgroundColor": "#F8F8F8",
  1313. "list": [{
  1314. "pagePath": "pages/tabBar/component/component",
  1315. "iconPath": "static/component.png",
  1316. "selectedIconPath": "static/componentHL.png",
  1317. "text": "内置组件"
  1318. },
  1319. {
  1320. "pagePath": "pages/tabBar/API/API",
  1321. "iconPath": "static/api.png",
  1322. "selectedIconPath": "static/apiHL.png",
  1323. "text": "接口"
  1324. }, {
  1325. "pagePath": "pages/tabBar/extUI/extUI",
  1326. "iconPath": "static/extui.png",
  1327. "selectedIconPath": "static/extuiHL.png",
  1328. "text": "扩展组件"
  1329. }, {
  1330. "pagePath": "pages/tabBar/template/template",
  1331. "iconPath": "static/template.png",
  1332. "selectedIconPath": "static/templateHL.png",
  1333. "text": "模板"
  1334. }
  1335. ]
  1336. }
  1337. }