康巴易测肤/伤疤uniapp小程序类
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1 місяць тому
1234567891011121314151617181920212223242526272829303132333435363738
  1. ```flow
  2. st=>start: 开始跳转
  3. e=>end: 跳转结束
  4. platform=>operation: 平台选择
  5. H5=>condition: H5
  6. APP=>condition: APP
  7. applets=>condition: 小程序
  8. routerBeforeEach=>operation: routerBeforeEach
  9. lock=>condition: 跳转加锁
  10. runH5=>operation: H5
  11. runAPP=>parallel: APP
  12. runapplets=>parallel: 小程序
  13. beforeRouteLeave=>condition: beforeRouteLeave
  14. beforeEach=>condition: beforeEach
  15. beforeEnter=>condition: beforeEnter
  16. afterEach=>operation: afterEach
  17. runJump=>condition: 执行跳转成功或者失败
  18. stopJump=>operation: next(false) 停止跳转
  19. errorJump=>operation: 跳转失败
  20. routerErrorEach=>operation: routerErrorEach
  21. routerAfterEach=>operation: routerAfterEach
  22. st->platform(right)->applets(yes)->routerBeforeEach
  23. applets(no)->APP(yes)->routerBeforeEach
  24. APP(no)->H5(yes)->routerBeforeEach
  25. routerBeforeEach->lock(yes)->runAPP(path1)->runapplets(path1)->beforeRouteLeave
  26. lock(no)->runH5->beforeRouteLeave(no)->stopJump->routerErrorEach
  27. beforeRouteLeave(yes)->beforeEach(no)->stopJump->routerErrorEach
  28. beforeEach(yes)->beforeEnter(no)->stopJump->routerErrorEach
  29. beforeEnter(yes)->runJump(no)->errorJump->routerErrorEach
  30. runJump(yes)->afterEach->routerAfterEach
  31. routerAfterEach->e
  32. routerErrorEach->e
  33. ```