1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path" : "components/login/Login",
- "style" : {
- "navigationBarTitleText": "登录"
- }
- },
- {
- "path": "pages/index/Index",
- "style": {
- "navigationBarTitleText": "按小时气象预测"
- }
- }
- ,{
- "path" : "pages/weatherProphet7/WeatherProphet7",
- "style" : {
- "navigationBarTitleText": "7天气象预测"
- }
- }
- ,{
- "path" : "pages/weatherProphet8_15/WeatherProphet8_15",
- "style" : {
- "navigationBarTitleText": "8-15天气象预测"
- }
- },{
- "path" : "pages/weatherProphet40/WeatherProphet40",
- "style" : {
- "navigationBarTitleText": "40天气象预测"
- }
- },
- {
- "path": "components/addressSelect/AddressSelect",
- "style": {
- "navigationBarTitleText": "地址选择"
- }
- }
- ,{
- "path" : "components/detail/Detail",
- "style" : {}
- }
-
-
-
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "气象预测项目手机版",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "navigationStyle": "custom"
- },
- "tabBar": {
- "color": "#DEDFE3",
- "selectedColor": "white",
- "borderStyle": "black",
- "backgroundColor": "#20587D",
- "list": [{
- "pagePath": "pages/index/Index",
- /* "iconPath": "static/logo1.png",
- "selectedIconPath": "static/logo.png", */
- "text": "现在"
- }, {
- "pagePath": "pages/weatherProphet7/WeatherProphet7",
- /* "iconPath": "static/logo1.png",
- "selectedIconPath": "static/logo.png", */
- "text": "7天"
- }, {
- "pagePath": "pages/weatherProphet8_15/WeatherProphet8_15",
- /* "iconPath": "static/logo1.png",
- "selectedIconPath": "static/logo.png", */
- "text": "8-15天"
- }, {
- "pagePath": "pages/weatherProphet40/WeatherProphet40",
- /* "iconPath": "static/logo1.png",
- "selectedIconPath": "static/logo.png", */
- "text": "40天"
- }]
- }
- }
|