pages.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. "navigationStyle":"custom"
  11. }
  12. }
  13. ,{
  14. "path" : "pages/enterprise-reg/enterprise-reg",
  15. "style" :
  16. {
  17. "navigationBarTitleText": "企业注册",
  18. "navigationStyle":"custom"
  19. }
  20. }
  21. ,{
  22. "path" : "pages/login/login",
  23. "style" :
  24. {
  25. "navigationBarTitleText": "登录",
  26. "navigationStyle":"custom"
  27. }
  28. }
  29. ,{
  30. "path" : "pages/business-entering/business-entering",
  31. "style" :
  32. {
  33. "navigationBarTitleText": "业务录入",
  34. "navigationStyle":"custom"
  35. }
  36. }
  37. ,{
  38. "path" : "pages/business-order/business-order",
  39. "style" :
  40. {
  41. "navigationBarTitleText": "业务订单",
  42. "navigationStyle":"custom"
  43. }
  44. }
  45. ,{
  46. "path" : "pages/customer-management/customer-management",
  47. "style" :
  48. {
  49. "navigationBarTitleText": "客户管理",
  50. "navigationStyle":"custom"
  51. }
  52. }
  53. ,{
  54. "path" : "pages/inout-record/inout-record",
  55. "style" :
  56. {
  57. "navigationBarTitleText": "出入记录",
  58. "navigationStyle":"custom"
  59. }
  60. }
  61. ,{
  62. "path" : "pages/choose-business/choose-business",
  63. "style" :
  64. {
  65. "navigationBarTitleText": "选择业务",
  66. "enablePullDownRefresh": false,
  67. "navigationStyle":"custom"
  68. }
  69. },{
  70. "path" : "pages/ok/registerSuccess",
  71. "style" :
  72. {
  73. "navigationBarTitleText": "注册成功",
  74. "enablePullDownRefresh": false,
  75. "navigationStyle":"custom"
  76. }
  77. }
  78. ],
  79. "globalStyle": {
  80. "navigationBarTextStyle": "black",
  81. "navigationBarTitleText": "uni-app",
  82. "navigationBarBackgroundColor": "#F8F8F8",
  83. "backgroundColor": "#F8F8F8"
  84. }
  85. }