123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- {
- "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/login/index",
- "style": {
- "navigationBarTitleText": "登录",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/login/Forget",
- "style": {
- "navigationBarTitleText": "找回密码",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/tabbar/task/index",
- "style": {
- "navigationBarTitleText": "任务",
- "navigationStyle": "custom"
- }
- }, {
- "path": "pages/tabbar/exercise/index",
- "style": {
- "navigationBarTitleText": "测试",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/tabbar/person/index",
- "style": {
- "navigationBarTitleText": "个人中心",
- "navigationStyle": "custom"
- }
- }, {
- "path": "pages/answer_question/answer/index",
- "style": {
- "navigationStyle": "custom",
- "app-plus": {
- "bounce": "none"
- },
- "disableSwipeBack": true
- }
- },
- {
- "path": "pages/404",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/common/WebViewPreview",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/common/ViewCourseware",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/common/AnswerReport",
- "style": {
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/tabbar/task/TaskDetails",
- "style": {
- "navigationStyle": "custom"
- }
- }
- ],
- "tabBar": {
- "color": "#8C8C8C",
- "selectedColor": "#306EFF",
- "backgroundColor": "#ffffff",
- "borderColor": "white",
- "height": "120rpx",
- "fontSize": "20rpx",
- "list": [{
- "pagePath": "pages/tabbar/task/index",
- "text": "任务",
- "iconPath": "static/tabbar/task_black.png",
- "selectedIconPath": "static/tabbar/task_selected.png"
- }, {
- "pagePath": "pages/tabbar/exercise/index",
- "text": "测试",
- "iconPath": "static/tabbar/exercise_black.png",
- "selectedIconPath": "static/tabbar/exercise_selected.png"
- }, {
- "pagePath": "pages/tabbar/person/index",
- "text": "我的",
- "iconPath": "static/tabbar/user_black.png",
- "selectedIconPath": "static/tabbar/user_selected.png"
- }]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "onReachBottomDistance": 100,
- "disableSwipeBack": true
- },
- "uniIdRouter": {
- "loginPage": "pages/login/index"
- }
- }
|