| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- {
- "easycom": {
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path" : "pages/login/login",
- "style" :
- {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "物业助手",
- "navigationBarBackgroundColor": "#7dc7ae",
- "backgroundColor": "#7dc7ae"
- }
-
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "物业助手",
- "navigationBarBackgroundColor": "#7dc7ae",
- "backgroundColor": "#ffffff"
- }
- }
- ,{
- "path" : "pages/mine/mine",
- "style" :
- {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "",
- "navigationBarBackgroundColor": "#7dc7ae",
- "backgroundColor": "#7dc7ae",
- "enablePullDownRefresh": true
- }
-
- }
- ,{
- "path" : "pages/residential/residential",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/building/building",
- "style" :
- {
- "navigationBarTitleText": "楼栋管理",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/unit/unit",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/room/room",
- "style" :
- {
- "navigationBarTitleText": "房间管理",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/user/user",
- "style" :
- {
- "navigationBarTitleText": "住户管理",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/user-auth/user-auth",
- "style" :
- {
- "navigationBarTitleText": "住户审核",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/car/car",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/room/add",
- "style" :
- {
- "navigationBarTitleText": "添加房间",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/room/detail",
- "style" :
- {
- "navigationBarTitleText": "房间详情",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/user/detail",
- "style" :
- {
- "navigationBarTitleText": "住户详情",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/user/add",
- "style" :
- {
- "navigationBarTitleText": "新增住户",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/user-auth/detail",
- "style" :
- {
- "navigationBarTitleText": "审核详情",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/setting/setting",
- "style" :
- {
- "navigationBarTitleText": "系统设置",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/setting/agreement",
- "style" :
- {
- "navigationBarTitleText": "用户协议",
- "enablePullDownRefresh": false
- }
-
- }
-
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "物业助手",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#FFFFFF"
- },
- "tabBar": {
- "color":"#a0aabc",
- "backgroundColor":"#FFFFFF",
- "borderStyle":"white",
- "selectedColor":"#7dc7ae",
- "list": [
- {
- "pagePath": "pages/index/index",
- "text": "工作台",
- "selectedIconPath":"static/tarbar/index-select.png",
- "iconPath":"static/tarbar/index.png"
- },
- {
- "pagePath": "pages/mine/mine",
- "text": "个人中心",
- "selectedIconPath":"static/tarbar/mine-select.png",
- "iconPath":"static/tarbar/mine.png"
- }
- ]
- }
- }
|