投诉处理概览

{{ stats().totalCount }}
总投诉数
{{ stats().pendingCount }}
待处理
{{ stats().processingCount }}
处理中
{{ stats().resolvedCount }}
已解决
{{ stats().highPriorityCount }}
高优先级
{{ stats().averageResolutionTime }}
平均解决时间
优先级分布
@for (priority of priorities; track priority.value) {
{{ priority.label }} {{ stats().priorityStats[priority.value] || 0 }}
}
问题类型统计
@for (type of complaintTypes; track type.value) {
{{ type.label }} {{ stats().typeStats[type.value] || 0 }}
}
@if (filteredComplaints() && filteredComplaints().length > 0) {
@for (complaint of filteredComplaints(); track complaint.id) {
{{ getTypeLabel(getComplaintType(complaint)) }} @if (complaint.customerName) { {{ complaint.customerName }} }
{{ getPriorityInfo(complaint.priority || 'low').label }}优先级
{{ complaint.status }} @if (isOverdue(complaint)) { 超时 }

{{ complaint.description }}

@if (complaint.images && complaint.images.length > 0) {
@for (image of complaint.images; track $index) { }
}
}
} @else {
📋
暂无投诉记录
当前筛选条件下没有找到相关的投诉记录
}