12345678910111213141516171819202122232425262728293031 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ // pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "修文农业云公共服务系统"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "农业云H5",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#F7F8F9"
- },
- "tabBar": {
- "color": "#909399",
- "selectedColor": "#303133",
- "borderStyle": "black",
- "backgroundColor": "#FFFFF",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/index.png",
- "selectedIconPath": "static/index-selected.png",
- "text": "首页"
- }]
- }
- }
|