|
@@ -1,6 +1,14 @@
|
|
|
<template>
|
|
|
<swiper class='swiper' ref='mySwiper' :options='swiperOption' v-show='swiperList.length'>
|
|
|
- <swiper-slide v-for='(item,index) in swiperList' :class='{"active":item.active}' :key='`${index}_${item.drawernum}`'>{{item.drawernum}}</swiper-slide>
|
|
|
+ <swiper-slide v-for='(item,index) in swiperData' :key='index'>
|
|
|
+ <div
|
|
|
+ class='card'
|
|
|
+ :class='{"active":detail.active}'
|
|
|
+ @click='handleClick(detail)'
|
|
|
+ v-for='(detail,dIndex) in item'
|
|
|
+ :key='dIndex'
|
|
|
+ >{{detail.drawernum}}</div>
|
|
|
+ </swiper-slide>
|
|
|
<div class='swiper-pagination' slot='pagination'></div>
|
|
|
<!-- 如果需要滚动条 -->
|
|
|
<!-- <div class='swiper-scrollbar'></div> -->
|
|
@@ -37,14 +45,10 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
swiperList: [],
|
|
|
+ swiperData: [],
|
|
|
swiperOption: {
|
|
|
observer: true,
|
|
|
observeParents: true,
|
|
|
- slidesPerView: 3,
|
|
|
- // slidesPerGroup: 3,
|
|
|
- slidesPerColumn: 5,
|
|
|
- spaceBetween: 10,
|
|
|
- slidesPerColumnFill: 'row',
|
|
|
pagination: {
|
|
|
el: '.swiper-pagination',
|
|
|
clickable: false,
|
|
@@ -52,15 +56,15 @@ export default {
|
|
|
// bulletClass: 'my-bullet',
|
|
|
// bulletActiveClass: 'my-bullet-active',
|
|
|
},
|
|
|
- on: {
|
|
|
- click: function (event) {
|
|
|
- const { realIndex } = this
|
|
|
- // 这里有坑,需要注意的是:this 指向的是 swpier 实例,而不是当前的 vue, 因此借助 vm,来调用 methods 里的方法
|
|
|
- // console.log(this) // -> Swiper
|
|
|
- // 当前活动块的索引,与activeIndex不同的是,在loop模式下不会将 复制的块 的数量计算在内。
|
|
|
- swiperVm.handleTap(event.target.innerText)
|
|
|
- },
|
|
|
- },
|
|
|
+ // on: {
|
|
|
+ // click: function (event) {
|
|
|
+ // const { realIndex } = this
|
|
|
+ // // 这里有坑,需要注意的是:this 指向的是 swpier 实例,而不是当前的 vue, 因此借助 vm,来调用 methods 里的方法
|
|
|
+ // // console.log(this) // -> Swiper
|
|
|
+ // // 当前活动块的索引,与activeIndex不同的是,在loop模式下不会将 复制的块 的数量计算在内。
|
|
|
+ // swiperVm.handleTap(event.target.innerText)
|
|
|
+ // },
|
|
|
+ // },
|
|
|
// autoplay: {
|
|
|
// //自动播放
|
|
|
// delay: 1500,
|
|
@@ -73,59 +77,69 @@ export default {
|
|
|
created() {
|
|
|
swiperVm = this
|
|
|
this.swiperList = cloneDeep(this.list)
|
|
|
+ let swiperData = []
|
|
|
+ swiperData = this.group(this.swiperList, 15)
|
|
|
+ this.swiperData = swiperData
|
|
|
},
|
|
|
mounted() {
|
|
|
console.log(this.swiper)
|
|
|
- window.sssss= this.swiper
|
|
|
},
|
|
|
methods: {
|
|
|
- handleTap(text) {
|
|
|
- console.log(text)
|
|
|
- if (text.indexOf('\n') !== -1) {
|
|
|
- return false
|
|
|
- }
|
|
|
+ handleClick(detail) {
|
|
|
+ // console.log(detail)
|
|
|
let currentInfo = {}
|
|
|
this.swiperList.map((item, index) => {
|
|
|
item.active = false
|
|
|
- if (text === item.drawernum) {
|
|
|
+ if (detail.drawernum === item.drawernum) {
|
|
|
item.active = true
|
|
|
currentInfo = cloneDeep(item)
|
|
|
}
|
|
|
})
|
|
|
this.$emit('itemClick', currentInfo)
|
|
|
},
|
|
|
+ // 数组拆分为 15个的二维数组
|
|
|
+ group(array, subGroupLength) {
|
|
|
+ let index = 0
|
|
|
+ let newArray = []
|
|
|
+ while (index < array.length) {
|
|
|
+ newArray.push(array.slice(index, (index += subGroupLength)))
|
|
|
+ }
|
|
|
+ return newArray
|
|
|
+ },
|
|
|
},
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
.swiper {
|
|
|
- max-height: 300px;
|
|
|
+ height: 210px;
|
|
|
width: 100%;
|
|
|
.swiper-slide {
|
|
|
display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
justify-content: center;
|
|
|
- align-items: center;
|
|
|
text-align: center;
|
|
|
color: #333333;
|
|
|
font-size: 14px;
|
|
|
font-weight: 400;
|
|
|
- background: #ebeded;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
-.swiper {
|
|
|
- max-height: 300px;
|
|
|
- margin-left: auto;
|
|
|
- margin-right: auto;
|
|
|
- .swiper-slide {
|
|
|
- height: 30px;
|
|
|
- }
|
|
|
+/deep/ .swiper-wrapper {
|
|
|
+ height: 190px;
|
|
|
+}
|
|
|
+.card {
|
|
|
+ width: calc(33.33333% - 5.333334px);
|
|
|
+ margin-bottom: 8px;
|
|
|
+ height: 30px;
|
|
|
+ line-height: 30px;
|
|
|
+ background: #ebeded;
|
|
|
+}
|
|
|
+.card:not(:nth-child(3n)) {
|
|
|
+ margin-right: 8px;
|
|
|
}
|
|
|
.swiper-pagination {
|
|
|
- position: relative;
|
|
|
+ position: absolute;
|
|
|
bottom: 0;
|
|
|
- height: 30px;
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
align-items: flex-end;
|
|
@@ -137,6 +151,7 @@ export default {
|
|
|
background: #025baa !important;
|
|
|
color: #fff !important;
|
|
|
}
|
|
|
+
|
|
|
/deep/ .my-bullet {
|
|
|
width: 0.21333rem;
|
|
|
height: 0.21333rem;
|