BeeBack.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <template>
  2. <view class="back-container" @click="handleBack">
  3. <slot></slot>
  4. </view>
  5. </template>
  6. <script>
  7. // import { tabbarList } from '../../common/globalData'
  8. export default {
  9. name: 'BeeBack',
  10. props: {
  11. url: {
  12. type: String,
  13. default: ''
  14. },
  15. tab: {
  16. type: String,
  17. default: ''
  18. },
  19. redirect: {
  20. type: String,
  21. default: ''
  22. },
  23. successCb: {
  24. type: Function,
  25. default: () => {}
  26. }
  27. },
  28. methods: {
  29. handleBack() {
  30. if (this.tab) {
  31. this.$switchTab(this.url)
  32. } else if (this.redirect) {
  33. uni.redirectTo({
  34. url: this.url
  35. })
  36. } else if (this.url) {
  37. uni.navigateTo({
  38. url: this.url
  39. })
  40. }
  41. const pages = getCurrentPages()
  42. const pagesLength = pages.length
  43. let backLevel = 1
  44. if (pages.length === 1) {
  45. this.$switchTab('/pages/index/index')
  46. } else {
  47. const lastUrl = pages[pagesLength - 1].route + this.getParams(pages[pagesLength - 1].options)
  48. for (
  49. let index = pages.length - 1;
  50. index > 0 && index < pages.length;
  51. index--
  52. ) {
  53. if (pages[index].route + this.getParams(pages[index].options) === lastUrl) {
  54. backLevel += 1
  55. } else {
  56. break
  57. }
  58. }
  59. uni.navigateBack({
  60. delta: backLevel - 1,
  61. success: this.successCb
  62. })
  63. }
  64. },
  65. getParams(options) {
  66. return JSON.stringify(options)
  67. }
  68. }
  69. }
  70. </script>