pages.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "components/login/Login",
  5. "style" : {
  6. "navigationBarTitleText": "登录"
  7. }
  8. },
  9. {
  10. "path": "pages/index/Index",
  11. "style": {
  12. "navigationBarTitleText": "按小时气象预测"
  13. }
  14. }
  15. ,{
  16. "path" : "pages/weatherProphet7/WeatherProphet7",
  17. "style" : {
  18. "navigationBarTitleText": "7天气象预测"
  19. }
  20. }
  21. ,{
  22. "path" : "pages/weatherProphet8_15/WeatherProphet8_15",
  23. "style" : {
  24. "navigationBarTitleText": "8-15天气象预测"
  25. }
  26. },{
  27. "path" : "pages/weatherProphet40/WeatherProphet40",
  28. "style" : {
  29. "navigationBarTitleText": "40天气象预测"
  30. }
  31. },
  32. {
  33. "path": "components/addressSelect/AddressSelect",
  34. "style": {
  35. "navigationBarTitleText": "地址选择"
  36. }
  37. }
  38. ,{
  39. "path" : "components/detail/Detail",
  40. "style" : {}
  41. }
  42. ],
  43. "globalStyle": {
  44. "navigationBarTextStyle": "black",
  45. "navigationBarTitleText": "气象预测项目手机版",
  46. "navigationBarBackgroundColor": "#F8F8F8",
  47. "backgroundColor": "#F8F8F8",
  48. "navigationStyle": "custom"
  49. },
  50. "tabBar": {
  51. "color": "#DEDFE3",
  52. "selectedColor": "white",
  53. "borderStyle": "black",
  54. "backgroundColor": "#20587D",
  55. "list": [{
  56. "pagePath": "pages/index/Index",
  57. /* "iconPath": "static/logo1.png",
  58. "selectedIconPath": "static/logo.png", */
  59. "text": "现在"
  60. }, {
  61. "pagePath": "pages/weatherProphet7/WeatherProphet7",
  62. /* "iconPath": "static/logo1.png",
  63. "selectedIconPath": "static/logo.png", */
  64. "text": "7天"
  65. }, {
  66. "pagePath": "pages/weatherProphet8_15/WeatherProphet8_15",
  67. /* "iconPath": "static/logo1.png",
  68. "selectedIconPath": "static/logo.png", */
  69. "text": "8-15天"
  70. }, {
  71. "pagePath": "pages/weatherProphet40/WeatherProphet40",
  72. /* "iconPath": "static/logo1.png",
  73. "selectedIconPath": "static/logo.png", */
  74. "text": "40天"
  75. }]
  76. }
  77. }