Commit e1f3c630 authored by XieZhiXiong's avatar XieZhiXiong

chore: 跟进接口字段

parent 3f711c8f
......@@ -27,12 +27,46 @@ export interface FetchParams {
};
export interface ListItem {
id: number;
createTime: string;
content: string;
reason: string;
byMemberName: string;
remark: string;
/**
* 主键id
*/
id: number
/**
* 业务类型1-投诉2-建议
*/
type: number
/**
* 业务类型名称
*/
typeName: string
/**
* 事件分类
*/
classify: number
/**
* 事件分类名称
*/
classifyName: string
/**
* 投诉建议方
*/
name: string
/**
* 事件描述
*/
subject: string
/**
* 事件时间,格式为yyyy-MM-ddHH:mm:ss
*/
eventTime: string
/**
* 处理时间,格式为yyyy-MM-ddHH:mm:ss
*/
handleTime: string
/**
* 处理结果
*/
result: string
};
interface IProps extends MellowCardProps {
......@@ -61,26 +95,38 @@ const MemberFeedbackRecords: React.FC<IProps> = (props: IProps) => {
const recordColumns: EditableColumns[] = [
{
title: '标题',
dataIndex: 'remark',
title: '业务类型',
dataIndex: 'typeName',
},
{
title: '原因',
dataIndex: 'content',
title: '事件分类',
dataIndex: 'classifyName',
ellipsis: true,
},
{
title: '反馈方',
dataIndex: 'byMemberName',
title: '投诉建议方',
dataIndex: 'name',
},
{
title: '处理结果',
dataIndex: 'reason',
title: '事件描述',
dataIndex: 'subject',
ellipsis: true,
},
{
title: '单据时间',
dataIndex: 'createTime',
title: '事件时间',
dataIndex: 'eventTime',
align: 'center',
ellipsis: true,
},
{
title: '处理时间',
dataIndex: 'handleTime',
align: 'center',
ellipsis: true,
},
{
title: '处理结果',
dataIndex: 'result',
align: 'center',
ellipsis: true,
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment