Update aftersales confirmation labels

This commit is contained in:
Frudrax Cheng
2026-06-02 10:14:13 +08:00
parent 345ed223e2
commit 31df505735
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -155,7 +155,7 @@ function AftersalesPage() {
render: (type: AftersalesServiceType) => SERVICE_TYPE_LABEL[type] || type,
},
{
title: '负责技术员',
title: '处理人',
key: 'technician',
width: 120,
render: (_: any, record: AftersalesOrder) => record.technician?.name || '-',
+1 -1
View File
@@ -175,7 +175,7 @@ function AftersalesConfirmPage() {
<Card className="query-card aftersales-confirm-card" bordered={false}>
<div className="query-header">
<PublicLogo />
<h1 className="aftersales-title"></h1>
<h1 className="aftersales-title"></h1>
<p className="aftersales-serial">{order.serialNumber}</p>
</div>
+2 -2
View File
@@ -388,7 +388,7 @@ function AftersalesDetailPage() {
<Descriptions column={2} size="small" bordered style={{ marginBottom: 24 }}>
<Descriptions.Item label="客户公司">{order.companyName}</Descriptions.Item>
<Descriptions.Item label="负责技术员">
<Descriptions.Item label="处理人">
{order.technician?.name || '-'}
</Descriptions.Item>
<Descriptions.Item label="创建人">{order.creator?.name || '-'}</Descriptions.Item>
@@ -598,7 +598,7 @@ function AftersalesDetailPage() {
<td>{order.contactPhone}</td>
</tr>
<tr>
<th></th>
<th></th>
<td>{order.technician?.name || '-'}</td>
<th></th>
<td>{order.creator?.name || '-'}</td>