index.vue 1.4 KB

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