Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

pages.json 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. // 如果您是通过uni_modules形式引入uView,可以忽略此配置
  3. "easycom": {
  4. "autoscan": true,
  5. "^u-(.*)": "@/uni_modules/vk-uview-ui/components/u-$1/u-$1.vue"
  6. },
  7. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  8. {
  9. "path": "pages/productSelection/productSelection"
  10. },
  11. {
  12. "path": "pages/basicInformation/basicInformation"
  13. },
  14. {
  15. "path": "pages/mailingAddress/mailingAddress"
  16. },
  17. {
  18. "path": "pages/userInfoUploading/userInfoUploading"
  19. },
  20. {
  21. "path": "pages/drivingLicense/drivingLicense"
  22. },
  23. {
  24. "path": "pages/payment/payment"
  25. },
  26. {
  27. "path": "pages/payment/paymentSucess"
  28. },
  29. {
  30. "path": "pages/sigManage/sigManage"
  31. }
  32. ],
  33. "eslintConfig": {
  34. "parser": "babel-eslint"
  35. },
  36. "globalStyle": {
  37. "navigationBarTextStyle": "black",
  38. "navigationBarTitleText": "uni-app",
  39. "navigationBarBackgroundColor": "#F8F8F8",
  40. "backgroundColor": "#F8F8F8",
  41. "navigationStyle": "custom",
  42. "navigationBarTitleText": "ETC申办",
  43. "app-plus": {
  44. "titleView": false
  45. }
  46. },
  47. "uniIdRouter": {},
  48. "condition": { //模式配置,仅开发期间生效
  49. "current": 0, //当前激活的模式(list 的索引项)
  50. "list": [{
  51. "name": "app", //模式名称
  52. "path": "pages/productSelection/productSelection", //启动页面,必选
  53. "query": "" //启动参数,在页面的onLoad函数里面得到
  54. }]
  55. }
  56. }