123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationStyle":"custom",// 隐藏系统导航栏
- "navigationBarTitleText": "城市智慧停车"
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "登录",
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/equipmentList/equipmentList",
- "style": {
- "navigationStyle":"custom",
- "navigationBarTitleText": "设备列表"
- }
- },
- {
- "path": "pages/clockIn/clockIn",
- "style": {
- "navigationStyle":"custom",
- "navigationBarTitleText": "打卡"
- }
- },
- {
- "path": "pages/ownersQuery/ownersQuery",
- "style": {
- "navigationStyle":"custom",// 隐藏系统导航栏
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "车主查询"
- }
- },
- {
- "path": "pages/ownersQuery/queryList/queryList",
- "style": {
- "navigationStyle":"custom",// 隐藏系统导航栏
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "车主查询"
- }
- },
- {
- "path": "pages/center/index",
- "style": {
- "navigationStyle":"custom",// 隐藏系统导航栏
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "城市智慧停车"
- }
- },
- {
- "path": "pages/report/report",
- "style": {
- "navigationStyle":"custom",// 隐藏系统导航栏
- "navigationBarTitleText": "问题上报"
- }
- },
- {
- "path": "pages/center/resetPass/resetPass",
- "style": {
- "navigationBarTitleText": "重置密码"
- }
- }
-
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uView",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "backgroundColorTop":"#FFFFFF"
- },
- "tabBar": {
- "color": "#909399",
- "selectedColor": "#303133",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/index.png",
- "selectedIconPath": "static/index-selected.png",
- "text": "首页"
- }, {
- "pagePath": "pages/ownersQuery/ownersQuery",
- "iconPath": "static/car_h.png",
- "selectedIconPath": "static/car.png",
- "text": "车主查询"
- }, {
- "pagePath": "pages/center/index",
- "iconPath": "static/center.png",
- "selectedIconPath": "static/center-selected.png",
- "text": "我"
- }]
- }
- }
|