|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div class="pc-main">
|
|
|
- <div class="pc-bg" ref="ref_pcBg" @click="showInfo = false, infoCurrent = ''">
|
|
|
+ <div class="pc-bg" ref="ref_pcBg" @click="showInfo = false, infoCurrent = {}">
|
|
|
<template v-for="(item, index) in BgImgMapper">
|
|
|
<div :style="`background-image: url(${item});`" class="animate__animated"/>
|
|
|
</template>
|
|
@@ -20,7 +20,7 @@
|
|
|
<div class="pc-info-block">
|
|
|
<template v-for="(item, index) in InfoMapper">
|
|
|
<div v-if="index > 0" class="pc-info-label-line"></div>
|
|
|
- <div class="pc-info-label __hover" @click="item.href ? toHref(item) : switchInfo(item.mainImg)">{{item.label}}</div>
|
|
|
+ <div class="pc-info-label __hover" @click="item.href ? toHref(item) : switchInfo(item)">{{item.label}}</div>
|
|
|
</template>
|
|
|
</div>
|
|
|
<!-- <div class="pc-info-input">-->
|
|
@@ -49,7 +49,22 @@
|
|
|
</template>
|
|
|
</div>
|
|
|
<div v-show="showInfo" class="info-dialog animate__animated animate__fadeInRight" ref="ref_infoDialog">
|
|
|
- <img :src="infoCurrent"/>
|
|
|
+ <img :src="infoCurrent?.mainImg"/>
|
|
|
+ <div class="ldgh-son" v-if="infoCurrent?.ldghSonImg">
|
|
|
+ <template v-for="(s, sI) in infoCurrent.ldghSonImg">
|
|
|
+ <div class="ldgh-son-item">
|
|
|
+ <el-image
|
|
|
+ :src="s"
|
|
|
+ :zoom-rate="1.2"
|
|
|
+ :initial-index="sI"
|
|
|
+ :preview-src-list="infoCurrent.ldghSonImg"
|
|
|
+ fit="cover"
|
|
|
+ :preview-teleported="true"
|
|
|
+ :hide-on-click-modal="true"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -81,7 +96,7 @@ export default defineComponent({
|
|
|
const state = reactive({
|
|
|
bgImgIndex: 0,
|
|
|
showInfo: false,
|
|
|
- infoCurrent: '',
|
|
|
+ infoCurrent: <any>{},
|
|
|
InfoMapper: infoMapper,
|
|
|
infoInput: '',
|
|
|
LogoIcon: logoIcon,
|
|
@@ -93,12 +108,12 @@ export default defineComponent({
|
|
|
window.open(val.href, '_blank')
|
|
|
}
|
|
|
|
|
|
- const switchInfo = (img) => {
|
|
|
- if (img === state.infoCurrent) {
|
|
|
+ const switchInfo = (item: any) => {
|
|
|
+ if (item.mainImg === state.infoCurrent.mainImg) {
|
|
|
return
|
|
|
}
|
|
|
nextTick(() => {
|
|
|
- state.infoCurrent = img
|
|
|
+ state.infoCurrent = item
|
|
|
state.showInfo = false
|
|
|
setTimeout(() => {
|
|
|
state.showInfo = true
|
|
@@ -337,6 +352,28 @@ export default defineComponent({
|
|
|
>img {
|
|
|
width: 100%;
|
|
|
}
|
|
|
+ .ldgh-son {
|
|
|
+ position: absolute;
|
|
|
+ top: 174px;
|
|
|
+ left: 104px;
|
|
|
+ width: 1206px;
|
|
|
+ height: 344px;
|
|
|
+ //border: 1px solid #000000;
|
|
|
+ display: grid;
|
|
|
+ grid-template-rows: repeat(2, 94px);
|
|
|
+ grid-template-columns: repeat(5, 194px);
|
|
|
+ row-gap: 158px;
|
|
|
+ column-gap: 60px;
|
|
|
+ .ldgh-son-item {
|
|
|
+ //border: 1px solid #000000;
|
|
|
+ cursor: pointer;
|
|
|
+ .el-image {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ opacity: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</style>
|