123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 |
- <template>
- <div v-if="cItem.entity">
- <div class="first" v-show="!isShowDesc">
-
- <p class="title" v-if="cItem.entity.type != 'audio'">
- {{ cItem.entity.name }}
- </p>
- <template v-if="cItem.entity.type == 'img'">
- <div class="swcon swiper-container" id="imglist">
- <ul class="swiper-wrapper">
- <li
- class="swiper-slide"
- v-for="(sub, index) in cItem.file"
- :key="index"
- >
- <div class="sl-item">
- <img :src="sub.filePath" />
- </div>
- </li>
- </ul>
- </div>
- <template v-if="cItem.file.length > 1">
- <img
- class="vpagination left"
- :src="require('@/assets/images/icon/left.png')"
- @click="slide('slidePrev')"
- alt=""
- />
- <img
- class="vpagination right"
- :src="require('@/assets/images/icon/right.png')"
- @click="slide('slideNext')"
- alt=""
- />
- </template>
- <!-- <ul class="pagna" v-if="cItem.file.length > 1">
- <li
- v-for="(sub, i) in cItem.file"
- :class="{ active: i == active }"
- :key="i"
- ></li>
- </ul> -->
- </template>
- <template v-else>
- <iframe
- v-if="cItem.entity.type == 'model'"
- :src="`/model-page/model.html?m=${cItem.entity.filePath}`"
- frameborder="0"
- ></iframe>
- <video
- ref="itemvideo"
- controlslist="nodownload noplaybackrate"
- :disablePictureInPicture="true"
- v-else-if="cItem.entity.type == 'video'"
- controls
- :src="cItem.entity.filePath"
- loop
- autoplay
- ></video>
- <vAudio v-else :adata="cItem.entity"></vAudio>
- </template>
- <div class="bottom-area">
- <img
- class="desc"
- src="@/assets/images/icon/desc-mobile.png"
- @click="isShowDesc = true"
- />
- <img
- class="close"
- @click.stop="hideBroadcast"
- :src="require(`@/assets/images/icon/close.png`)"
- />
- </div>
- </div>
- <div class="second" v-show="isShowDesc">
- <article>
- <h1>
- {{item.entity.name}}
- </h1>
- <span class="age">
- {{item.entity.ageName}}
- </span>
-
- <span class="texture">
- {{item.entity.textureName}}
- </span>
- <p>{{item.entity.description}}</p>
- </article>
- <div class="bottom-area">
- <img
- class="close"
- @click="isShowDesc = false"
- :src="require(`@/assets/images/icon/close.png`)"
- />
- </div>
- </div>
- </div>
- </template>
- <script>
- import emitter from "@/mitt/index";
- import vAudio from "@/components/Audio";
- export default {
- name: "showCollection",
- props: ["item",],
- data() {
- return {
- isShowDesc: false,
- active: 0,
- swInstance: null,
- };
- },
- components: { vAudio },
- computed: {
- cItem() {
- return { ...this.item };
- },
- },
- watch: {
- },
- methods: {
- slide(type) {
- this.swInstance[type]();
- },
- hideBroadcast() {
- emitter.emit("closeCollection");
- },
- },
- mounted() {
- console.log('item: ', this.item);
- let that = this;
- this.$nextTick(() => {
- let t = setTimeout(() => {
- clearTimeout(t);
- this.swInstance = new Swiper("#imglist", {
- slidesPerView: "auto",
- normalizeSlideIndex: false,
- on: {
- slideChange() {
- that.active = this.realIndex;
- if (this.realIndex > that.cItem.file.length - 1)
- that.active = that.cItem.file.length - 1;
- },
- },
- });
- }, 200);
- });
- },
- };
- </script>
- <style lang="scss" scoped>
- .first {
- width: 100%;
- height: 100%;
- position: relative;
- color: #fff;
- > .title {
- position: absolute;
- top: 33px;
- left: 27px;
- font-size: 18px;
- line-height: 24px;
- font-weight: bold;
- width: 45%;
- z-index: 1;
- word-break: break-all;
- }
- > .swcon {
- position: absolute;
- top: 10%;
- width: 90%;
- height: 66%;
- .swiper-wrapper {
- padding: 0;
- width: 100%;
- .swiper-slide {
- width: 100%;
- transform-style: preserve-3d;
- position: relative;
- height: 100%;
- margin: 0 auto;
- transform: translate3d(0, 0, 0);
- .sl-item {
- width: 100%;
- height: 90%;
- position: relative;
- > img {
- width: auto;
- max-height: 90vh;
- max-width: 100%;
- cursor: pointer;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- }
- }
- }
- }
- .vpagination {
- position: absolute;
- top: 33px;
- cursor: pointer;
- width: 40px;
- }
- .left {
- right: calc(23px + 40px + 23px);
- }
- .right {
- right: 23px;
- }
- .pagna {
- position: absolute;
- bottom: 20px;
- left: 50%;
- transform: translateX(-50%);
- text-align: center;
- z-index: 999;
- > li {
- width: 10px;
- border-radius: 50%;
- height: 10px;
- background: rgba(51, 143, 123, 0.24);
- display: inline-block;
- margin: 0 4px;
- &.active {
- background: #338f7b;
- }
- }
- }
- iframe,
- audio,
- video {
- position: absolute;
- transform: translate(-50%, -50%);
- top: 45%;
- left: 50%;
- width: 90%;
- height: 66%;
- }
- audio {
- width: 50%;
- height: 20%;
- }
- > .bottom-area {
- position: absolute;
- bottom: 54px;
- left: 50%;
- transform: translateX(-50%);
- .desc {
- width: 56px;
- height: 56px;
- cursor: pointer;
- z-index: 1;
- }
- .close {
- margin-left: 29px;
- width: 56px;
- height: 56px;
- cursor: pointer;
- z-index: 1;
- }
- }
- }
- .second {
- width: 100%;
- height: 100%;
- position: relative;
- color: #333;
- > article {
- position: absolute;
- top: 62px;
- left: 42px;
- right: 42px;
- bottom: 144px;
- background: #FFFEF6;
- opacity: 0.95;
- border-radius: 4px 4px 4px 4px;
- overflow: auto;
- padding: 55px 28px 28px 28px;
- word-break: break-all;
- > h1 {
- font-size: 18px;
- font-weight: bold;
- line-height: 24px;
- margin-bottom: 30px;
- width: 65%;
- }
- > .age {
- font-weight: bold;
- font-size: 15px;
- line-height: 30px;
- }
- > .texture {
- font-weight: bold;
- font-size: 15px;
- line-height: 30px;
- margin-bottom: 8px;
- }
- p {
- line-height: 30px;
- font-size: 15px;
- }
- }
- > .bottom-area {
- position: absolute;
- bottom: 54px;
- left: 50%;
- transform: translateX(-50%);
- .close {
- width: 56px;
- height: 56px;
- cursor: pointer;
- z-index: 1;
- }
- }
- }
- </style>
|