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,
- "navigationStyle": "custom"
- }
- }, {
- "path": "pages/tabbar/user/user",
- "style": {
- "navigationBarTitleText": "我的",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- }, {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "登录",
- "enablePullDownRefresh": false
- }
- }
- , {
- "path": "pages/command/command",
- "style": {
- "navigationBarTitleText": "指挥交办",
- "enablePullDownRefresh": true
- }
- }, {
- "path": "pages/command/commandDetails",
- "style": {
- "navigationBarTitleText": "指挥详情",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/command/application",
- "style": {
- "navigationBarTitleText": "申请协助",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/command/finish",
- "style": {
- "navigationBarTitleText": "完结事件",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/throughTrain/throughTrain",
- "style": {
- "navigationBarTitleText": "社情民意直通车",
- "enablePullDownRefresh": true
- }
- }, {
- "path": "pages/throughTrain/throughTrainDetails",
- "style": {
- "navigationBarTitleText": "事件详情",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/info/info",
- "style": {
- "navigationBarTitleText": "消息通知",
- "enablePullDownRefresh": true
- }
- }, {
- "path": "pages/info/infoDetails",
- "style": {
- "navigationBarTitleText": "消息详情",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/alterPassword/alterPassword",
- "style": {
- "navigationBarTitleText": "修改密码",
- "enablePullDownRefresh": false
- }
- }
- ,{
- "path" : "pages/agreement/agreement",
- "style" :
- {
- "navigationBarTitleText": "协议",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "爱罗山",
- "navigationBarBackgroundColor": "#f7f7f7",
- "backgroundColor": "#f7f7f7"
- },
- "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": "我的"
- }]
- }
- }
|