3f535f30
杨鑫
'初始'
|
1
2
3
|
<template>
<div class="banner" :class="'terminal' + terminal">
<swiper class="swiper" :circular="true" :indicator-dots="false" :autoplay="true" :style="{'height':bannerHeight + 'rpx'}" @change="swiperChange">
|
65478d1d
杨鑫
'最新'
|
4
5
|
<swiper-item class="banner-item" v-for="(item,index) in bannerList" :key="index" :style="{backgroundImage: 'url('+$hostUrl+ item.imageUrl +')'}" @click="jumpLink(item.jumpUrl)">
<div class="a-link" @click="jumpLink(item.jumpUrl)"><img class="img" :src=" $hostUrl+ item.imageUrl" v-show="item.imageUrl" mode="widthFix"></div>
|
3f535f30
杨鑫
'初始'
|
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
</swiper-item>
</swiper>
<view class="swiper-dots" v-if="bannerList && bannerList.length > 1">
<text class="dot" :class="index === swiperCurrent && 'dot-active'" v-for="(dot, index) in bannerList.length"
:key="index"></text>
</view>
</div>
</template>
<script>
import {funMixin} from '../config/mixin';
const API = require('../../../config/api')
const NET = require('../../../utils/request')
export default {
name: 'cereBanner',
mixins: [funMixin],
data () {
return {
bannerHeight: 0,
swiperCurrent: 0,
bannerList:[]
}
},
props: {
terminal: {
type: Number,
default: 4
},
componentContent: {
type: Object
}
},
mounted() {
let pagesize = {
pageNumber: 1,
pageSize: 10,
|
5d752fd3
杨鑫
'最新'
|
42
|
type:1
|
3f535f30
杨鑫
'初始'
|
43
44
|
}
NET.request2(API.cereCarouselImage, pagesize, 'POST').then(res => {
|
65478d1d
杨鑫
'最新'
|
45
|
|
3f535f30
杨鑫
'初始'
|
46
|
this.bannerList = res.data.content
|
b7023175
杨鑫
'最新'
|
47
|
|
3f535f30
杨鑫
'初始'
|
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
})
// uni.request({
// url: 'http://8.130.38.56:8027/admin-server/cereCarouselImage/queryByPage', //仅为示例,并非真实接口地址。
// data: {
// pageNumber: 1,
// pageSize: 10
// },
// header: {
// 'content-type': 'application/json;charset=UTF-8' //自定义请求头信息
// },
// success: (res) => {
// console.log(res.data);
// }
// });
this.bannerHeight = this.componentContent.height
this.$forceUpdate() // 刷新轮播图
},
|
b7023175
杨鑫
'最新'
|
67
68
69
70
71
72
73
74
|
// computed: {
// bannerList: function () {
// console.log(this.componentContent)
// return this.componentContent.bannerData.filter(function (item) {
// return item.bannerUrl
// })
// }
// },
|
3f535f30
杨鑫
'初始'
|
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
methods:{
jumpLink(urls){
if(urls){
window.open(urls, '_blank');
}else{
uni.navigateTo({
url: '/pages_category_page1/goodsModule/goodsList'
});
}
// uni.navigateBack({
// url: urls
// });
},
swiperChange(e) {
this.swiperCurrent = e.detail.current;
}
}
}
</script>
<style lang="scss" scoped>
.banner{
position: relative;
margin-top: 20rpx;
margin-bottom: 20rpx;
.banner-item{
width: 100%;
background-repeat: no-repeat;
background-position: center;
background-size: auto 100%;
img{
display: none;
}
}
&.terminal4{
::v-deep .el-carousel{
height: 100%;
.el-carousel__container{
height: 100%;
}
}
.banner-item{
background-repeat: no-repeat;
background-position: center;
background-size: auto 100%;
img{
display: none;
}
}
}
.swiper-dots {
display: flex;
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 20upx;
z-index: 200;
.dot {
width: 12upx;
height: 12upx;
background: #FFFFFF;
border-radius: 6upx;
opacity: 0.2;
margin: 0 10upx;
}
.dot-active {
opacity: 1;
width: 24upx;
}
}
}
</style>
|