认证页面昵称超出问题
parent
9071696dc6
commit
7e88774683
|
@ -27,7 +27,7 @@
|
|||
<!-- 预防 style 状态 溢出 -->
|
||||
<view class="user_msg" style="width: 440rpx;" >
|
||||
<!-- nickName 为 用户昵称, infoName 为 实名信息名字-->
|
||||
<h4>{{ item.user.nickName == null || item.user.nickName == '' ? 'XXX': item.user.nickName }}</h4>
|
||||
<div class="nickNameBox">{{ item.user.nickName == null || item.user.nickName == '' ? 'XXX': item.user.nickName }}</div>
|
||||
<!-- 牛逼 通过才 显示时间 和 学校是吧 -->
|
||||
<!-- <p v-if="item.auditInfo == 1"
|
||||
style="width: 500rpx; height: 50rpx; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">
|
||||
|
@ -345,10 +345,12 @@ const getDictLabelByValue = (state) => {
|
|||
}
|
||||
|
||||
.user_msg {
|
||||
h4 {
|
||||
.nickNameBox {
|
||||
font-weight: 600;
|
||||
|
||||
height: 31rpx;
|
||||
max-width: 380rpx; /* 设置容器宽度 */
|
||||
white-space: nowrap; /* 防止换行 */
|
||||
overflow: hidden; /* 隐藏超出部分 */
|
||||
text-overflow: ellipsis; /* 超出部分显示省略号 */
|
||||
font-size: 30rpx;
|
||||
text-align: left;
|
||||
color: #000000 100%;
|
||||
|
|
Loading…
Reference in New Issue