|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- {
- "easycom": {
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path" : "pages/login/index",
- "style" :
- {
- "navigationBarTitleText": "登录"
- }
-
- },
-
- {
- "path": "pages/details/index",
- "style": {
- "navigationBarTitleText": "登记伤口类型"
- }
- },
- {
- "path": "pages/details/result",
- "style": {
- "navigationBarTitleText": "测评结果",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/details/records",
- "style": {
- "navigationBarTitleText": "历史报告"
- }
- },
- {
- "path": "pages/skin-assessment/croppedImage",
- "style": {
- "navigationBarTitleText": "选择伤疤区域"
- }
- },
- {
- "path": "pages/skin-assessment/photograph",
- "style": {
- "navigationBarTitleText": "伤疤拍照"
- }
- },
-
- {
- "path": "pages/skin-assessment/photoProcess",
- "style": {
- "navigationBarTitleText": "重新拍照"
- }
- },
-
- {
- "path": "pages/user/mine",
- "style": {
- "navigationBarTitleText": "裁剪demo"
- }
- },
- {
- "path": "pages/user/info",
- "style": {
- "navigationBarTitleText": "资料编辑"
- }
- }
- ],
- "tabBar": {
- "color": "#fff",
- "selectedColor": "#F3D4A3",
- "backgroundColor": "#000",
- "list": [
- {
- "iconPath": "/static/tabbar/home_default.png",
- "selectedIconPath": "./static/tabbar/home_active.png",
- "pagePath": "pages/index/index",
- "text": "首页"
- },
- {
- "iconPath": "./static/tabbar/mine_default.png",
- "selectedIconPath": "./static/tabbar/mine_active.png",
- "pagePath": "pages/details/records",
- "text": "我的"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- }
- }
|