12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue",
- "^wf-(.*)": "@/components/wf-ui/components/wf-$1/wf-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "辖区概况",
- "enablePullDownRefresh": true,
- "app-plus": {
- "bounce": "vertical",
- "titleNView": {
- "buttons": [{
- "text": "\ue534",
- "title":"关闭小程序", //注意:title 为 uni小程序中显示的按钮标题,如果没有设置则显示 text 字段
- "fontSrc": "/static/font/DINPro-Bold.otf",
- "fontSize": "22px",
- "color": "#333"
- }]
- }
- }
- }
- }, {
- "path": "pages/service/service",
- "style": {
- "navigationBarTitleText": "服务",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/rich/index",
- "style": {
- "navigationBarTitleText": "",
- "navigationStyle": "custom"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "",
- "navigationBarBackgroundColor": "#fff",
- "backgroundColor": "#fff"
- },
- "tabBar": {
- "color": "#AFB8C3",
- "selectedColor": "#5086FA",
- "borderStyle": "white",
- "backgroundColor": "#ffffff",
- "list": []
- }
- }
|