Advert.vue 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <template>
  2. <div class="advert-slide">
  3. <div class="swiper-container container" v-swiper:swiper="swiperOption">
  4. <div class="swiper-wrapper">
  5. <div class="swiper-slide" v-for="(advert, index) in adverts" :key="index">
  6. <a :href="advert.url">
  7. <img :src="advert.img" target="_blank">
  8. </a>
  9. </div>
  10. </div>
  11. </div>
  12. </div>
  13. </template>
  14. <script>
  15. export default {
  16. name: 'advert',
  17. data () {
  18. return {
  19. swiperOption: {
  20. autoplay: 2500,
  21. slidesPerView: 7,
  22. spaceBetween: 20
  23. },
  24. adverts: [{
  25. url: 'https://mall.usoftchina.com/store/worldshine',
  26. img: '/images/adverts/1.jpg'
  27. }, {
  28. url: 'https://mall.usoftchina.com/store/d2dd2e6fb752434396c58448a91ac85b',
  29. img: 'https://dfs.ubtob.com/group1/M00/62/22/CgpkyFp6yqCAOX_SAAAXCY1rKvQ451.jpg'
  30. }, {
  31. url: 'https://mall.usoftchina.com/store/compa',
  32. img: '/images/adverts/3.jpg'
  33. }, {
  34. url: 'https://mall.usoftchina.com/store/9e8d68432e8a43b59e10f623a4946378',
  35. img: 'https://dfs.ubtob.com/group1/M00/61/FD/CgpkyFpgcaiAYBj8AAA4_ERd5ds479.png'
  36. }, {
  37. url: 'https://mall.usoftchina.com/store/d53e5fea4f5c4432802e3e3673985029',
  38. img: 'https://dfs.ubtob.com/group1/M00/88/2D/CgpkyFqvflSAJkX4AAA-iLkJ9wM609.png'
  39. }, {
  40. url: 'https://mall.usoftchina.com/store/1669779299694c53a898897f87460ec7',
  41. img: 'https://dfs.ubtob.com/group1/M00/2E/BD/CgpkyFlsFsKAJws_AAAcqAKgSlI228.png'
  42. }, {
  43. url: 'https://mall.usoftchina.com/store/ff8d0fe60f5e4fcf8cdccce1ca71ec3d',
  44. img: 'https://dfs.ubtob.com/group1/M00/87/FB/CgpkyFqflhaAdMC0AADLt1xhsxk699.jpg'
  45. }, {
  46. url: 'https://mall.usoftchina.com/store/bf0090954cfd4f96bb2ff47f3ed6eb09',
  47. img: 'https://dfs.ubtob.com/group1/M00/88/59/CgpkyFramdyAA_EaAABuHeBKg18053.jpg'
  48. }, {
  49. url: 'https://mall.usoftchina.com/store/yjycoin',
  50. img: '/images/adverts/9.jpg'
  51. }, {
  52. url: 'https://mall.usoftchina.com/store/d3567635164a4811a5ba9e9adbcdcc87',
  53. img: '/images/adverts/10.jpg'
  54. }, {
  55. url: 'https://mall.usoftchina.com/store/winsen',
  56. img: '/images/adverts/11.jpg'
  57. }]
  58. }
  59. }
  60. }
  61. </script>
  62. <style lang="scss" scoped>
  63. @import '~assets/scss/variables';
  64. .advert-slide {
  65. text-align: center;
  66. /*margin-bottom: $xlg-pad;*/
  67. .swiper-container {
  68. height: 100px;
  69. background-color: $grey-bg;
  70. overflow: hidden;
  71. .swiper-wrapper {
  72. padding: 5px 0;
  73. .swiper-slide {
  74. img {
  75. width: 161px;
  76. height: 90px;
  77. }
  78. }
  79. }
  80. }
  81. }
  82. </style>