fix: hide deleted signatures and fit uplink table

This commit is contained in:
hectorzhao
2026-08-26 16:10:46 +08:00
parent 444c65288c
commit 898471423f
4 changed files with 45 additions and 11 deletions
+8 -8
View File
@@ -283,20 +283,20 @@ export function AdminSmsUplinkRecordsPage() {
{
key: 'select',
title: '',
width: '72px',
width: '48px',
align: 'center',
render: () => <input aria-label="选择上行记录" className="admin-uplink-checkbox" type="checkbox" />,
},
{ key: 'phoneNumber', title: '手机号码', width: '170px', render: (record) => <strong>{record.phoneNumber}</strong> },
{ key: 'receivedAt', title: '上行时间', width: '220px', render: (record) => <strong>{getTime(record.receivedAt)}</strong> },
{ key: 'content', title: '上行内容', width: '360px', render: (record) => <span className="uplink-content" title={record.content}>{record.content}</span> },
{ key: 'channel', title: '上行通道', width: '260px', render: (record) => <strong>{record.channel?.name ?? record.channelId}</strong> },
{ key: 'accessNo', title: '上行接入号', width: '180px', render: (record) => <strong>{record.destId}</strong> },
{ key: 'matchStatus', title: '匹配状态', width: '140px', render: (record) => <strong>{matchStatusText(record.matchStatus)}</strong> },
{ key: 'phoneNumber', title: '手机号码', width: '120px', render: (record) => <strong>{record.phoneNumber}</strong> },
{ key: 'receivedAt', title: '上行时间', width: '156px', render: (record) => <strong>{getTime(record.receivedAt)}</strong> },
{ key: 'content', title: '上行内容', width: '260px', render: (record) => <span className="uplink-content" title={record.content}>{record.content}</span> },
{ key: 'channel', title: '上行通道', width: '160px', render: (record) => <strong>{record.channel?.name ?? record.channelId}</strong> },
{ key: 'accessNo', title: '上行接入号', width: '120px', render: (record) => <strong>{record.destId}</strong> },
{ key: 'matchStatus', title: '匹配状态', width: '100px', render: (record) => <strong>{matchStatusText(record.matchStatus)}</strong> },
{
key: 'actions',
title: '操作',
width: '140px',
width: '88px',
align: 'center',
render: (record) => (
<button className="admin-uplink-detail-link" onClick={() => openDetail(record)} type="button"></button>
+11 -1
View File
@@ -7791,7 +7791,17 @@
}
.admin-uplink-table-card .ui-table {
min-width: 1500px;
min-width: 1052px;
table-layout: fixed;
}
.admin-uplink-table-card .uplink-content {
-webkit-line-clamp: 2;
min-width: 0;
}
.admin-uplink-table-card .ui-table td strong {
overflow-wrap: anywhere;
}
.gateway-exception-list-heading {