@if (complaint.customerName) {
客户:
{{ complaint.customerName }}
}
@if (complaint.source === 'wechat_auto' && complaint.wechatGroupName) {
📱 微信群:
{{ complaint.wechatGroupName }}
@if (complaint.keywordMatched && complaint.keywordMatched.length > 0) {
匹配关键词:
@for (keyword of complaint.keywordMatched; track keyword) {
{{ keyword }}
}
}
}
@if (complaint.assignedTo) {
👤 处理人:
{{ complaint.assignedTo }}
}
@if (complaint.tags && complaint.tags.length > 0) {
}
投诉内容
{{ complaint.description }}
@if (complaint.images && complaint.images.length > 0) {
相关图片
@for (image of complaint.images; track $index) {
![]()
}
}
提交时间:
{{ complaint.submittedAt | date:'yyyy-MM-dd HH:mm' }}
处理天数:
{{ getDaysInProgress(complaint) }} 天
@if (complaint.resolvedAt) {
解决时间:
{{ complaint.resolvedAt | date:'yyyy-MM-dd HH:mm' }}
}
@if (complaint.handlerComment) {
处理意见
{{ complaint.handlerComment }}
@if (complaint.handlerName) {
处理人:
{{ complaint.handlerName }}
}
}
@if (complaint.solution) {
解决方案
{{ complaint.solution }}
}
{{ complaint.handlerComment }}
@if (complaint.handlerName) {