index.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <template>
  2. <view class='product-bg'>
  3. <u-swiper :height="h" :list="imgUrls" @change="e => currentNum = e.current" :autoplay="true" :circular="true" :current="currentNum"
  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. h: {
  25. type: Number,
  26. default: function () {
  27. return 180;
  28. }
  29. }
  30. },
  31. data () {
  32. return {
  33. 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'],
  34. indicatorDots: true,
  35. currentNum: 0,
  36. circular: true,
  37. autoplay: true,
  38. interval: 3000,
  39. duration: 500,
  40. currents: "1",
  41. controls: true,
  42. isPlay: true,
  43. videoContext: ''
  44. };
  45. },
  46. mounted () {
  47. if (this.videoline) {
  48. this.imgUrls.shift()
  49. }
  50. // #ifndef APP-PLUS
  51. this.videoContext = uni.createVideoContext('myVideo', this);
  52. // #endif
  53. },
  54. methods: {
  55. openImg (index) {
  56. uni.previewImage({
  57. current: index,
  58. urls: this.imgUrls,
  59. indicator: 'number',
  60. loop: true
  61. });
  62. },
  63. videoPause (e) {
  64. // #ifdef APP-PLUS
  65. this.isPlay = true
  66. this.autoplay = true
  67. // #endif
  68. },
  69. bindPause: function () {
  70. // #ifndef APP-PLUS
  71. this.videoContext.play();
  72. this.$set(this, 'controls', false)
  73. this.autoplay = false
  74. // #endif
  75. // #ifdef APP-PLUS
  76. this.isPlay = false
  77. this.videoContext = uni.createVideoContext('myVideo', this);
  78. this.videoContext.play();
  79. // #endif
  80. },
  81. change: function (e) {
  82. this.$set(this, 'currents', e.detail.current + 1);
  83. }
  84. }
  85. }
  86. </script>
  87. <style scoped lang="scss">
  88. .indicator {
  89. @include flex(row);
  90. justify-content: center;
  91. &__dot {
  92. height: 6px;
  93. width: 6px;
  94. border-radius: 100px;
  95. background-color: rgba(255, 255, 255, 0.35);
  96. margin: 0 5px;
  97. transition: background-color 0.3s;
  98. &--active {
  99. background-color: #ffffff;
  100. }
  101. }
  102. }
  103. .indicator-num {
  104. padding: 2px 0;
  105. background-color: rgba(0, 0, 0, 0.35);
  106. border-radius: 100px;
  107. width: 35px;
  108. @include flex;
  109. justify-content: center;
  110. &__text {
  111. color: #FFFFFF;
  112. font-size: 12px;
  113. }
  114. }
  115. </style>