index.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <template>
  2. <view class="swiper">
  3. <u-swiper :list="swiper_list" keyName="image" height="300rpx" radius="12rpx" @change="e => swiper_current = e.current" @click="swiperclick">
  4. <view slot="indicator" class="indicator">
  5. <view class="indicator__dot" v-for="(item, index) in swiper_list" :key="index"
  6. :class="[index === swiper_current && 'indicator__dot--active']">
  7. </view>
  8. </view>
  9. </u-swiper>
  10. </view>
  11. </template>
  12. <script>
  13. import $api from '@/static/js/api.js'
  14. export default {
  15. props: {
  16. type: {
  17. typeof: String,
  18. default: ''
  19. }
  20. },
  21. data() {
  22. return {
  23. swiper_list: [],
  24. swiper_current: 0,
  25. }
  26. },
  27. mounted() {
  28. this.getlist()
  29. },
  30. onLoad() {
  31. },
  32. onShow() {
  33. },
  34. onPullDownRefresh() {
  35. },
  36. onReachBottom() {
  37. },
  38. methods: {
  39. getlist() {
  40. var _this = this
  41. $api.req({
  42. url: 'banner',
  43. method: 'GET',
  44. data: {
  45. type: this.type,
  46. limit: 5
  47. }
  48. }, function(res) {
  49. if(res.code == 10000) {
  50. _this.swiper_list = res.data
  51. }
  52. })
  53. },
  54. swiperclick(e) {
  55. var data = this.swiper_list[e]
  56. if(data.is_jump == 1) {
  57. if(data.jump_type == 'external') {
  58. window.location.href = data.jump_url
  59. } else {
  60. uni.navigateTo({
  61. url: data.jump_url
  62. })
  63. }
  64. }
  65. },
  66. }
  67. }
  68. </script>
  69. <style lang="scss">
  70. </style>