1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "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/home/home",
- "style": {
- "navigationBarTitleText": "政务服务",
- "enablePullDownRefresh": false,
- "navigationBarBackgroundColor": "#106DFF",
- "navigationBarTextStyle": "white",
- "app-plus": {
- "bounce": "vertical",
- "titleNview": {
- "buttons": [{
- "text": "\ue534",
- "title": "关闭小程序",
- "fontSrc": "/static/font/DINPro-Bold.otf",
- "fontsize": "22px",
- "color": "#333"
- }]
- }
- }
- }
- },
- {
- "path": "pages/home/detail",
- "style": {
- "navigationBarTitleText": "详情",
- "enablePullDownRefresh": false,
- "navigationBarBackgroundColor": "#fff",
- "app-plus": {
- "bounce": "vertical",
- "titleNview": {
- "buttons": [{
- "text": "\ue534",
- "title": "关闭小程序",
- "fontSrc": "/static/font/DINPro-Bold.otf",
- "fontsize": "22px",
- "color": "#333"
- }]
- }
- }
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "",
- "navigationBarBackgroundColor": "#fff",
- "backgroundColor": "#F7F7F7",
- "usingComponents": {
- "TreeNomal": "/components/tree-nomal/tree-nomal"
- }
- },
- "tabBar": {
- "color": "#AFB8C3",
- "selectedColor": "#5086FA",
- "borderStyle": "white",
- "backgroundColor": "#ffffff",
- "list": []
- }
- }
|