index.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <view class='product-bg'>
  3. <u-swiper height="180" @click="openImg" :list="imgUrls" @change="e => currentNum = e.current" :autoplay="false"
  4. indicatorStyle=" position: absolute;top: 10px !important;left: 10px !important;">
  5. <view slot="indicator" class="indicator-num">
  6. <text class="indicator-num__text">{{ currentNum + 1 }}/{{ imgUrls.length }}</text>
  7. </view>
  8. </u-swiper>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. props: {
  14. imgUrls: {
  15. type: Array,
  16. default: function () {
  17. return [];
  18. }
  19. },
  20. videoline: {
  21. type: String,
  22. value: ""
  23. }
  24. },
  25. data () {
  26. return {
  27. swiperTabList: ['https://yj-bucket-67ff.obs.cn-southwest-2.myhuaweicloud.com/upload/20230515/948f6d74dd7ccbcb3fc4c0d1e1282f9e.jpg', 'https://yj-bucket-67ff.obs.cn-southwest-2.myhuaweicloud.com/upload/20230522/6cf788d4130dd00c7a5ace07f302e99a.jpg'],
  28. indicatorDots: true,
  29. currentNum: 0,
  30. circular: true,
  31. autoplay: true,
  32. interval: 3000,
  33. duration: 500,
  34. currents: "1",
  35. controls: true,
  36. isPlay: true,
  37. videoContext: ''
  38. };
  39. },
  40. mounted () {
  41. console.log(this.imgUrls, 'imgUrls..........');
  42. if (this.videoline) {
  43. this.imgUrls.shift()
  44. }
  45. // #ifndef APP-PLUS
  46. this.videoContext = uni.createVideoContext('myVideo', this);
  47. // #endif
  48. },
  49. methods: {
  50. openImg (index) {
  51. uni.previewImage({
  52. current: index,
  53. urls: this.imgUrls,
  54. indicator: 'number',
  55. loop: true
  56. });
  57. },
  58. videoPause (e) {
  59. // #ifdef APP-PLUS
  60. this.isPlay = true
  61. this.autoplay = true
  62. // #endif
  63. },
  64. bindPause: function () {
  65. // #ifndef APP-PLUS
  66. this.videoContext.play();
  67. this.$set(this, 'controls', false)
  68. this.autoplay = false
  69. // #endif
  70. // #ifdef APP-PLUS
  71. this.isPlay = false
  72. this.videoContext = uni.createVideoContext('myVideo', this);
  73. this.videoContext.play();
  74. // #endif
  75. },
  76. change: function (e) {
  77. this.$set(this, 'currents', e.detail.current + 1);
  78. }
  79. }
  80. }
  81. </script>
  82. <style scoped lang="scss">
  83. .indicator {
  84. @include flex(row);
  85. justify-content: center;
  86. &__dot {
  87. height: 6px;
  88. width: 6px;
  89. border-radius: 100px;
  90. background-color: rgba(255, 255, 255, 0.35);
  91. margin: 0 5px;
  92. transition: background-color 0.3s;
  93. &--active {
  94. background-color: #ffffff;
  95. }
  96. }
  97. }
  98. .indicator-num {
  99. padding: 2px 0;
  100. background-color: rgba(0, 0, 0, 0.35);
  101. border-radius: 100px;
  102. width: 35px;
  103. @include flex;
  104. justify-content: center;
  105. &__text {
  106. color: #FFFFFF;
  107. font-size: 12px;
  108. }
  109. }
  110. </style>