| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "easycom": {
- "autoscan": true, //是否自动扫描组件
- "custom": {
- "^x-(.*)": "@/components/x-$1.vue", // 匹配components目录内的vue文件
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- }
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/indexRouter",
- "style": {
- "navigationStyle": "custom"
- }
- }, {
- "path": "pages/realTime/index",
- "style": {
- "navigationBarTitleText": "uni-app"
- }
- }, {
- "path": "pages/historical/index",
- "style": {
- "navigationBarTitleText": "uni-app"
- }
- }, {
- "path": "pages/alarm/index",
- "style": {
- "navigationBarTitleText": "uni-app"
- }
- }
- ],
- "globalStyle": {
- "rpxCalcMaxDeviceWidth": 0,
- "rpxCalcBaseDeviceWidth": 375,
- "rpxCalcIncludeWidth": 750 ,
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {}
- }
|