my-swiper.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <template>
  2. <view>
  3. <view class="uni-margin-wrap" v-if="list.length>0">
  4. <swiper class="swiper" circular :indicator-dots="indicatorDots" :autoplay="autoplay" :interval="interval">
  5. <swiper-item v-for="(item,index) in list" :key="index">
  6. <view class="content " @click="clickImg(item)">
  7. <image class="image " :src="item.imageUrl"></image>
  8. <view class="number-box">
  9. <text class="number">{{ index + 1 }}/{{ list.length }}</text>
  10. </view>
  11. </view>
  12. </swiper-item>
  13. </swiper>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. import {getAdsList} from '@/api/home.js';
  19. export default {
  20. name: "my-swiper",
  21. props: {
  22. autoplay: {
  23. type: Boolean,
  24. default () {
  25. return true
  26. },
  27. },
  28. interval: {
  29. type: Number,
  30. default () {
  31. return 3000
  32. },
  33. },
  34. indicatorDots: { //是否显示面板指示点
  35. type: Boolean,
  36. default () {
  37. return false
  38. },
  39. },
  40. type: {
  41. type: Number,
  42. default () {
  43. return -1
  44. },
  45. },
  46. },
  47. data() {
  48. return {
  49. list:[],
  50. };
  51. },
  52. created(){
  53. this.getAdsList(this.type);
  54. },
  55. methods:{
  56. clickImg(item){
  57. console.log("点击了广告图片",item)
  58. //跳转到某个页面,路劲由后端配置
  59. // uni.redirectTo({
  60. // url: item.targetUrl
  61. // });
  62. },
  63. getAdsList(type){
  64. console.log("+++++++++++++++++++++加载广告+++++++++++++++++++++")
  65. getAdsList({
  66. type : type
  67. }).then(res => {
  68. this.list=res.data;
  69. })
  70. }
  71. }
  72. }
  73. </script>
  74. <style>
  75. .uni-margin-wrap {
  76. width: 750rpx;
  77. height: 360rpx;
  78. }
  79. .swiper {
  80. height: 360rpx;
  81. }
  82. .image{
  83. width: 100%;
  84. height: 100%;
  85. }
  86. .content{
  87. width: 750rpx;
  88. height: 360rpx;
  89. position: relative;
  90. }
  91. .number-box{
  92. background-color: rgba(0, 0, 0, 0.3);
  93. border-radius: 6px;
  94. padding: 2rpx 12rpx 2rpx 12rpx;
  95. position: absolute;
  96. left: 10rpx;
  97. top: 10rpx;
  98. }
  99. .number{
  100. overflow-wrap: break-word;
  101. color: rgba(255, 255, 255, 1);
  102. font-size: 20rpx;
  103. font-weight: NaN;
  104. text-align: center;
  105. white-space: nowrap;
  106. line-height: 28rpx;
  107. }
  108. .bord{
  109. border: 1px solid red;
  110. }
  111. </style>