123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 |
- <template>
- <view class="swiperBg" :style="{marginTop:mt +'rpx'}">
- <view class="bag" v-if="isIframe || (imgUrls.length && isShow)">
- </view>
- <block v-if="isShow && imgUrls.length">
- <view class="swiper square" v-if="imgUrls.length">
- <swiper class="skeleton-rect" :style="'height:'+ (imageH) +'rpx;'" indicator-dots="true"
- :autoplay="true" :circular="circular" :interval="interval" :duration="duration"
- indicator-color="rgba(255,255,255,0.6)" indicator-active-color="#fff" :current="swiperCur"
- @change="swiperChange">
- <block v-for="(item,index) in imgUrls" :key="index">
- <swiper-item class="" :class="{active:index == swiperCur}">
- <view @click="goDetail(item)" class='slide-navigator acea-row row-between-wrapper'>
- <image :src="item.img" class="slide-image" mode="widthFix"
- :style="'height:'+ (imageH) +'rpx;'">
- </image>
- </view>
- </swiper-item>
- </block>
- </swiper>
- </view>
- </block>
- <block v-if="!isShow && isIframe && imgUrls.length && imageH">
- <view class="swiper square" v-if="imgUrls.length && imageH" :style="'height:'+ (imageH) +'rpx;'">
- <swiper :style="'height:'+ (imageH) +'rpx;'" indicator-dots="true" :autoplay="true" :circular="circular"
- :interval="interval" :duration="duration" indicator-color="rgba(255,255,255,0.6)"
- indicator-active-color="#fff">
- <block v-for="(item,index) in imgUrls" :key="index">
- <swiper-item>
- <view @click="goDetail(item)" class='slide-navigator acea-row row-between-wrapper'>
- <image :src="item.img" class="slide-image" mode="widthFix"
- :style="'height:'+ (imageH) +'rpx;'">
- </image>
- </view>
- </swiper-item>
- </block>
- </swiper>
- </view>
- </block>
- <block v-if="isIframe && (!imgUrls.length || !imageH)">
- <view class="empty-img">{{$t(`暂无图片,请上传图片`)}}</view>
- </block>
- </view>
- </template>
- <script>
- let statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
- let app = getApp();
- import {
- goPage
- } from '@/libs/order.js'
- export default {
- name: 'swiperBg',
- props: {
- dataConfig: {
- type: Object,
- default: () => {}
- },
- },
- watch: {
- dataConfig: {
- immediate: true,
- handler(nVal, oVal) {
- if (nVal) {
- this.imgUrls = nVal.imgList ? nVal.imgList.list : [];
- this.isShow = nVal.isShow ? nVal.isShow.val : true
- uni.getImageInfo({
- src: this.imgUrls.length ? this.imgUrls[0].img : '',
- success: (res) => {
- if (res && res.height > 0) {
- this.$set(this, 'imageH',
- res.height / res
- .width * 690)
- } else {
- this.$set(this, 'imageH', 320);
- }
- },
- fail: (error) => {
- this.$set(this, 'imageH', 320);
- }
- })
- }
- }
- },
- imageH(nVal, oVal) {
- let self = this
- },
- },
- data() {
- return {
- indicatorDots: false,
- circular: true,
- autoplay: true,
- interval: 4000,
- duration: 500,
- imgUrls: [], //图片轮播数据
- name: this.$options.name,
- isIframe: false,
- mt: -55,
- isShow: true,
- imageH: 320,
- swiperCur: 0,
- };
- },
- created() {
- // #ifdef MP || APP-PLUS
- const res = uni.getSystemInfoSync()
- const system = res.platform
- this.statusBarHeight = res.statusBarHeight
- if (system === 'android') {
- this.mt = parseFloat(statusBarHeight) * 2 + 170
- } else {
- this.mt = parseFloat(statusBarHeight) * 2 + 168
- }
- // #endif
- this.isIframe = app.globalData.isIframe;
- },
- mounted() {},
- methods: {
- goDetail(url) {
- goPage().then(res => {
- let urls = url.info[1].value
- if (urls) {
- if (urls.indexOf("http") != -1) {
- // #ifdef H5
- location.href = urls
- // #endif
- } else {
- if (['/pages/goods_cate/goods_cate', '/pages/order_addcart/order_addcart',
- '/pages/user/index'
- ].indexOf(urls) ==
- -1) {
- uni.navigateTo({
- url: urls
- })
- } else {
- uni.switchTab({
- url: urls,
- fail() {
- uni.reLaunch({
- url: urls
- })
- }
- })
- }
- }
- }
- })
- },
- //替换安全域名
- setDomain: function(url) {
- url = url ? url.toString() : '';
- //本地调试打开,生产请注销
- if (url.indexOf("https://") > -1) return url;
- else return url.replace('http://', 'https://');
- },
- swiperChange(e) {
- // this.swiperCur = e.detail.current
- let {
- current,
- source
- } = e.detail
- if (source === 'autoplay' || source === 'touch') {
- //根据官方 source 来进行判断swiper的change事件是通过什么来触发的,autoplay是自动轮播。touch是用户手动滑动。其他的就是未知问题。抖动问题主要由于未知问题引起的,所以做了限制,只有在自动轮播和用户主动触发才去改变current值,达到规避了抖动bug
- this.swiperCur = e.detail.current
- }
- },
- }
- }
- </script>
- <style lang="scss">
- .swiperBg /deep/ .uni-swiper-slides {
- overflow: hidden;
- border-radius: 10rpx;
- }
- .swiperBg {
- background-color: #fff;
- position: relative;
- margin-top: -20rpx;
- padding-top: 4rpx;
- .bag {
- position: absolute;
- top: 0;
- width: 100%;
- height: 140rpx;
- background: linear-gradient(90deg, var(--view-main-start) 0%, var(--view-main-over) 100%);
- border-bottom-left-radius: 40rpx;
- border-bottom-right-radius: 40rpx;
- }
- /* #ifdef APP-PLUS */
- /* #endif */
- .colorBg {
- position: absolute;
- left: 0;
- top: 0;
- height: 130rpx;
- width: 100%;
- }
- .swiper {
- z-index: 100;
- position: relative;
- min-height: 200rpx;
- padding: 0 $uni-index-margin-col;
- /* #ifdef APP-PLUS */
- // margin: 0rpx auto 0 auto;
- /* #endif */
- overflow: hidden;
- /* #ifdef MP */
- /* #endif */
- /* 设置圆角 */
- &.fillet {
- border-radius: 10rpx;
- image {
- border-radius: 10rpx;
- }
- }
- swiper,
- .swiper-item,
- image {
- width: 100%;
- overflow: hidden;
- border-radius: 10rpx;
- }
- .slide-navigator {}
- image {
- transform: scale(1);
- // transition: all .3s ease;
- }
- swiper-item.active {
- image {
- transform: scale(1);
- }
- }
- // 圆形指示点
- &.circular {
- /deep/.uni-swiper-dot {
- width: 10rpx !important;
- height: 10rpx !important;
- background: rgba(0, 0, 0, .4) !important
- }
- /deep/.uni-swiper-dot-active {
- background: #fff !important
- }
- }
- // 方形指示点
- &.square {
- /deep/.uni-swiper-dot {
- width: 20rpx !important;
- height: 5rpx !important;
- border-radius: 3rpx;
- background: rgba(0, 0, 0, .4) !important
- }
- /deep/.uni-swiper-dot-active {
- background: #fff !important
- }
- }
- }
- }
- .item-img image {
- display: block;
- width: 100%;
- border-radius: 10rpx;
- }
- .empty-img {
- width: 690rpx;
- height: 300rpx;
- border-radius: 14rpx;
- margin: 26rpx auto 0 auto;
- background-color: #ccc;
- text-align: center;
- line-height: 300rpx;
- position: relative;
- .iconfont {
- font-size: 50rpx;
- }
- }
- </style>
|