|
@@ -24,22 +24,22 @@ const ComplaintReturnVisit: React.FC = (props: any) => {
|
|
|
},
|
|
|
{
|
|
|
title: '投诉人',
|
|
|
- dataIndex: 'user_name',
|
|
|
+ dataIndex: 'apply_people',
|
|
|
search: true,
|
|
|
},
|
|
|
{
|
|
|
title: '联系电话',
|
|
|
- dataIndex: 'user_name',
|
|
|
+ dataIndex: 'apply_people_phone',
|
|
|
search: true,
|
|
|
},
|
|
|
{
|
|
|
title: '投诉内容',
|
|
|
- dataIndex: 'user_name',
|
|
|
+ dataIndex: 'apply_content',
|
|
|
search: false,
|
|
|
},
|
|
|
{
|
|
|
title: '投诉日期',
|
|
|
- dataIndex: 'user_name',
|
|
|
+ dataIndex: 'created_at',
|
|
|
search: false,
|
|
|
},
|
|
|
{
|
|
@@ -52,6 +52,16 @@ const ComplaintReturnVisit: React.FC = (props: any) => {
|
|
|
3: { text: '已完结' },
|
|
|
}
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '状态',
|
|
|
+ dataIndex: 'status',
|
|
|
+ search: false,
|
|
|
+ valueEnum: {
|
|
|
+ 1: { text: '未派单' },
|
|
|
+ 2: { text: '已派单' },
|
|
|
+ 3: { text: '已完结' },
|
|
|
+ }
|
|
|
+ },
|
|
|
{
|
|
|
title: '操作',
|
|
|
dataIndex: 'option',
|