123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/tabbar/index/index",
- "style": {
- "navigationBarTitleText": "首页",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/tabbar/index/webview",
- "style": {
- "navigationBarTitleText": "罗山政务服务网",
- "enablePullDownRefresh": false,
- "navigationStyle": "default"
- }
- },{
- "path": "pages/tabbar/user/user",
- "style": {
- "navigationBarTitleText": "我的",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/tabbar/user/userMessage",
- "style": {
- "navigationBarTitleText": "用户信息",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/employed/user/newMessage",
- "style": {
- "navigationBarTitleText": "消息",
- "enablePullDownRefresh": true
- }
- }, {
- "path": "pages/employed/user/newDetails",
- "style": {
- "navigationBarTitleText": "消息详情",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/tabbar/user/myComplaint/myComplaint",
- "style": {
- "navigationBarTitleText": "我的投诉",
- "enablePullDownRefresh": true
- }
- }, {
- "path": "pages/tabbar/user/myComplaint/wantComplaint",
- "style": {
- "navigationBarTitleText": "我要投诉",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/tabbar/user/myComplaint/complaintDetails",
- "style": {
- "navigationBarTitleText": "投诉详情",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/tabbar/user/myComplaint/satisfaction",
- "style": {
- "navigationBarTitleText": "满意度评价",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/tabbar/index/announcementAll",
- "style": {
- "navigationBarTitleText": "新闻列表",
- "enablePullDownRefresh": true,
- "navigationStyle": "default"
- }
- }, {
- "path": "pages/info/info",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
-
- }
- }, {
- "path": "pages/detailPage/detailPage",
- "style": {
- "navigationBarTitleText": "详情",
- "enablePullDownRefresh": false
- }
- }
- ],
- "globalStyle": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#D1CBCB",
- "selectedColor": "#DE2E27",
- "borderStyle": "white",
- "backgroundColor": "#fff",
- "list": [{
- "pagePath": "pages/tabbar/index/index",
- "iconPath": "static/tabbar/home.png",
- "selectedIconPath": "static/tabbar/home-active.png",
- "text": "首页"
- }, {
- "pagePath": "pages/tabbar/user/user",
- "iconPath": "static/tabbar/user.png",
- "selectedIconPath": "static/tabbar/user-active.png",
- "text": "我的"
- }]
- }
- }
|