12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/flightdetails/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/sorting/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/baggagecheck/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/mypage/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/myrecords/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/search/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/loadingdetails/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/help/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/individual/index",
- "style": {
- "navigationStyle": "custom"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "navigationStyle": "custom"
- },
- "tabBar":{
- "color":"#7A7E83",
- "selectedColor":"#3cc51f",
- "borderStyle":"black",
- "backgroundColor":"#ffffff",
- "list":[{
- "pagePath":"pages/index/index",
- "text": "首页"
- }, {
- "pagePath":"pages/",
- "text": "消息"
- }, {
- "pagePath":"pages/mypage/index",
- "text": "我的"
- }]
- },
- "uniIdRouter": {}
- }
|