123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 |
- <template>
- <div class="picture-area" :style="getAreaStyle()">
- <SerialNumberPosition :property="data.property" />
- <div ref="pictureArea" class="main">
- <div class="view-area">
- <template v-if="'list' === data.property.view_method">
- <el-carousel
- ref="pictureCarousel"
- class="view-list"
- indicator-position="none"
- :autoplay="false"
- :style="{ height: elementHeight - 144 - 17 + 'px' }"
- >
- <el-carousel-item v-for="(file, i) in data.file_list" :key="i">
- <el-image :id="file.file_id" :src="file.file_url" fit="contain" />
- </el-carousel-item>
- </el-carousel>
- <div class="container-box">
- <button v-if="viewLeftRightBtn" class="arrow left" @click="scroll(-1)">
- <i class="el-icon-arrow-left"></i>
- </button>
- <ul ref="container" class="view-list-bottom" :style="{ width: elementWidth + 'px' }">
- <li v-for="(file, i) in data.file_list" :key="i" @click="handleIndicatorClick(i)">
- <el-image :id="file.file_id" :src="file.file_url" fit="contain" />
- </li>
- </ul>
- <button v-if="viewLeftRightBtn" class="arrow right" @click="scroll(1)">
- <i class="el-icon-arrow-right"></i>
- </button>
- </div>
- </template>
- <ul v-else class="view-independent">
- <li v-for="(file, i) in data.file_list" :key="i" @click="handleIndicatorClick(i)">
- <el-image :id="file.file_id" :src="file.file_url" fit="contain" />
- </li>
- </ul>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { getPictureData } from '@/views/book/courseware/data/picture';
- import PreviewMixin from '../common/PreviewMixin';
- export default {
- name: 'PicturePreview',
- mixins: [PreviewMixin],
- data() {
- return {
- data: getPictureData(),
- curImgIndex: 0,
- elementWidth: 0,
- elementHeight: 0,
- viewLeftRightBtn: false,
- fileLen: 0,
- resizeObserver: null, // ResizeObserver 实例,用于监听元素大小变化
- };
- },
- watch: {
- data: {
- handler(val) {
- this.fileLen = val.file_list.length;
- if (this.fileLen > 0) {
- const ele = this.$refs.pictureArea;
- this.elementWidth = ele.clientWidth;
- this.elementHeight = ele.clientHeight;
- window.addEventListener('resize', this.handleResize);
- }
- },
- deep: true,
- },
- elementWidth(newWidth, oldWidth) {
- // console.log(`宽度从 ${oldWidth} 变为 ${newWidth}`);
- this.elementWidth = newWidth;
- this.isViewLeftRightBtn();
- },
- elementHeight(newHeight, oldHeight) {
- // console.log(`高度从 ${oldHeight} 变为 ${newHeight}`);
- this.elementHeight = newHeight;
- },
- },
- mounted() {
- this.$nextTick(() => {
- this.resizeObserver = new ResizeObserver((entries) => {
- for (let entry of entries) {
- this.elementWidth = entry.contentRect.width;
- this.elementHeight = entry.contentRect.height;
- }
- });
- this.resizeObserver.observe(this.$el);
- });
- },
- beforeDestroy() {
- window.removeEventListener('resize', this.handleResize);
- if (this.resizeObserver) {
- this.resizeObserver.disconnect();
- }
- },
- methods: {
- handleResize() {
- const width = this.$refs.pictureArea.clientWidth;
- if (width !== this.elementWidth) {
- this.elementWidth = width;
- }
- },
- // 是否显示左右箭头
- isViewLeftRightBtn() {
- // 计算底部列表图片宽度
- let listWidth = this.fileLen * this.data.min_width + 13 * (this.fileLen - 1);
- if (listWidth > this.elementWidth) {
- this.viewLeftRightBtn = true;
- } else {
- this.viewLeftRightBtn = false;
- }
- },
- handleIndicatorClick(index) {
- // 获取 Carousel 实例
- const carousel = this.$refs.pictureCarousel;
- // 切换到对应索引的图片
- carousel.setActiveItem(index);
- },
- // 滚动图片列表
- scroll(direction) {
- const container = this.$refs.container;
- const step = Number(this.data.min_width) + 13; // 每次滚动的距离
- this.scrollPosition += step * direction;
- container.scrollLeft += step * direction;
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .picture-area {
- display: grid;
- gap: 6px;
- padding: 8px;
- > .main {
- display: flex;
- margin: 4px auto;
- > span {
- display: flex;
- }
- }
- .main {
- grid-area: main;
- width: 100%;
- .view-area {
- width: 100%;
- :deep .el-carousel {
- margin-bottom: 17px;
- background-color: #d9d9d9;
- &__container::before {
- display: inline-block;
- padding-bottom: 55%;
- content: '';
- }
- &__container {
- height: 100%;
- }
- &__item {
- display: flex;
- justify-content: center;
- text-align: center;
- }
- }
- .container-box {
- position: relative;
- .arrow {
- position: absolute;
- top: 0;
- z-index: 10;
- height: 144px;
- text-align: center;
- background-color: rgba(0, 0, 0, 10%);
- border-radius: 0;
- }
- .arrow:hover {
- background-color: rgba(0, 0, 0, 30%);
- }
- .right {
- right: 0;
- }
- .view-list-bottom {
- display: flex;
- flex-wrap: nowrap;
- column-gap: 13px;
- min-width: 144px;
- overflow: hidden;
- li {
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #d9d9d9;
- }
- .el-image {
- width: 144px;
- height: 144px;
- cursor: pointer;
- }
- }
- }
- .view-independent {
- display: flex;
- flex-wrap: wrap;
- gap: 40px;
- li {
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #d9d9d9;
- }
- .el-image {
- width: 144px;
- height: 144px;
- }
- }
- }
- }
- }
- </style>
|