pages.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/index",
  5. "style": {
  6. "navigationBarTitleText": "企业数字应用平台"
  7. }
  8. },
  9. {
  10. "path": "pages/index/index",
  11. "style": {
  12. "navigationBarTitleText": "首页"
  13. }
  14. },
  15. {
  16. "path": "pages/mine/index",
  17. "style": {
  18. "navigationBarTitleText": "我的"
  19. }
  20. }
  21. ],
  22. "subPackages": [{
  23. "root": "subPackages",
  24. "pages": [{
  25. "path": "orderforGoods/index",
  26. "style": {
  27. "navigationBarTitleText": "订单"
  28. }
  29. },{
  30. "path": "orderforGoods/details",
  31. "style": {
  32. "navigationBarTitleText": "生产订单"
  33. }
  34. }]
  35. }],
  36. "globalStyle": {
  37. "navigationStyle": "custom",
  38. "navigationBarTextStyle": "black",
  39. "navigationBarTitleText": "uni-app",
  40. "navigationBarBackgroundColor": "#F8F8F8",
  41. "backgroundColor": "#F8F8F8"
  42. },
  43. "uniIdRouter": {},
  44. "tabBar": {
  45. "color": "#7A7E83",
  46. "selectedColor": "#43adfd",
  47. "borderStyle": "black",
  48. "backgroundColor": "#ffffff",
  49. "list": [{
  50. "pagePath": "pages/index/index",
  51. "iconPath": "static/ic_tab_home.png",
  52. "selectedIconPath": "static/ic_tab_home_selected.png",
  53. "text": "首页"
  54. }, {
  55. "pagePath": "pages/mine/index",
  56. "iconPath": "static/ic_tab_mine.png",
  57. "selectedIconPath": "static/ic_tab_mine_selected.png",
  58. "text": "我的"
  59. }]
  60. }
  61. }