| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- {
- "easycom": {
- "autoscan": true,
- "custom": {
- // uni-ui 规则如下配置
- "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue"
- }
- },
- "pages": [
- //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/news/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/mine-page/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/login/index",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/reset-password/index",
- "style": {
- "navigationStyle": "custom"
- }
- }
- ],
- "subPackages": [
- {
- "root": "pages-common",
- "pages": [
- {
- "path": "signature/index",
- "style": {
- "navigationBarTitleText": "签名",
- "navigationStyle": "default"
- }
- }
- ]
- },
- {
- "root": "pages-task",
- "pages": [
- {
- "path": "task-entry-page/index",
- "style": {
- "navigationBarTitleText": "任务录入",
- "navigationStyle": "default"
- }
- }
- ]
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#B5B5B5",
- "selectedColor": "#3fa3f1",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [
- {
- "pagePath": "pages/index/index",
- "iconPath": "static/images/tabbar/work.png",
- "selectedIconPath": "static/images/tabbar/workAct.png",
- "text": "工作台"
- },
- {
- "pagePath": "pages/news/index",
- "iconPath": "static/images/tabbar/news.png",
- "selectedIconPath": "static/images/tabbar/newsAct.png",
- "text": "资讯"
- },
- {
- "pagePath": "pages/mine-page/index",
- "iconPath": "static/images/tabbar/mine.png",
- "selectedIconPath": "static/images/tabbar/mineAct.png",
- "text": "我的"
- }
- ]
- }
- }
|