master
fanluyan 2 years ago
commit 4bef8b53a3

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

@ -438,13 +438,13 @@ export default {
animation-duration: 0.65s; animation-duration: 0.65s;
img { img {
max-width: 1366px; max-width: 1280px;
max-height: 768px; max-height: 720px;
margin: auto; margin: auto;
} }
.el-icon-circle-close { .el-icon-circle-close {
position: absolute; position: absolute;
right: -10px; right: -24px;
font-size: 48px; font-size: 48px;
color: #fff; color: #fff;
cursor: pointer; cursor: pointer;

Loading…
Cancel
Save