feat(web): show conversation value group
This commit is contained in:
@@ -101,6 +101,12 @@ export function ConversationList({ onAfterSelect }: ConversationListProps) {
|
|||||||
>
|
>
|
||||||
{getEnumLabel(IMConversationStatusLabels, conversation.status)}
|
{getEnumLabel(IMConversationStatusLabels, conversation.status)}
|
||||||
</span>
|
</span>
|
||||||
|
{conversation.status === IMConversationStatus.Pending &&
|
||||||
|
conversation.currentTeamName ? (
|
||||||
|
<span className="rounded bg-muted px-1 py-0.5">
|
||||||
|
值班组:{conversation.currentTeamName}
|
||||||
|
</span>
|
||||||
|
) : null}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -43,6 +43,8 @@ export type AgentConversation = {
|
|||||||
priority: number
|
priority: number
|
||||||
currentAssigneeId: number
|
currentAssigneeId: number
|
||||||
currentAssigneeName?: string
|
currentAssigneeName?: string
|
||||||
|
currentTeamId: number
|
||||||
|
currentTeamName?: string
|
||||||
lastMessageId: number
|
lastMessageId: number
|
||||||
lastMessageAt?: string
|
lastMessageAt?: string
|
||||||
lastActiveAt?: string
|
lastActiveAt?: string
|
||||||
|
|||||||
Reference in New Issue
Block a user