123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- <template>
- <!-- 带背景轮播图 -->
- <view class="swiperBg" :style="[swiperBgStyle]">
- <template v-if="dataConfig.swiperConfig.list.length">
- <view class="colorBg" :style="[colorBgStyle]"></view>
- <view class="swiper">
- <swiper :style="'height:'+ imageH +'rpx;'" :autoplay="true" :previous-margin="swiperMargin" :next-margin="swiperMargin" :circular="circular" :interval="interval" :duration="duration"
- @change="bannerfun" v-if="imageH">
- <swiper-item v-for="(item,index) in dataConfig.swiperConfig.list" :key="index">
- <view @click="goDetail(item)" class="swiper-item" :class="{ active: active == index }">
- <image :src="item.img" mode="aspectFill" class="image" :style="[imageStyle]"></image>
- </view>
- </swiper-item>
- </swiper>
- <view class="noPic" v-else>图片加载中...</view>
- <view class="dot acea-row" :style="[dotStyle]">
- <view class="progress" v-if="dataConfig.docConfig.tabVal == 2" :style="[progressWidth,dotItemStyle]">
- <view class="inner" :style="[progressValue,dotItemActiveStyle]"></view>
- </view>
- <view class="acea-row" :class="{ small: dataConfig.docConfig.tabVal == 1, line: dataConfig.docConfig.tabVal == 3 }" v-else>
- <view class="dot-item" v-for="(item, index) in dataConfig.swiperConfig.list" :key="index" :class="{ active: active == index }"
- :style="[active == index ? dotItemActiveStyle : dotItemStyle]"></view>
- </view>
- </view>
- </view>
- </template>
- </view>
- </template>
- <script>
- export default {
- name: 'swiperBg',
- props: {
- dataConfig: {
- type: Object,
- default: () => {}
- },
- isSortType: {
- type: String | Number,
- default: 0
- }
- },
- data() {
- return {
- circular: true,
- autoplay: true,
- interval: 3000,
- duration: 500,
- imgUrls: [], //图片轮播数据
- bgColor: '', //轮播背景颜色
- marginTop: 0, //组件上边距
- paddinglr: 0, //轮播左右边距
- docConfig: 0, //指示点样式
- imgConfig: 0, //是否为圆角
- imageH: 0,
- isColor: 0,
- txtStyle: 0,
- dotColor: '',
- current: 1, //数字指示器当前
- active: 0, //一般指示器当前
- swiperMargin: '',
- swiperMargin: '',
- };
- },
- computed: {
- swiperBgStyle() {
- return {
- padding: `${this.dataConfig.topConfig.val * 2}rpx ${this.dataConfig.prConfig.val * 2}rpx ${this.dataConfig.bottomConfig.val * 2}rpx`,
- marginTop: `${this.dataConfig.mbConfig.val * 2}rpx`,
- };
- },
- colorBgStyle() {
- let styleObject = {
- 'background': this.dataConfig.bgColor.color[0].item,
- };
- if (this.dataConfig.styleConfig.tabVal == 1) {
- styleObject['height'] = '50%';
- }
- return styleObject;
- },
- imageStyle() {
- return {
- borderRadius: `${this.dataConfig.filletImg.val * 2}rpx`,
- };
- },
- dotStyle() {
- let styleObject = {};
- if (this.dataConfig.docPosition.tabVal) {
- styleObject['justify-content'] = this.dataConfig.docPosition.tabVal == 1 ? 'center' : 'flex-end';
- }
- return styleObject;
- },
- dotItemStyle() {
- let styleObject = {};
- if (this.dataConfig.toneConfig.tabVal) {
- styleObject['background'] = this.dataConfig.dotBgColor.color[0].item;
- }
- return styleObject;
- },
- dotItemActiveStyle() {
- let styleObject = {};
- if (this.dataConfig.toneConfig.tabVal) {
- styleObject['background'] = this.dataConfig.dotColor.color[0].item;
- }
- return styleObject;
- },
- progressWidth() {
- return {
- width: `${this.dataConfig.swiperConfig.list.length * 20}rpx`,
- };
- },
- progressValue() {
- return {
- width: `${this.current / this.dataConfig.swiperConfig.list.length * 100}%`,
- };
- },
- },
- watch: {
- imageH(nVal, oVal) {
- let self = this
- this.imageH = nVal
- },
- },
- created() {
- this.imgUrls = this.dataConfig.swiperConfig.list
- if (this.dataConfig.styleConfig.tabVal == 2) {
- this.swiperMargin = '55rpx';
- }
- },
- mounted() {
- if (this.imgUrls.length) {
- let that = this;
- this.$nextTick((e) => {
- uni.getImageInfo({
- src: that.setDomain(that.imgUrls[0].img),
- success: (res) => {
- if (res && res.height > 0) {
- // that.$set(that, 'imageH',
- // res.height / res
- // .width * 750)
- let height = res.height * ((750 - this.dataConfig.prConfig.val * 4) / res.width)
- that.$set(that, 'imageH', height);
- } else {
- that.$set(that, 'imageH', 375);
- }
- },
- fail: function(error) {
- that.$set(that, 'imageH', 375);
- }
- })
- })
- }
- },
- methods: {
- bannerfun(e) {
- this.active = e.detail.current;
- this.current = e.detail.current + 1;
- },
- //替换安全域名
- setDomain: function(url) {
- url = url ? url.toString() : '';
- //本地调试打开,生产请注销
- if (url.indexOf("https://") > -1) return url;
- else return url.replace('http://', 'https://');
- },
- goDetail(url) {
- let urls = url.info[0].value;
- this.$util.JumpPath(urls);
- }
- }
- }
- </script>
- <style lang="scss">
- .noPic {
- border-radius: 10rpx;
- width: 100%;
- height: 300rpx;
- background-color: #F0F0F0;
- color: #ccc;
- text-align: center;
- line-height: 300rpx;
- font-size: 30rpx;
- }
- .swiperBg {
- position: relative;
- .colorBg {
- position: absolute;
- left: 0;
- top: 0;
- height: 100%;
- width: 100%;
- }
- .swiper {
- z-index: 20;
- position: relative;
- overflow: hidden;
- .dot {
- position: absolute;
- bottom: 20rpx;
- left: 0;
- width: 100%;
- padding: 0 20rpx;
- .dot-item {
- width: 12rpx;
- height: 12rpx;
- border-radius: 6rpx;
- margin-right: 16rpx;
- background: #DDDDDD;
- &:last-child {
- margin-right: 0;
- }
- &.active {
- background: var(--view-theme);
- }
- }
- .small {
- .dot-item {
- width: 10rpx;
- height: 10rpx;
- border-radius: 5rpx;
- margin-right: 8rpx;
- &.active {
- width: 18rpx;
- }
- }
- }
- .line {
- .dot-item {
- width: 20rpx;
- height: 6rpx;
- border-radius: 3rpx;
- margin-right: 10rpx;
- }
- }
- .progress {
- width: 60rpx;
- height: 6rpx;
- border-radius: 3rpx;
- background: #DDDDDD;
- .inner {
- width: 33%;
- height: 6rpx;
- border-radius: 3rpx;
- background: var(--view-theme);
- transition: 0.3s;
- }
- }
- }
- .swiper-item {
- width: 100%;
- height: 100%;
- transform: scale(0.9);
- transition: 0.3s;
- &.active {
- transform: scale(1);
- }
- }
- .image {
- width: 100%;
- height: 100%;
- }
- // 圆形指示点
- &.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
- }
- }
- }
- }
- </style>
|