代码提交

This commit is contained in:
2025-08-01 14:37:54 +08:00
parent cd0e77b332
commit 669eac0d3d
15 changed files with 91 additions and 42 deletions

View File

@@ -613,9 +613,9 @@ div::-webkit-scrollbar-track {
padding: 0 8px 0 0;
box-sizing: border-box;
text-overflow: ellipsis; //超出内容...展示
word-break: keep-all; //是否折断文本keep-all表示不折断
word-break: keep-all; //是否折断文本,keep-all表示不折断
white-space: nowrap; //不换行展示文本
overflow: hidden; //超出部分隐藏与text-overflow配合使用
overflow: hidden; //超出部分隐藏,与text-overflow配合使用
flex: 1; //这个是跟左侧的图片组成的一个flex布局
}

View File

@@ -632,9 +632,9 @@ div::-webkit-scrollbar-track {
padding: 0 8px 0 0;
box-sizing: border-box;
text-overflow: ellipsis; //超出内容...展示
word-break: keep-all; //是否折断文本keep-all表示不折断
word-break: keep-all; //是否折断文本,keep-all表示不折断
white-space: nowrap; //不换行展示文本
overflow: hidden; //超出部分隐藏与text-overflow配合使用
overflow: hidden; //超出部分隐藏,与text-overflow配合使用
flex: 1; //这个是跟左侧的图片组成的一个flex布局
}

View File

@@ -440,9 +440,9 @@ div::-webkit-scrollbar-track {
padding: 0 8px 0 0;
box-sizing: border-box;
text-overflow: ellipsis; //超出内容...展示
word-break: keep-all; //是否折断文本keep-all表示不折断
word-break: keep-all; //是否折断文本,keep-all表示不折断
white-space: nowrap; //不换行展示文本
overflow: hidden; //超出部分隐藏与text-overflow配合使用
overflow: hidden; //超出部分隐藏,与text-overflow配合使用
flex: 1; //这个是跟左侧的图片组成的一个flex布局
}

View File

@@ -515,9 +515,9 @@ div::-webkit-scrollbar-track {
padding: 0 8px 0 0;
box-sizing: border-box;
text-overflow: ellipsis; //超出内容...展示
word-break: keep-all; //是否折断文本keep-all表示不折断
word-break: keep-all; //是否折断文本,keep-all表示不折断
white-space: nowrap; //不换行展示文本
overflow: hidden; //超出部分隐藏与text-overflow配合使用
overflow: hidden; //超出部分隐藏,与text-overflow配合使用
flex: 1; //这个是跟左侧的图片组成的一个flex布局
}

View File

@@ -8,27 +8,27 @@
<div class="text-list">
<div>
<div>姓名</div>
<div>姓名:</div>
<div id="nickname">{{ user.nickName }}</div>
</div>
<div>
<div>用户名称</div>
<div>用户名称:</div>
<div>{{ user.userName }}</div>
</div>
<div>
<div>手机号码</div>
<div>手机号码:</div>
<div>{{ user.phonenumber }}</div>
</div>
<div>
<div>用户邮箱</div>
<div>用户邮箱:</div>
<div>{{ user.email }}</div>
</div>
<!-- <div>
<div>所属部门</div>
<div>所属部门:</div>
<div>{{ user.dept.deptName }} / {{ postGroup }}</div>
</div> -->
<div>
<div>所属角色</div>
<div>所属角色:</div>
<div>{{ displayRole(roleGroup) }}</div>
</div>
</div>
@@ -44,9 +44,9 @@
<div>{{ v.content }}</div>
<!-- <div>2024-09-24</div>-->
</div>
<div v-else>
<!-- <div v-else>
暂无消息
</div>
</div> -->
</div>
</div>