|
|
@@ -3,7 +3,7 @@
|
|
|
<div class="qaa_title">{{ work.answerQ }}</div>
|
|
|
<div class="qaa_img" v-if="work.imageList && work.imageList.length > 0">
|
|
|
<div v-for="(item, index) in work.imageList" :key="index">
|
|
|
- <img :src="item.url" alt="" @click="$hevueImgPreview(item.url)">
|
|
|
+ <el-image style="width: auto; height: 100%;cursor: pointer;max-height: 300px;" :src="item.url" alt="" :preview-src-list="[item.url]" fit="cover" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="qaa_type">{{ lang.ssQAQuestion }}</div>
|
|
|
@@ -292,12 +292,12 @@ export default {
|
|
|
margin: 10px;
|
|
|
}
|
|
|
|
|
|
-.qaa_img>div>img {
|
|
|
+/* .qaa_img>div>img {
|
|
|
width: auto;
|
|
|
height: 100%;
|
|
|
object-fit: cover;
|
|
|
cursor: pointer;
|
|
|
-}
|
|
|
+} */
|
|
|
|
|
|
|
|
|
|