my-swiper.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. if (item.skipType === 2){//跳转到文章链接
  60. uni.navigateTo({
  61. url: '/pages/groupbuying/article/article?id='+item.dataId
  62. });
  63. }
  64. if (item.skipType === 3){ //跳转到团购详情链接
  65. uni.navigateTo({
  66. url: item.targetUrl
  67. });
  68. }
  69. },
  70. getAdsList(type){
  71. getAdsList({
  72. type : type
  73. }).then(res => {
  74. this.list=res.data;
  75. })
  76. }
  77. }
  78. }
  79. </script>
  80. <style>
  81. .uni-margin-wrap {
  82. width: 750rpx;
  83. height: 420rpx;
  84. }
  85. .swiper {
  86. height: 420rpx;
  87. }
  88. .image{
  89. width: 100%;
  90. height: 100%;
  91. }
  92. .content{
  93. width: 750rpx;
  94. height: 420rpx;
  95. position: relative;
  96. }
  97. .number-box{
  98. background-color: rgba(0, 0, 0, 0.3);
  99. border-radius: 6px;
  100. padding: 2rpx 12rpx 2rpx 12rpx;
  101. position: absolute;
  102. left: 10rpx;
  103. top: 10rpx;
  104. }
  105. .number{
  106. overflow-wrap: break-word;
  107. color: rgba(255, 255, 255, 1);
  108. font-size: 20rpx;
  109. font-weight: NaN;
  110. text-align: center;
  111. white-space: nowrap;
  112. line-height: 28rpx;
  113. }
  114. .bord{
  115. border: 1px solid red;
  116. }
  117. </style>