|
@@ -7,6 +7,7 @@ export function getProjectTableColumns(): BasicColumn[] {
|
|
|
title: '项目编号',
|
|
|
dataIndex: 'code',
|
|
|
width: 100,
|
|
|
+ fixed: 'left',
|
|
|
customRender: ({ text, record }) => <router-link to={`/dashboard/project/${record.id}`}>{text}</router-link>
|
|
|
},
|
|
|
{
|
|
@@ -26,6 +27,18 @@ export function getProjectTableColumns(): BasicColumn[] {
|
|
|
width: 100
|
|
|
},
|
|
|
{
|
|
|
+ title: '电话',
|
|
|
+ dataIndex: 'staffPhone'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: 'QQ',
|
|
|
+ dataIndex: 'staffQq'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '座机',
|
|
|
+ dataIndex: 'staffTelephone'
|
|
|
+ },
|
|
|
+ {
|
|
|
title: '创建时间',
|
|
|
dataIndex: 'createTime',
|
|
|
width: 200
|