style(后台密钥管理): 用户名列加宽至 260px 并允许换行,长用户名不再截断

This commit is contained in:
2026-09-13 10:51:19 +08:00
parent c81ebb7053
commit afa8560369
@@ -197,7 +197,7 @@ onMounted(load)
<thead>
<tr>
<th style="width: 58px">序号</th>
<th style="width: 190px">用户</th>
<th style="width: 260px">用户</th>
<th style="width: 230px">货源查询密钥</th>
<th style="width: 230px">外观专利密钥</th>
<th style="width: 230px">代理设置</th>
@@ -408,7 +408,7 @@ h3 {
width: 100%;
border-collapse: collapse;
table-layout: fixed;
min-width: 1240px;
min-width: 1310px;
}
.secrets-table-scroll th,
.secrets-table-scroll td {
@@ -439,6 +439,9 @@ h3 {
.user-name {
color: #24384d;
font-weight: 600;
/* 用户名(含中文)可完整换行展示,不截断 */
white-space: normal;
overflow-wrap: anywhere;
}
.module-cell {
display: flex;