123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- //登录
- "path": "pages/login/login",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- //上传市政项目
- "path": "pages/noLogin/uploadProject",
- "style": {
- "navigationStyle": "custom"
- }
- },
-
- {
- //项目类型
- "path": "pages/noLogin/typeList",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- //历史施工(详情页)
- "path": "pages/historyConstruction/historyDetail",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- //修改
- "path": "pages/historyConstruction/updateInfo",
- "style": {
- "navigationBarTitleText":"修改"
- }
- },
- {
- //市政项目
- "path": "pages/noLogin/cityProject",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- //安检
- "path": "pages/noLogin/data",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- //安检
- "path": "pages/noLogin/list",
- "style": {
- "navigationBarTitleText":"列表",
- "enablePullDownRefresh":true//开启下拉刷新
- }
- },
-
- {
- //公告详情
- "path": "pages/notice/noticeDetail",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- //公告列表
- "path": "pages/notice/noticeList",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- //阀管施工
- "path": "pages/cityConstrution/cityConstrution",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- //历史施工
- "path": "pages/historyConstruction/historyConstruction",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- //服务说明
- "path": "pages/service/service",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- //关于我们
- "path": "pages/aboutme/aboutme",
- "style": {
- "navigationStyle": "custom"
- }
- },
-
- {
- //首页
- "path": "pages/index/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- //统计图页面
- "path":"pages/chart/chart",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- //汇总统计图
- "path":"pages/chart/chartAll",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- //统计图
- "path":"pages/chart/chartDetail",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- //统计图
- "path":"pages/chart/newchartDetail",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- //工程管理
- "path":"pages/chart/chartList",
- "style": {
- "navigationBarTitleText":"工程管理"
- }
- },
- {
- //工程管理
- "path":"pages/chart/details",
- "style": {
- "navigationBarTitleText":"详情"
- }
- },
- { //安检
- "path":"pages/noLogin/repair",
- "style": {
- "navigationStyle": "custom"
- }
- },
- { //安检
- "path":"pages/noLogin/My",
- "style": {
- "navigationStyle": "custom"
- }
- },
- { //安检(查看照片)
- "path":"pages/noLogin/Myphoto",
- "style": {
- "navigationStyle": "custom"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "list": [{
- "pagePath": "pages/index/index",
- "text": "首页",
- "iconPath": "static/icon/logo.png",
- "selectedIconPath": "static/icon/logo.png"
- },
- {
- "pagePath": "pages/historyConstruction/historyConstruction",
- "text": "施工",
- "iconPath": "static/icon/constructions.png",
- "selectedIconPath": "static/icon/constructions.png"
- },
- // {
- // "pagePath": "pages/chart/chart",
- // "text": "统计图",
- // "iconPath": "static/icon/chart.png",
- // "selectedIconPath": "static/icon/chart.png"
- // },
- {
- "pagePath": "pages/chart/chartAll",
- "text": "统计",
- "iconPath": "static/icon/chart.png",
- "selectedIconPath": "static/icon/chart.png"
- }
- ]
- },
- "condition" : { //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [
- {
- "name": "", //模式名称
- "path": "", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }
- ]
- }
- }
|