|
@@ -72,7 +72,7 @@
|
|
|
</div>
|
|
|
<div class="rightTxt">
|
|
|
<h3>{{ txtInfo.name }}</h3>
|
|
|
- <div>{{ txtInfo.description }}</div>
|
|
|
+ <div v-html="txtInfo.description"></div>
|
|
|
</div>
|
|
|
<!-- 返回按钮 -->
|
|
|
<div class="close" @click="modelShow = false"></div>
|
|
@@ -195,7 +195,9 @@ export default {
|
|
|
beforeUpdate() {}, //生命周期 - 更新之前
|
|
|
updated() {}, //生命周期 - 更新之后
|
|
|
beforeDestroy() {}, //生命周期 - 销毁之前
|
|
|
- destroyed() {}, //生命周期 - 销毁完成
|
|
|
+ destroyed() {
|
|
|
+ window.myKeyBlank = false;
|
|
|
+ }, //生命周期 - 销毁完成
|
|
|
activated() {}, //如果页面有keep-alive缓存功能,这个函数会触发
|
|
|
};
|
|
|
</script>
|
|
@@ -225,6 +227,7 @@ export default {
|
|
|
z-index: -1;
|
|
|
}
|
|
|
.ifrCon {
|
|
|
+ background-color: #d9d9d9;
|
|
|
position: relative;
|
|
|
width: 100%;
|
|
|
height: calc(100% - 60px);
|
|
@@ -253,7 +256,8 @@ export default {
|
|
|
}
|
|
|
& > img {
|
|
|
width: 100%;
|
|
|
- max-height: 100%;
|
|
|
+ height: 100%;
|
|
|
+ object-fit: contain;
|
|
|
}
|
|
|
.fullTitle {
|
|
|
width: 100%;
|
|
@@ -471,8 +475,8 @@ export default {
|
|
|
background: url("../../../assets/img/close.png");
|
|
|
background-size: 100% 100%;
|
|
|
}
|
|
|
- @media screen and (max-width: 350px) {
|
|
|
- .top{
|
|
|
+ @media screen and (max-width: 355px) {
|
|
|
+ .top {
|
|
|
font-size: 12px !important;
|
|
|
}
|
|
|
.conten {
|
|
@@ -481,6 +485,9 @@ export default {
|
|
|
.contenBox {
|
|
|
width: 100% !important;
|
|
|
justify-content: center;
|
|
|
+ .row{
|
|
|
+ margin-right: 0 !important;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|