康巴易测肤/伤疤uniapp小程序类
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 line
2.0KB

  1. {
  2. "easycom": {
  3. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/index/index",
  8. "style": {
  9. "navigationBarTitleText": "首页"
  10. }
  11. },
  12. {
  13. "path" : "pages/login/index",
  14. "style" :
  15. {
  16. "navigationBarTitleText": "登录"
  17. }
  18. },
  19. {
  20. "path": "pages/details/index",
  21. "style": {
  22. "navigationBarTitleText": "登记伤口类型"
  23. }
  24. },
  25. {
  26. "path": "pages/details/result",
  27. "style": {
  28. "navigationBarTitleText": "测评结果"
  29. }
  30. },
  31. {
  32. "path": "pages/details/records",
  33. "style": {
  34. "navigationBarTitleText": "历史报告"
  35. }
  36. },
  37. {
  38. "path": "pages/skin-assessment/croppedImage",
  39. "style": {
  40. "navigationBarTitleText": "选择伤疤区域"
  41. }
  42. },
  43. {
  44. "path": "pages/skin-assessment/photograph",
  45. "style": {
  46. "navigationBarTitleText": "伤疤拍照"
  47. }
  48. },
  49. {
  50. "path": "pages/skin-assessment/photoProcess",
  51. "style": {
  52. "navigationBarTitleText": "重新拍照"
  53. }
  54. },
  55. {
  56. "path": "pages/user/mine",
  57. "style": {
  58. "navigationBarTitleText": "我的"
  59. }
  60. },
  61. {
  62. "path": "pages/user/info",
  63. "style": {
  64. "navigationBarTitleText": "资料编辑"
  65. }
  66. }
  67. ],
  68. "tabBar": {
  69. "color": "#fff",
  70. "selectedColor": "#F3D4A3",
  71. "backgroundColor": "#000",
  72. "list": [
  73. {
  74. "iconPath": "/static/tabbar/home_default.png",
  75. "selectedIconPath": "./static/tabbar/home_active.png",
  76. "pagePath": "pages/index/index",
  77. "text": "首页"
  78. },
  79. {
  80. "iconPath": "./static/tabbar/mine_default.png",
  81. "selectedIconPath": "./static/tabbar/mine_active.png",
  82. "pagePath": "pages/details/records",
  83. "text": "我的"
  84. }
  85. ]
  86. },
  87. "globalStyle": {
  88. "navigationBarTextStyle": "black",
  89. "navigationBarTitleText": "uni-app",
  90. "navigationBarBackgroundColor": "#F8F8F8",
  91. "backgroundColor": "#F8F8F8"
  92. }
  93. }