update config

This commit is contained in:
全栈小学生 2023-10-23 17:27:31 +08:00
parent 0acd66cbae
commit 637843f298
2 changed files with 31 additions and 2 deletions

View File

@ -50,12 +50,13 @@
"quickapp" : {}, "quickapp" : {},
/* */ /* */
"mp-weixin" : { "mp-weixin" : {
"appid" : "wx59e6ba6050bbe7bc", "appid" : "",
"setting" : { "setting" : {
"urlCheck" : false, "urlCheck" : false,
"es6" : true "es6" : true
}, },
"usingComponents" : true "usingComponents" : true,
"__usePrivacyCheck__" : true
}, },
"mp-alipay" : { "mp-alipay" : {
"usingComponents" : true "usingComponents" : true
@ -74,6 +75,13 @@
"router" : { "router" : {
"mode" : "history", "mode" : "history",
"base" : "/wap/" "base" : "/wap/"
},
"sdkConfigs" : {
"maps" : {
"qqmap" : {
"key" : ""
}
}
} }
}, },
"fallbackLocale" : "zh-Hans" "fallbackLocale" : "zh-Hans"

View File

@ -75,4 +75,25 @@ $uni-font-size-subtitle: 26px;
$uni-color-paragraph: #3f536e; // 文章段落颜色 $uni-color-paragraph: #3f536e; // 文章段落颜色
$uni-font-size-paragraph: 15px; $uni-font-size-paragraph: 15px;
/* 单行超出隐藏 */
.using-hidden {
word-break: break-all;
text-overflow: ellipsis;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
white-space: break-spaces;
}
/* 多行超出隐藏 */
.multi-hidden {
word-break: break-all;
text-overflow: ellipsis;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
@import '@/styles/uview-theme.scss'; @import '@/styles/uview-theme.scss';