| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421 |
- <template>
- <!-- 带背景轮播图 -->
- <common-wrapper :config="configData">
- <view class="swiperBg">
- <template v-if="dataConfig.swiperConfig.list.length">
- <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"
- :style="[itemStyle, active == index ? activeStyle : '']"
- >
- <image
- :src="item.img"
- mode="aspectFill"
- class="image"
- :style="[imageStyle]"
- ></image>
- </view>
- </swiper-item>
- </swiper>
- <view class="noPic" v-else>{{ $t(`图片加载中`) }}...</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>
- </common-wrapper>
- </template>
- <script>
- import commonWrapper from "./commonWrapper.vue";
- export default {
- components: { commonWrapper },
- 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: "",
- };
- },
- 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,
- },
- ],
- },
- };
- },
- itemStyle() {
- let val = this.dataConfig.imgConfig.val;
- let num = 1;
- if (this.dataConfig.styleConfig.tabVal == 1) {
- num = !val ? 1 : 0.9;
- }
- return {
- transform: `scale(${num})`,
- };
- },
- activeStyle() {
- let val = this.dataConfig.imgConfig.val;
- let num = 1;
- if (this.dataConfig.styleConfig.tabVal == 1) {
- num = !val ? 1 : 1 - val / 400;
- }
- return {
- transform: `scale(${num})`,
- };
- },
- // colorBgStyle() {
- // let styleObject = {
- // background: this.dataConfig.bgColor.color[0].item,
- // };
- // if (this.dataConfig.styleConfig.tabVal == 1) {
- // styleObject["height"] = "50%";
- // }
- // return styleObject;
- // },
- imageStyle() {
- let borderRadius = `${this.dataConfig.filletImg.val * 2}rpx`;
- if (this.dataConfig.filletImg.type) {
- borderRadius = `${this.dataConfig.filletImg.valList[0].val * 2}rpx ${
- this.dataConfig.filletImg.valList[1].val * 2
- }rpx ${this.dataConfig.filletImg.valList[3].val * 2}rpx ${
- this.dataConfig.filletImg.valList[2].val * 2
- }rpx`;
- }
- return {
- borderRadius: borderRadius,
- };
- },
- dotStyle() {
- let styleObject = {};
- if (this.dataConfig.docPosition.tabVal) {
- styleObject["justify-content"] =
- this.dataConfig.docPosition.tabVal == 1 ? "center" : "flex-end";
- }
- if (this.dataConfig.styleConfig.tabVal == 1) {
- styleObject["padding"] = "0 100rpx";
- styleObject["bottom"] = "32rpx";
- }
- 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 == 1) {
- 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) {
- let p = this.dataConfig.paddingConfig.isAll
- ? this.dataConfig.paddingConfig.val
- : this.dataConfig.paddingConfig.valList[1].val;
- let height = res.height * ((750 - p * 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 {
- ::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>
|