FEAT => 本次更新项目为:

This commit is contained in:
超级老白兔
2025-09-03 10:45:19 +08:00
parent 414660a0a5
commit c6da2062f2
2 changed files with 30 additions and 4 deletions

View File

@@ -63,7 +63,6 @@
.lastMessage {
font-size: 12px;
color: #8c8c8c;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
flex: 1;
@@ -71,7 +70,7 @@
padding-right: 5px;
height: 18px; // 添加固定高度
line-height: 18px; // 设置行高与高度一致
&::before {
content: attr(data-count);
position: absolute;
@@ -88,7 +87,7 @@
text-align: center;
display: none;
}
&[data-count]:not([data-count=""]):not([data-count="0"]) {
&::before {
display: inline-block;
@@ -106,7 +105,7 @@
}
}
}
.lastDayMessage {
position: absolute;
bottom: 0;

View File

@@ -0,0 +1,27 @@
export interface FriendMessage {
id: number;
wechatFriendId: number;
wechatAccountId: number;
tenantId: number;
accountId: number;
synergyAccountId: number;
content: string;
msgType: number;
msgSubType: number;
msgSvrId: string;
isSend: boolean;
createTime: string;
isDeleted: boolean;
deleteTime: string;
sendStatus: number;
wechatTime: number;
origin: number;
msgId: number;
recalled: boolean;
}
export interface Messages {
friendMessage: FriendMessage | null;
chatroomMessage: string;
seq: number;
cmdType: string;
}