pages.json 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/index/home",
  5. "style": {
  6. "navigationStyle": "custom"
  7. }
  8. },
  9. {
  10. "path": "pages/index/my",
  11. "style": {
  12. "navigationStyle": "custom"
  13. }
  14. },
  15. {
  16. "path": "pages/index/template",
  17. "style": {
  18. "navigationBarTitleText": "模板"
  19. }
  20. }
  21. ],
  22. "subPackages": [
  23. {
  24. "root": "pages/set",
  25. "pages": [
  26. {
  27. "path": "index",
  28. "style": {
  29. "navigationBarTitleText": "设置"
  30. },
  31. "meta": {
  32. "isAuth": true
  33. }
  34. },
  35. {
  36. "path": "general",
  37. "style": {
  38. "navigationBarTitleText": "通用设置"
  39. },
  40. "meta": {
  41. "isAuth": true
  42. }
  43. },
  44. {
  45. "path": "notice",
  46. "style": {
  47. "navigationBarTitleText": "通知设置"
  48. },
  49. "meta": {
  50. "isAuth": true
  51. }
  52. },
  53. {
  54. "path": "about",
  55. "style": {
  56. "navigationBarTitleText": ""
  57. },
  58. "meta": {
  59. "isAuth": true
  60. }
  61. }
  62. ]
  63. },
  64. {
  65. "root": "pages/user",
  66. "pages": [
  67. {
  68. "path": "edit",
  69. "style": {
  70. "navigationBarTitleText": "编辑资料"
  71. },
  72. "meta": {
  73. "isAuth": true
  74. }
  75. },
  76. {
  77. "path": "edit-name",
  78. "style": {
  79. "navigationStyle": "custom"
  80. },
  81. "meta": {
  82. "isAuth": true
  83. }
  84. },
  85. {
  86. "path": "edit-description",
  87. "style": {
  88. "navigationStyle": "custom"
  89. },
  90. "meta": {
  91. "isAuth": true
  92. }
  93. },
  94. {
  95. "path": "login",
  96. "style": {
  97. "navigationStyle": "custom",
  98. "disableScroll": true
  99. }
  100. }
  101. ]
  102. },
  103. {
  104. "root": "pages/demo",
  105. "pages": [
  106. {
  107. "path": "basic/text",
  108. "style": {
  109. "navigationBarTitleText": "Text 文本"
  110. }
  111. },
  112. {
  113. "path": "basic/button",
  114. "style": {
  115. "navigationBarTitleText": "Button 按钮"
  116. }
  117. },
  118. {
  119. "path": "basic/image",
  120. "style": {
  121. "navigationBarTitleText": "Image 图片"
  122. }
  123. },
  124. {
  125. "path": "basic/icon",
  126. "style": {
  127. "navigationBarTitleText": "Icon 图标"
  128. }
  129. },
  130. {
  131. "path": "basic/tag",
  132. "style": {
  133. "navigationBarTitleText": "Tag 标签"
  134. }
  135. },
  136. {
  137. "path": "form/form",
  138. "style": {
  139. "navigationBarTitleText": "Form 表单验证"
  140. }
  141. },
  142. {
  143. "path": "form/input",
  144. "style": {
  145. "navigationBarTitleText": "Input 输入框"
  146. }
  147. },
  148. {
  149. "path": "form/textarea",
  150. "style": {
  151. "navigationBarTitleText": "Textarea 文本域"
  152. }
  153. },
  154. {
  155. "path": "form/input-number",
  156. "style": {
  157. "navigationBarTitleText": "InputNumber 计数器"
  158. }
  159. },
  160. {
  161. "path": "form/input-otp",
  162. "style": {
  163. "navigationBarTitleText": "InputOtp 口令输入"
  164. }
  165. },
  166. {
  167. "path": "form/keyboard",
  168. "style": {
  169. "navigationBarTitleText": "Keyboard 键盘"
  170. }
  171. },
  172. {
  173. "path": "form/radio",
  174. "style": {
  175. "navigationBarTitleText": "Radio 单选框"
  176. }
  177. },
  178. {
  179. "path": "form/checkbox",
  180. "style": {
  181. "navigationBarTitleText": "Checkbox 多选框"
  182. }
  183. },
  184. {
  185. "path": "form/switch",
  186. "style": {
  187. "navigationBarTitleText": "Switch 开关"
  188. }
  189. },
  190. {
  191. "path": "form/rate",
  192. "style": {
  193. "navigationBarTitleText": "Rate 评分"
  194. }
  195. },
  196. {
  197. "path": "form/slider",
  198. "style": {
  199. "navigationBarTitleText": "Slider 滑块"
  200. }
  201. },
  202. {
  203. "path": "form/select",
  204. "style": {
  205. "navigationBarTitleText": "Select 选择器"
  206. }
  207. },
  208. {
  209. "path": "form/select-date",
  210. "style": {
  211. "navigationBarTitleText": "SelectDate 日期选择器"
  212. }
  213. },
  214. {
  215. "path": "form/select-time",
  216. "style": {
  217. "navigationBarTitleText": "SelectTime 时间选择器"
  218. }
  219. },
  220. {
  221. "path": "form/cascader",
  222. "style": {
  223. "navigationBarTitleText": "Cascader 级联选择器"
  224. }
  225. },
  226. {
  227. "path": "form/upload",
  228. "style": {
  229. "navigationBarTitleText": "Upload 文件上传"
  230. }
  231. },
  232. {
  233. "path": "form/calendar",
  234. "style": {
  235. "navigationBarTitleText": "Calendar 日历"
  236. }
  237. },
  238. {
  239. "path": "layout/flex",
  240. "style": {
  241. "navigationBarTitleText": "Flex 弹性布局"
  242. }
  243. },
  244. {
  245. "path": "layout/tabs",
  246. "style": {
  247. "navigationBarTitleText": "Tabs 标签页"
  248. }
  249. },
  250. {
  251. "path": "layout/collapse",
  252. "style": {
  253. "navigationBarTitleText": "Collapse 折叠面板"
  254. }
  255. },
  256. {
  257. "path": "layout/sticky",
  258. "style": {
  259. "navigationBarTitleText": "Sticky 吸顶"
  260. }
  261. },
  262. {
  263. "path": "layout/topbar",
  264. "style": {
  265. "navigationBarTitleText": "TopBar 导航栏"
  266. }
  267. },
  268. {
  269. "path": "layout/float-view",
  270. "style": {
  271. "navigationBarTitleText": "FloatView 悬浮视图"
  272. }
  273. },
  274. {
  275. "path": "layout/footer",
  276. "style": {
  277. "navigationBarTitleText": "Footer 底部视图"
  278. }
  279. },
  280. {
  281. "path": "layout/tabbar",
  282. "style": {
  283. "navigationBarTitleText": "Tabbar 底部导航栏"
  284. }
  285. },
  286. {
  287. "path": "data/list",
  288. "style": {
  289. "navigationBarTitleText": "List 列表"
  290. }
  291. },
  292. {
  293. "path": "data/list-view",
  294. "style": {
  295. "navigationBarTitleText": "ListView 列表视图"
  296. }
  297. },
  298. {
  299. "path": "data/list-view-refresh",
  300. "style": {
  301. "navigationBarTitleText": "ListViewRefresh 列表刷新"
  302. }
  303. },
  304. {
  305. "path": "data/waterfall",
  306. "style": {
  307. "navigationBarTitleText": "Waterfall 瀑布流"
  308. }
  309. },
  310. {
  311. "path": "data/banner",
  312. "style": {
  313. "navigationBarTitleText": "Banner 轮播图"
  314. }
  315. },
  316. {
  317. "path": "data/marquee",
  318. "style": {
  319. "navigationBarTitleText": "Marquee 跑马灯"
  320. }
  321. },
  322. {
  323. "path": "data/pagination",
  324. "style": {
  325. "navigationBarTitleText": "Pagination 分页"
  326. }
  327. },
  328. {
  329. "path": "data/timeline",
  330. "style": {
  331. "navigationBarTitleText": "Timeline 时间轴"
  332. }
  333. },
  334. {
  335. "path": "data/avatar",
  336. "style": {
  337. "navigationBarTitleText": "Avatar 头像"
  338. }
  339. },
  340. {
  341. "path": "data/read-more",
  342. "style": {
  343. "navigationBarTitleText": "ReadMore 查看更多"
  344. }
  345. },
  346. {
  347. "path": "data/draggable",
  348. "style": {
  349. "navigationBarTitleText": "Draggable 拖拽"
  350. }
  351. },
  352. {
  353. "path": "data/filter-bar",
  354. "style": {
  355. "navigationBarTitleText": "FilterBar 筛选栏"
  356. }
  357. },
  358. {
  359. "path": "data/tree",
  360. "style": {
  361. "navigationBarTitleText": "Tree 树形结构"
  362. }
  363. },
  364. {
  365. "path": "status/badge",
  366. "style": {
  367. "navigationBarTitleText": "Badge 角标"
  368. }
  369. },
  370. {
  371. "path": "status/noticebar",
  372. "style": {
  373. "navigationBarTitleText": "NoticeBar 通知栏"
  374. }
  375. },
  376. {
  377. "path": "status/countdown",
  378. "style": {
  379. "navigationBarTitleText": "Countdown 倒计时"
  380. }
  381. },
  382. {
  383. "path": "status/progress",
  384. "style": {
  385. "navigationBarTitleText": "Progress 进度条"
  386. }
  387. },
  388. {
  389. "path": "status/progress-circle",
  390. "style": {
  391. "navigationBarTitleText": "ProgressCircle 圆形进度条"
  392. }
  393. },
  394. {
  395. "path": "status/skeleton",
  396. "style": {
  397. "navigationBarTitleText": "Skeleton 骨架图"
  398. }
  399. },
  400. {
  401. "path": "status/loadmore",
  402. "style": {
  403. "navigationBarTitleText": "LoadMore 加载更多"
  404. }
  405. },
  406. {
  407. "path": "status/rolling-number",
  408. "style": {
  409. "navigationBarTitleText": "RollingNumber 数字滚动"
  410. }
  411. },
  412. {
  413. "path": "feedback/action-sheet",
  414. "style": {
  415. "navigationBarTitleText": "ActionSheet 操作菜单"
  416. }
  417. },
  418. {
  419. "path": "feedback/popup",
  420. "style": {
  421. "navigationBarTitleText": "Popup 弹窗"
  422. }
  423. },
  424. {
  425. "path": "feedback/confirm",
  426. "style": {
  427. "navigationBarTitleText": "Confirm 确认框"
  428. }
  429. },
  430. {
  431. "path": "feedback/toast",
  432. "style": {
  433. "navigationBarTitleText": "Toast 提示框"
  434. }
  435. },
  436. {
  437. "path": "other/qrcode",
  438. "style": {
  439. "navigationBarTitleText": "QRCode 二维码"
  440. }
  441. },
  442. {
  443. "path": "other/sign",
  444. "style": {
  445. "navigationBarTitleText": "Sign 签名"
  446. }
  447. },
  448. {
  449. "path": "other/watermark",
  450. "style": {
  451. "navigationBarTitleText": "Watermark 水印"
  452. }
  453. },
  454. {
  455. "path": "other/day-uts",
  456. "style": {
  457. "navigationBarTitleText": "DayUts 日期"
  458. }
  459. },
  460. {
  461. "path": "other/vibrate",
  462. "style": {
  463. "navigationBarTitleText": "Vibrate 震动"
  464. }
  465. },
  466. {
  467. "path": "other/cropper",
  468. "style": {
  469. "navigationBarTitleText": "Cropper 图片裁剪"
  470. }
  471. },
  472. {
  473. "path": "other/canvas",
  474. "style": {
  475. "navigationBarTitleText": "Canvas 画布"
  476. }
  477. },
  478. {
  479. "path": "other/svg",
  480. "style": {
  481. "navigationBarTitleText": "SVG 图标"
  482. }
  483. },
  484. {
  485. "path": "other/slide-verify",
  486. "style": {
  487. "navigationBarTitleText": "SlideVerify 滑动验证"
  488. }
  489. },
  490. {
  491. "path": "other/animation",
  492. "style": {
  493. "navigationBarTitleText": "Animation 动画"
  494. }
  495. },
  496. {
  497. "path": "other/router/index",
  498. "style": {
  499. "navigationBarTitleText": "Router 路由"
  500. }
  501. },
  502. {
  503. "path": "other/router/query"
  504. },
  505. {
  506. "path": "other/share",
  507. "style": {
  508. "navigationBarTitleText": "Share 分享"
  509. }
  510. },
  511. {
  512. "path": "other/select-seat",
  513. "style": {
  514. "navigationBarTitleText": "SelectSeat 座位选择",
  515. "disableScroll": true
  516. }
  517. }
  518. ]
  519. },
  520. {
  521. "root": "pages/template",
  522. "pages": [
  523. {
  524. "path": "post/detail",
  525. "style": {
  526. "navigationStyle": "custom"
  527. }
  528. },
  529. {
  530. "path": "shop/goods-category",
  531. "style": {
  532. "navigationBarTitleText": "商品分类"
  533. }
  534. },
  535. {
  536. "path": "shop/goods-detail/index",
  537. "style": {
  538. "navigationStyle": "custom"
  539. }
  540. },
  541. {
  542. "path": "shop/shopping-cart",
  543. "style": {
  544. "navigationStyle": "custom"
  545. }
  546. },
  547. {
  548. "path": "shop/address",
  549. "style": {
  550. "navigationBarTitleText": "收货地址"
  551. },
  552. "meta": {
  553. "isAuth": true
  554. }
  555. },
  556. {
  557. "path": "shop/address-edit",
  558. "style": {
  559. "navigationBarTitleText": "编辑地址"
  560. }
  561. }
  562. ]
  563. }
  564. ],
  565. "globalStyle": {
  566. "navigationBarTitleText": "cool-unix",
  567. "navigationBarTextStyle": "@navTextStyle",
  568. "backgroundColorContent": "@bgContentColor",
  569. "backgroundColor": "@bgColor",
  570. "navigationBarBackgroundColor": "@navBgColor"
  571. },
  572. "tabBar": {
  573. "custom": true,
  574. "color": "@tabColor",
  575. "selectedColor": "@tabSelectedColor",
  576. "backgroundColor": "@tabBgColor",
  577. "borderStyle": "@tabBorderStyle",
  578. "height": "60px",
  579. "list": [
  580. {
  581. "pagePath": "pages/index/home",
  582. "iconPath": "/static/icon/tabbar/home.png",
  583. "selectedIconPath": "/static/icon/tabbar/home2.png",
  584. "text": "首页"
  585. },
  586. {
  587. "pagePath": "pages/index/template",
  588. "iconPath": "/static/icon/tabbar/template.png",
  589. "selectedIconPath": "/static/icon/tabbar/template2.png",
  590. "text": "模板"
  591. },
  592. {
  593. "pagePath": "pages/index/my",
  594. "iconPath": "/static/icon/tabbar/my.png",
  595. "selectedIconPath": "/static/icon/tabbar/my2.png",
  596. "text": "我的"
  597. }
  598. ]
  599. },
  600. "uniIdRouter": {}
  601. }