| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- {
- "easycom": {
- "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [{
- "path": "pages/home/home",
- "style": {
- "navigationBarTitleText": "数据概览"
- }
- }, //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "登录",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/onlineData/onlineData",
- "style": {
- "navigationBarTitleText": "实时监控",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/user/user",
- "style": {
- "navigationBarTitleText": "个人中心",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/inspector/inspector",
- "style": {
- "navigationBarTitleText": "现场督察",
- "enablePullDownRefresh": false
- }
- }
- ],
- "subPackages": [{
- "root": "pages_company",
- "pages": [{
- "path": "company",
- "style": {
- "navigationBarTitleText": "商户概览",
- "enablePullDownRefresh": false
- }
- }]
- }, {
- "root": "pages_map",
- "pages": [{
- "path": "map",
- "style": {
- "navigationBarTitleText": "在线地图",
- "enablePullDownRefresh": false
- }
- }
-
-
-
- ]
- }],
- "preloadRule": {
- "pages_company/company": {
- "network": "all",
- "packages": ["__APP__"]
- }
- },
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "",
- "navigationBarBackgroundColor": "#3C9CFF",
- "backgroundColor": "#F8F8F8"
- },
- "condition" : { //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [
- {
- "name": "", //模式名称
- "path": "", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }
- ]
- }
- }
|