太湖公益

This commit is contained in:
@fawn-nine
2024-06-07 15:04:50 +08:00
parent 62282727ff
commit 9befb5c111
22 changed files with 620 additions and 130 deletions

View File

@@ -117,8 +117,8 @@
},
formatRichText(html) {
if(html == ''){
return '暂无内容';
if(html == '' || !html){
html = '暂无内容';
}
//控制图片大小
let newContent = html.replace(/<img[^>]*>/gi, function(match, capture) {
@@ -148,6 +148,7 @@
@import '@/style/mixin.scss';
.tabs {
background-color: $containerColor;
padding-bottom: 20rpx;
}
@@ -155,8 +156,7 @@
.box {
background-color: #fff;
@include pleft_right(10px);
min-height: calc(100vh - 270rpx);
@include pleft_right(10px);
padding-top: 20rpx;
}
@@ -172,4 +172,7 @@
line-height: 48rpx;
margin-top: 10rpx;
}
::v-deep body{
background-color: #fff;
}
</style>