@if (consultations && consultations.length > 0) {

客户咨询记录

@for (item of filteredConsultations; track item.id) {
{{item.customer.charAt(0)}}

{{item.customer}}

{{item.time}}

{{item.priority === 'high' ? '紧急' : '普通'}}

{{item.content}}

}
@if (filteredConsultations.length === 0 && searchKeyword) {

未找到匹配记录

尝试其他关键词搜索

}
} @else {

客户咨询记录

暂无咨询记录

还没有客户咨询记录

}