足力健前端,vue版本

pages.json 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页",
  7. "backgroundColor":"#f86b6a"
  8. }
  9. },
  10. {
  11. "path": "pages/commodity/index",
  12. "style": {
  13. "navigationBarTitleText": "商品"
  14. }
  15. },
  16. {
  17. "path": "pages/backlog/index",
  18. "style": {
  19. "navigationBarTitleText": "待办"
  20. }
  21. },
  22. {
  23. "path": "pages/analyze/index",
  24. "style": {
  25. "navigationBarTitleText": "分析"
  26. }
  27. },
  28. {
  29. "path": "pages/setting/index",
  30. "style": {
  31. "navigationBarTitleText": "我的"
  32. }
  33. }
  34. ],
  35. "globalStyle": {
  36. "navigationBarTextStyle": "white",
  37. "navigationBarTitleText": "uni-app",
  38. "navigationBarBackgroundColor":"#4378be",
  39. "backgroundColor": "#F8F8F8"
  40. },
  41. "tabBar":{
  42. "backgroundColor": "#ffffff",
  43. "selectedColor": "#1ba7dd",
  44. "iconWidth":"12px",
  45. "list": [{
  46. "pagePath": "pages/index/index",
  47. "iconPath": "static/image/icon-home.png",
  48. "selectedIconPath": "static/image/icon-home-select.png",
  49. "text": "首页"
  50. },
  51. {
  52. "pagePath": "pages/commodity/index",
  53. "iconPath": "static/image/icon-commodity.png",
  54. "selectedIconPath": "static/image/icon-commodity-select.png",
  55. "text": "商品"
  56. },{
  57. "pagePath": "pages/backlog/index",
  58. "iconPath": "static/image/icon-backlog.png",
  59. "selectedIconPath": "static/image/icon-backlog-select.png",
  60. "text": "待办"
  61. },{
  62. "pagePath": "pages/analyze/index",
  63. "iconPath": "static/image/icon-analyze.png",
  64. "selectedIconPath": "static/image/icon-analyze-select.png",
  65. "text": "分析"
  66. },{
  67. "pagePath": "pages/setting/index",
  68. "iconPath": "static/image/icon-setting.png",
  69. "selectedIconPath": "static/image/icon-setting-select.png",
  70. "text": "我的"
  71. }]
  72. }
  73. }