123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "停车巡检端",
- "navigationStyle": "custom"
- }
- }, {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "登录",
- "navigationStyle": "custom",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/ownerInquiry/ownerInquiry",
- "style": {
- "navigationBarTitleText": "车主查询",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- }, {
- "path": "pages/mine/mine",
- "style": {
- "navigationBarTitleText": "我的",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- }, {
- "path": "pages/index/messageCenter/messageCenter",
- "style": {
- "navigationBarTitleText": "消息中心",
- "enablePullDownRefresh": false,
- "navigationBarBackgroundColor": "#5290FF",
- "navigationBarTextStyle": "white"
- }
- }, {
- "path": "pages/mine/problemReporting/problemReporting",
- "style": {
- "navigationBarTitleText": "问题上报",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/mine/changePassword/changePassword",
- "style": {
- "navigationBarTitleText": "修改密码",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/ownerInquiry/queryResults/queryResults",
- "style": {
- "navigationBarTitleText": "查询结果",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/index/deviceList/deviceList",
- "style": {
- "navigationBarTitleText": "全部设备",
- "enablePullDownRefresh": false,
- "navigationBarBackgroundColor": "#5290FF",
- "navigationBarTextStyle": "white"
- }
- }, {
- "path": "pages/index/chooseRoad/chooseRoad",
- "style": {
- "navigationBarTitleText": "选择路段",
- "enablePullDownRefresh": false,
- "navigationBarBackgroundColor": "#5290FF",
- "navigationBarTextStyle": "white"
- }
- }, {
- "path": "pages/index/geomagDetails/geomagDetails",
- "style": {
- "navigationBarTitleText": "地磁",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/index/lockDetails/lockDetails",
- "style": {
- "navigationBarTitleText": "车位锁",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/index/gateDetails/gateDetails",
- "style": {
- "navigationBarTitleText": "栏杆道闸",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/index/clockIn/clockIn",
- "style": {
- "navigationBarTitleText": "打卡",
- "enablePullDownRefresh": false,
- "navigationBarBackgroundColor": "#5290FF",
- "navigationBarTextStyle": "white"
- }
- }, {
- "path": "pages/index/deviceDetails/deviceDetails",
- "style": {
- "navigationBarTitleText": "设备详情",
- "enablePullDownRefresh": false
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "停车巡检端",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F5F5F5"
- },
- "tabBar": {
- "color": "#a7a7a7",
- "selectedColor": "#2080FF",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/tabbar/index.png",
- "selectedIconPath": "static/tabbar/index-selected.png",
- "text": "首页"
- }, {
- "pagePath": "pages/ownerInquiry/ownerInquiry",
- "iconPath": "static/tabbar/search.png",
- "selectedIconPath": "static/tabbar/search-selected.png",
- "text": "车主查询"
- }, {
- "pagePath": "pages/mine/mine",
- "iconPath": "static/tabbar/mine.png",
- "selectedIconPath": "static/tabbar/mine-selected.png",
- "text": "我的"
- }]
- }
- }
|