|
|
|
<template>
|
|
|
|
<div class="thumb-example">
|
|
|
|
<!-- swiper1 -->
|
|
|
|
<swiper
|
|
|
|
class="swiper gallery-top"
|
|
|
|
:options="swiperOptionTop"
|
|
|
|
ref="swiperTop"
|
|
|
|
>
|
|
|
|
<swiper-slide
|
|
|
|
class="slide-1"
|
|
|
|
v-for="item in terminalPhoto"
|
|
|
|
:key="item.id"
|
|
|
|
>
|
|
|
|
<viewer class="bigimg" v-if="item.path.indexOf('nopic') == -1">
|
|
|
|
<img :src="item.path" alt="" />
|
|
|
|
</viewer>
|
|
|
|
<div class="bigimg" v-else>
|
|
|
|
<img :src="item.path" alt="" />
|
|
|
|
</div>
|
|
|
|
</swiper-slide>
|
|
|
|
<div
|
|
|
|
class="swiper-button-next swiper-button-white"
|
|
|
|
slot="button-next"
|
|
|
|
></div>
|
|
|
|
<div
|
|
|
|
class="swiper-button-prev swiper-button-white"
|
|
|
|
slot="button-prev"
|
|
|
|
></div>
|
|
|
|
</swiper>
|
|
|
|
<!-- swiper2 Thumbs -->
|
|
|
|
<swiper
|
|
|
|
class="swiper gallery-thumbs"
|
|
|
|
:options="swiperOptionThumbs"
|
|
|
|
ref="swiperThumbs"
|
|
|
|
>
|
|
|
|
<swiper-slide
|
|
|
|
class="slide"
|
|
|
|
v-for="(item, index) in terminalPhoto"
|
|
|
|
:key="item.id"
|
|
|
|
>
|
|
|
|
<img :src="item.path" alt="" />
|
|
|
|
<p class="timeInfo" v-if="item.path.indexOf('nopic') == -1">
|
|
|
|
{{ $moment(item.photoTime).format("HH:mm:ss") }}({{
|
|
|
|
$moment(item.recvTime).format("HH:mm:ss")
|
|
|
|
}})
|
|
|
|
<span>(通道{{ item.channelId }})</span>
|
|
|
|
</p>
|
|
|
|
</swiper-slide>
|
|
|
|
</swiper>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { Swiper, SwiperSlide } from "vue-awesome-swiper";
|
|
|
|
import "swiper/css/swiper.css";
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
Swiper,
|
|
|
|
SwiperSlide,
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
terminalPhoto: {
|
|
|
|
type: Array,
|
|
|
|
default: () => [],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
swiperOptionTop: {
|
|
|
|
spaceBetween: 10,
|
|
|
|
//loop: true,
|
|
|
|
freeMode: true,
|
|
|
|
// loopedSlides: 4,
|
|
|
|
navigation: {
|
|
|
|
nextEl: ".swiper-button-next",
|
|
|
|
prevEl: ".swiper-button-prev",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
swiperOptionThumbs: {
|
|
|
|
spaceBetween: 10,
|
|
|
|
centeredSlides: true,
|
|
|
|
slidesPerView: "auto",
|
|
|
|
touchRatio: 0.2,
|
|
|
|
slideToClickedSlide: true,
|
|
|
|
//loop: true,
|
|
|
|
//loopedSlides: 4,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.$nextTick(() => {
|
|
|
|
const swiperTop = this.$refs.swiperTop.$swiper;
|
|
|
|
const swiperThumbs = this.$refs.swiperThumbs.$swiper;
|
|
|
|
swiperTop.controller.control = swiperThumbs;
|
|
|
|
swiperThumbs.controller.control = swiperTop;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<style lang="less">
|
|
|
|
.thumb-example {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
.gallery-top {
|
|
|
|
//background: #fcc;
|
|
|
|
width: calc(100% - 6px);
|
|
|
|
height: 80%;
|
|
|
|
overflow: hidden;
|
|
|
|
border: 3px solid transparent;
|
|
|
|
.slide-1 {
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
.bigimg {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: fill;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.swiper-button-prev.swiper-button-disabled,
|
|
|
|
.swiper-button-next.swiper-button-disabled {
|
|
|
|
opacity: 0.35;
|
|
|
|
cursor: auto;
|
|
|
|
pointer-events: none;
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.gallery-thumbs {
|
|
|
|
width: 100%;
|
|
|
|
height: 18%;
|
|
|
|
.slide {
|
|
|
|
width: 20%;
|
|
|
|
border: 3px solid transparent;
|
|
|
|
overflow: hidden;
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: 260px;
|
|
|
|
height: 160px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeInfo {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
width: 100%;
|
|
|
|
background: #f0f0f0;
|
|
|
|
padding: 8px 0px;
|
|
|
|
font-size: 14px;
|
|
|
|
text-align: center;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.swiper-button-next.swiper-button-white,
|
|
|
|
.swiper-container-rtl .swiper-button-prev.swiper-button-white,
|
|
|
|
.swiper-button-prev.swiper-button-white,
|
|
|
|
.swiper-container-rtl .swiper-button-next.swiper-button-white {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
border-radius: 30px;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 30px;
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 60px;
|
|
|
|
}
|
|
|
|
.swiper-button-next:after,
|
|
|
|
.swiper-container-rtl .swiper-button-prev:after,
|
|
|
|
.swiper-button-prev:after,
|
|
|
|
.swiper-container-rtl .swiper-button-next:after {
|
|
|
|
transform: scale(0.5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|