1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/index",
- "style": {
- "navigationBarTitleText": "登录",
- "navigationStyle": "custom"
- }
- }, {
- "path": "pages/reg/index",
- "style": {
- "navigationBarTitleText": "现场问题记录单"
- }
- },{
- "path": "pages/reg/duty-list",
- "style": {
- "navigationBarTitleText": "现场问题记录单列表"
- }
- },{
- "path": "pages/reg/reg-detail",
- "style": {
- "navigationBarTitleText": "现场问题记录单详情"
- }
- },{
- "path": "pages/feature/list",
- "style": {
- "navigationBarTitleText": "功能列表",
- "enablePullDownRefresh": false
- }
- },{
- "path": "pages/me/index",
- "style": {
- "navigationBarTitleText": "个人中心",
- "enablePullDownRefresh": false
- }
- },{
- "path": "pages/me/modify-password",
- "style": {
- "navigationBarTitleText": "修改密码",
- "enablePullDownRefresh": false
- }
- }
- ],
- "tabBar": {
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [
- {
- "pagePath": "pages/reg/duty-list",
- "iconPath":"static/icon/home.png",
- "selectedIconPath":"static/icon/homefill.png",
- "text":"首页"
- },
- {
- "pagePath": "pages/feature/list",
- "iconPath":"static/icon/grid.png",
- "selectedIconPath":"static/icon/layout-grid-fill.png",
- "text":"工作台"
- },
- {
- "pagePath": "pages/me/index",
- "iconPath":"static/icon/account.png",
- "selectedIconPath":"static/icon/accountfilling.png",
- "text":"个人中心"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- }
- }
|