pages.json 11 KB

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