123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/welcome",
- "style": {
- "navigationBarTitleText": "欢迎页",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- }, {
- "path": "pages/my/userInfo",
- "style": {
- "navigationBarTitleText": "个人信息",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/my/my",
- "style": {
- "navigationBarTitleText": "个人中心",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- }
- ],
- "subPackages": [{
- "root": "modules/common",
- "pages": [{
- "path": "login/login",
- "style": {
- "navigationBarTitleText": "登录",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "version",
- "style": {
- "navigationBarTitleText": "版本记录",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "feedback",
- "style": {
- "navigationBarTitleText": "意见反馈",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "licensePlate/list",
- "style": {
- "navigationBarTitleText": "车辆管理",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "licensePlate/add",
- "style": {
- "navigationBarTitleText": "车辆管理",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "addrbook/list",
- "style": {
- "navigationBarTitleText": "通讯录",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "addrbook/detail",
- "style": {
- "navigationBarTitleText": "通讯录",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "address/list",
- "style": {
- "navigationBarTitleText": "地址管理",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "address/add",
- "style": {
- "navigationBarTitleText": "地址管理",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "notice",
- "style": {
- "navigationBarTitleText": "我的消息",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "org",
- "style": {
- "navigationBarTitleText": "组织架构",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "about/policy",
- "style": {
- "navigationBarTitleText": "隐私政策",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "about/agreement",
- "style": {
- "navigationBarTitleText": "用户协议",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "setting",
- "style": {
- "navigationBarTitleText": "设置",
- "enablePullDownRefresh": false
- }
- }
- ]
- }],
- "preloadRule": {
- "pages/my/my": {
- "network": "all",
- "packages": ["modules/common"]
- }
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "selectedColor": "#0063F5",
- "list": [{
- "pagePath": "pages/index/index",
- "text": "首页",
- "iconPath": "static/images/tabbar/home.png",
- "selectedIconPath": "static/images/tabbar/home-on.png"
- },
- {
- "pagePath": "pages/my/my",
- "text": "我的",
- "iconPath": "static/images/tabbar/my.png",
- "selectedIconPath": "static/images/tabbar/my-on.png"
- }
- ]
- }
- }
|