|
|
|
@ -174,7 +174,7 @@
|
|
|
|
|
<!-- 点击出现大图 -->
|
|
|
|
|
<div v-if="showBigpic" class="showPic" @click="closePic">
|
|
|
|
|
<div class="picboxI">
|
|
|
|
|
<img class="maskPic" :src="photoPic" />
|
|
|
|
|
<img class="maskPic" :src="bigPhotoPic" />
|
|
|
|
|
<i @click="closePic" class="el-icon-circle-close"></i>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -217,6 +217,7 @@ export default {
|
|
|
|
|
isreadshow: false,
|
|
|
|
|
showBigpic: false,
|
|
|
|
|
textInfo: "",
|
|
|
|
|
bigPhotoPic: "", //大图路径
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
@ -229,7 +230,8 @@ export default {
|
|
|
|
|
this.getSearchgj();
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
handleBigPicbox() {
|
|
|
|
|
handleBigPicbox(val) {
|
|
|
|
|
this.bigPhotoPic = val;
|
|
|
|
|
this.showBigpic = true;
|
|
|
|
|
},
|
|
|
|
|
closePic() {
|
|
|
|
@ -446,13 +448,13 @@ export default {
|
|
|
|
|
animation-duration: 0.65s;
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
max-width: 1366px;
|
|
|
|
|
max-height: 768px;
|
|
|
|
|
max-width: 1280px;
|
|
|
|
|
max-height: 720px;
|
|
|
|
|
margin: auto;
|
|
|
|
|
}
|
|
|
|
|
.el-icon-circle-close {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: -10px;
|
|
|
|
|
right: -24px;
|
|
|
|
|
font-size: 48px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|