| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- <template>
- <!-- 轮播图 -->
- <view v-show="!isSortType">
- <common-wrapper :config="configData">
- <view
- class="swipers"
- :class="[docConfig ? 'square' : 'circular', imgConfig ? '' : 'fillet']"
- v-if="imgUrls.length && tabConfig"
- >
- <swiper
- :style="'height:' + (imageH + 10) + 'rpx;'"
- indicator-dots="true"
- :autoplay="true"
- :circular="circular"
- :interval="interval"
- :duration="duration"
- indicator-color="#E4E4E4"
- indicator-active-color="#E93323"
- :previous-margin="itemEdge + 'rpx'"
- :next-margin="itemEdge + 'rpx'"
- :current="swiperCur"
- @change="swiperChange"
- >
- <block v-for="(item, index) in imgUrls" :key="index">
- <swiper-item :class="{ active: index == swiperCur }">
- <navigator
- :url="item.info[1].title"
- class="slide-navigator acea-row row-between-wrapper"
- hover-class="none"
- >
- <image
- :src="item.img"
- class="slide-image"
- mode="widthFix"
- ></image>
- </navigator>
- </swiper-item>
- </block>
- </swiper>
- </view>
- <view v-if="!tabConfig">
- <navigator
- :url="item.info[1].title"
- hover-class="none"
- class="advert"
- :class="imgConfig ? '' : 'fillet'"
- v-for="(item, index) in imgUrls"
- :key="index"
- >
- <image :src="item.img"></image>
- </navigator>
- </view>
- </common-wrapper>
- </view>
- </template>
- <script>
- import commonWrapper from "./commonWrapper.vue";
- export default {
- components: { commonWrapper },
- name: "swiper",
- props: {
- dataConfig: {
- type: Object,
- default: () => {},
- },
- isSortType: {
- type: String | Number,
- default: 0,
- },
- },
- data() {
- return {
- indicatorDots: false,
- circular: true,
- autoplay: true,
- interval: 2500,
- duration: 500,
- swiperCur: 0,
- imgUrls: [],
- docConfig: this.dataConfig.docConfig.type,
- imgConfig: this.dataConfig.imgConfig.type,
- itemEdge: this.dataConfig.itemEdge.val,
- lrConfig: this.dataConfig.lrConfig.val,
- mbConfig: this.dataConfig.mbConfig.val,
- tabConfig: this.dataConfig.tabConfig.tabVal,
- imageH: 0,
- };
- },
- computed: {
- configData() {
- return {
- ...this.dataConfig,
- paddingConfig: this.dataConfig.paddingConfig || {
- isAll: false,
- valList: [
- {
- val: this.dataConfig.topConfig
- ? this.dataConfig.topConfig.val
- : 0,
- },
- {
- val: this.dataConfig.prConfig ? this.dataConfig.prConfig.val : 0,
- },
- {
- val: this.dataConfig.bottomConfig
- ? this.dataConfig.bottomConfig.val
- : 0,
- },
- {
- val: this.dataConfig.prConfig ? this.dataConfig.prConfig.val : 0,
- },
- ],
- },
- marginConfig: this.dataConfig.marginConfig || {
- isAll: false,
- valList: [
- {
- val: this.dataConfig.mbConfig ? this.dataConfig.mbConfig.val : 0,
- },
- {
- val: 0,
- },
- {
- val: 0,
- },
- {
- val: 0,
- },
- ],
- },
- };
- },
- },
- watch: {
- imageH(nVal, oVal) {
- this.imageH = nVal;
- },
- },
- created() {
- this.imgUrls = this.dataConfig.swiperConfig.list;
- },
- mounted() {
- let that = this;
- uni.getImageInfo({
- src: that.setDomain(that.imgUrls[0].img),
- success: function (res) {
- that.$set(that, "imageH", res.height);
- },
- });
- },
- methods: {
- // swiper
- swiperChange(e) {
- this.swiperCur = e.detail.current;
- },
- //替换安全域名
- setDomain: function (url) {
- url = url ? url.toString() : "";
- //本地调试打开,生产请注销
- if (url.indexOf("https://") > -1) return url;
- else return url.replace("http://", "https://");
- },
- },
- };
- </script>
- <style lang="scss">
- .advert {
- box-sizing: border-box;
- image {
- width: 100%;
- box-sizing: border-box;
- display: block;
- }
- }
- .swipers {
- position: relative;
- width: 100%;
- margin: 0 auto;
- border-radius: 10rpx;
- /* 设置圆角 */
- &.fillet {
- border-radius: 10rpx;
- image {
- border-radius: 10rpx;
- }
- }
- swiper,
- .swiper-item,
- image {
- width: 100%;
- }
- image {
- transform: scale(0.93);
- transition: all 0.6s ease;
- }
- swiper-item.active {
- image {
- transform: scale(1);
- }
- }
- // 圆形指示点
- &.circular {
- ::v-deep.uni-swiper-dot {
- width: 10rpx !important;
- height: 10rpx !important;
- background: rgba(0, 0, 0, 0.4) !important;
- }
- ::v-deep.uni-swiper-dot-active {
- background: #fff !important;
- }
- }
- // 方形指示点
- &.square {
- ::v-deep.uni-swiper-dot {
- width: 20rpx !important;
- height: 5rpx !important;
- border-radius: 3rpx;
- background: rgba(0, 0, 0, 0.4) !important;
- }
- ::v-deep.uni-swiper-dot-active {
- background: #fff !important;
- }
- }
- }
- </style>
|