pages.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/Index",
  5. "style": {
  6. "navigationBarTitleText": "监视"
  7. }
  8. }
  9. ,{
  10. "path" : "pages/analysis/Analysis",
  11. "style" : {
  12. "navigationBarTitleText": "分析"
  13. }
  14. }
  15. ,{
  16. "path" : "pages/forecast/Forecast",
  17. "style" : {
  18. "navigationBarTitleText": "预测"
  19. }
  20. },{
  21. "path" : "pages/task/Task",
  22. "style" : {
  23. "navigationBarTitleText": "任务"
  24. }
  25. },
  26. {
  27. "path": "pages/mine/Mine",
  28. "style": {
  29. "navigationBarTitleText": "我的"
  30. }
  31. }
  32. ],
  33. "globalStyle": {
  34. "navigationBarTextStyle": "black",
  35. "navigationBarTitleText": "sis手机端",
  36. "navigationBarBackgroundColor": "#F8F8F8",
  37. "backgroundColor": "#F8F8F8",
  38. "navigationStyle": "custom"
  39. },
  40. "tabBar": {
  41. "color": "#DEDFE3",
  42. "selectedColor": "white",
  43. "borderStyle": "black",
  44. "backgroundColor": "#062E5E",
  45. "list": [{
  46. "pagePath": "pages/index/Index",
  47. /* "iconPath": "static/logo1.png",
  48. "selectedIconPath": "static/logo.png", */
  49. "text": "监视"
  50. }, {
  51. "pagePath": "pages/analysis/Analysis",
  52. /* "iconPath": "static/logo1.png",
  53. "selectedIconPath": "static/logo.png", */
  54. "text": "分析"
  55. }, {
  56. "pagePath": "pages/forecast/Forecast",
  57. /* "iconPath": "static/logo1.png",
  58. "selectedIconPath": "static/logo.png", */
  59. "text": "预测"
  60. }, {
  61. "pagePath": "pages/task/Task",
  62. /* "iconPath": "static/logo1.png",
  63. "selectedIconPath": "static/logo.png", */
  64. "text": "任务"
  65. },{
  66. "pagePath": "pages/mine/Mine",
  67. /* "iconPath": "static/logo1.png",
  68. "selectedIconPath": "static/logo.png", */
  69. "text": "我"
  70. }]
  71. }
  72. }