feat(credit): 添加客户列表跟进人字段显示
- 在表格列配置中增加跟进人列定义 - 设置跟进人列的数据索引为 realName - 配置跟进人列宽度为 120px 并居中对齐 - 将 realName 字段添加到列表查询参数中
This commit is contained in:
@@ -394,6 +394,13 @@ const allColumns = ref<ColumnItem[]>([
|
|||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
customRender: ({text}) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
|
customRender: ({text}) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '跟进人',
|
||||||
|
dataIndex: 'realName',
|
||||||
|
key: 'realName',
|
||||||
|
width: 120,
|
||||||
|
align: 'center'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '操作',
|
title: '操作',
|
||||||
key: 'action',
|
key: 'action',
|
||||||
@@ -412,6 +419,7 @@ const defaultVisibleColumns = [
|
|||||||
'price',
|
'price',
|
||||||
'years',
|
'years',
|
||||||
'city',
|
'city',
|
||||||
|
'realName',
|
||||||
'step',
|
'step',
|
||||||
'files',
|
'files',
|
||||||
// 'status',
|
// 'status',
|
||||||
|
|||||||
Reference in New Issue
Block a user