swiperBg.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <template>
  2. <view class="swiperBg skeleton-rect" :style="'margin-top:' + marginTop*2 +'rpx;'" v-show="!isSortType">
  3. <block v-if="imgUrls.length">
  4. <view class="colorBg" :style="'background: linear-gradient(90deg, '+ bgColor[0].item +' 50%, '+ bgColor[1].item +' 100%);'"
  5. v-if="isColor"></view>
  6. <view class="swiper" :class="[imgConfig?'':'fillet']" :style="'padding: 0 '+ paddinglr +'rpx;'">
  7. <swiper :style="'height:'+ imageH +'rpx;'" :autoplay="true" :circular="circular"
  8. :interval="interval" :duration="duration" indicator-color="rgba(255,255,255,0.6)" indicator-active-color="#fff"
  9. @change='bannerfun'>
  10. <block v-for="(item,index) in imgUrls" :key="index">
  11. <swiper-item>
  12. <view @click="goDetail(item)" class='slide-navigator acea-row row-between-wrapper'>
  13. <image :src="item.img" mode="aspectFill" class="slide-image aa" :style="'height:'+ imageH +'rpx;'">
  14. </image>
  15. </view>
  16. </swiper-item>
  17. </block>
  18. </swiper>
  19. <view v-if="docConfig==0" class="dot acea-row" :style="{paddingLeft: paddinglr+20 + 'rpx',paddingRight: paddinglr+20 + 'rpx',justifyContent: (txtStyle==1?'center':txtStyle==2?'flex-end':'flex-start')}">
  20. <view class="dot-item" :style="active==index?'background:'+ dotColor:''" v-for="(item,index) in imgUrls"></view>
  21. </view>
  22. <view v-if="docConfig==1" class="dot acea-row" :style="{paddingLeft: paddinglr+20 + 'rpx',paddingRight: paddinglr+20 + 'rpx',justifyContent: (txtStyle==1?'center':txtStyle==2?'flex-end':'flex-start')}">
  23. <view class="dot-item line_dot-item" :style="active==index?'background:'+ dotColor:''" v-for="(item,index) in imgUrls"></view>
  24. </view>
  25. <view v-if="docConfig==2" class="dot acea-row" :style="{paddingLeft: paddinglr+20 + 'rpx',paddingRight: paddinglr+20 + 'rpx',justifyContent: (txtStyle==1?'center':txtStyle==2?'flex-end':'flex-start')}">
  26. <view class="instruct">{{current}}/{{imgUrls.length}}</view>
  27. </view>
  28. </view>
  29. </block>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. name: 'swiperBg',
  35. props: {
  36. dataConfig: {
  37. type: Object,
  38. default: () => {}
  39. },
  40. isSortType: {
  41. type: String | Number,
  42. default: 0
  43. }
  44. },
  45. data() {
  46. return {
  47. circular: true,
  48. autoplay: true,
  49. interval: 3000,
  50. duration: 500,
  51. imgUrls: [], //图片轮播数据
  52. bgColor: this.dataConfig.bgColor.color, //轮播背景颜色
  53. marginTop: this.dataConfig.mbConfig.val, //组件上边距
  54. paddinglr: (this.dataConfig.lrConfig.val)*2, //轮播左右边距
  55. docConfig: this.dataConfig.docConfig.type, //指示点样式
  56. imgConfig: this.dataConfig.imgConfig.type, //是否为圆角
  57. imageH: 280,
  58. isColor: this.dataConfig.isShow.val,
  59. txtStyle: this.dataConfig.txtStyle.type,
  60. dotColor: this.dataConfig.dotColor.color[0].item,
  61. current: 1,//数字指示器当前
  62. active:0//一般指示器当前
  63. };
  64. },
  65. watch: {
  66. imageH(nVal, oVal) {
  67. let self = this
  68. this.imageH = nVal
  69. },
  70. },
  71. created() {
  72. this.imgUrls = this.dataConfig.swiperConfig.list
  73. },
  74. mounted() {
  75. if(this.imgUrls.length){
  76. let that = this;
  77. this.$nextTick((e) => {
  78. uni.getImageInfo({
  79. src: that.setDomain(that.imgUrls[0].img),
  80. success: (res) => {
  81. if (res && res.height > 0) {
  82. // that.$set(that, 'imageH',
  83. // res.height / res
  84. // .width * 750)
  85. let height = res.height * ((750-this.paddinglr*2) / res.width)
  86. that.$set(that, 'imageH', height);
  87. } else {
  88. that.$set(that, 'imageH', 375);
  89. }
  90. },
  91. fail: function(error) {
  92. that.$set(that, 'imageH', 375);
  93. }
  94. })
  95. })
  96. }
  97. },
  98. methods: {
  99. bannerfun(e) {
  100. this.active = e.detail.current;
  101. this.current = e.detail.current + 1;
  102. },
  103. //替换安全域名
  104. setDomain: function(url) {
  105. url = url ? url.toString() : '';
  106. //本地调试打开,生产请注销
  107. if (url.indexOf("https://") > -1) return url;
  108. else return url.replace('http://', 'https://');
  109. },
  110. goDetail(url) {
  111. let urls = url.info[1].value
  112. if (urls.indexOf("http") != -1) {
  113. // #ifdef H5
  114. location.href = urls
  115. // #endif
  116. // #ifdef MP || APP-PLUS
  117. uni.navigateTo({
  118. url: `/pages/annex/web_view/index?url=${urls}`
  119. });
  120. // #endif
  121. } else {
  122. if (['/pages/goods_cate/goods_cate', '/pages/order_addcart/order_addcart', '/pages/user/index']
  123. .indexOf(urls) == -1) {
  124. uni.navigateTo({
  125. url: urls
  126. })
  127. } else {
  128. uni.reLaunch({
  129. url: urls
  130. })
  131. }
  132. }
  133. }
  134. }
  135. }
  136. </script>
  137. <style lang="scss">
  138. .swiperBg {
  139. position: relative;
  140. // #ifdef APP-PLUS
  141. // padding-top: 100rpx;
  142. // #endif
  143. .colorBg {
  144. position: absolute;
  145. left: 0;
  146. top: 0;
  147. height: 130rpx;
  148. width: 100%;
  149. }
  150. .swiper {
  151. z-index: 20;
  152. position: relative;
  153. overflow: hidden;
  154. .dot{
  155. position: absolute;
  156. left:0;
  157. bottom: 20rpx;
  158. width: 100%;
  159. .instruct {
  160. width: 50rpx;
  161. height: 36rpx;
  162. line-height: 36rpx;
  163. background-color: rgba(0,0,0,0.8);
  164. color: #fff;
  165. border-radius: 16rpx;
  166. font-size: 24rpx;
  167. text-align: center;
  168. }
  169. .dot-item{
  170. width: 10rpx;
  171. height: 10rpx;
  172. background: rgba(0, 0, 0, .4);
  173. border-radius: 50%;
  174. margin: 0 4px;
  175. &.line_dot-item{
  176. width: 20rpx;
  177. height: 5rpx;
  178. border-radius: 3rpx;
  179. }
  180. }
  181. }
  182. /* 设置圆角 */
  183. &.fillet {
  184. border-radius: 10rpx;
  185. image {
  186. border-radius: 10rpx;
  187. }
  188. }
  189. swiper,
  190. .swiper-item,
  191. image {
  192. width: 100%;
  193. display: block;
  194. }
  195. // 圆形指示点
  196. &.circular {
  197. /deep/.uni-swiper-dot {
  198. width: 10rpx !important;
  199. height: 10rpx !important;
  200. background: rgba(0, 0, 0, .4) !important
  201. }
  202. /deep/.uni-swiper-dot-active {
  203. background: #fff !important
  204. }
  205. }
  206. // 方形指示点
  207. &.square {
  208. /deep/.uni-swiper-dot {
  209. width: 20rpx !important;
  210. height: 5rpx !important;
  211. border-radius: 3rpx;
  212. background: rgba(0, 0, 0, .4) !important
  213. }
  214. /deep/.uni-swiper-dot-active {
  215. background: #fff !important
  216. }
  217. }
  218. }
  219. }
  220. .item-img image {
  221. display: block;
  222. width: 100%;
  223. }
  224. </style>