@@ -121,6 +121,21 @@
required: true
},
{
+ field: 'staffPhone',
+ component: 'Input',
+ label: '负责人电话'
+ },
+ {
+ field: 'staffQq',
+ label: '负责人QQ'
+ field: 'staffTelephone',
+ label: '负责人座机'
field: 'remark',
component: 'InputTextArea',
componentProps: {
@@ -123,6 +123,21 @@
}
label: '备注',
component: 'InputTextArea'
@@ -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