JBack.vue 682 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view class="j-back-container">
  3. <image
  4. :style="{
  5. width: width * 1 + 'rpx',
  6. height: height * 1 + 'rpx'
  7. }" :src="dark
  8. ? require('../../static/images/store/chevron-states.png')
  9. : require('../../static/images/common/back.png')
  10. " mode="" @click="handleBack"
  11. />
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. name: 'JBack',
  17. props: {
  18. tabbar: {
  19. type: String
  20. },
  21. width: {
  22. type: [Number, String],
  23. default: 16
  24. },
  25. height: {
  26. type: [Number, String],
  27. default: 28
  28. },
  29. dark: Boolean
  30. },
  31. methods: {
  32. handleBack() {
  33. if (this.tabbar) {
  34. this.$switchTab(this.tabbar)
  35. return
  36. }
  37. uni.navigateBack()
  38. }
  39. }
  40. }
  41. </script>