鸿宇研学生前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
805 B

  1. <template>
  2. <view class="swiper">
  3. <uv-swiper
  4. :list="bannerList" keyName="image"
  5. indicator
  6. indicatorMode="dot"
  7. indicatorInactiveColor="rgba(255, 255, 255, 0.7)"
  8. height="382rpx"
  9. ></uv-swiper>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. bannerList: [],
  17. }
  18. },
  19. created() {
  20. this.getData()
  21. },
  22. methods: {
  23. getData() {
  24. // todo: fetch
  25. this.bannerList = [
  26. {
  27. image: '/static/image/bg.png',
  28. },
  29. {
  30. image: '/static/image/bg.png',
  31. },
  32. {
  33. image: '/static/image/bg.png',
  34. },
  35. ]
  36. },
  37. },
  38. }
  39. </script>
  40. <style scoped lang="scss">
  41. .swiper {
  42. border-radius: 40rpx;
  43. overflow: hidden;
  44. }
  45. </style>