fix(用例管理): 修复功能用例关联文件列表表头不显示创建时间问题
--bug=1036212 --user=郭雨琦 https://www.tapd.cn/55049933/bugtrace/bugs/view/1155049933001036212
This commit is contained in:
parent
fd6d0352fb
commit
6c5a4470e7
|
@ -117,6 +117,12 @@ const { t } = useI18n();
|
||||||
dataIndex: 'fileType',
|
dataIndex: 'fileType',
|
||||||
width: 90,
|
width: 90,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: 'project.fileManagement.size',
|
||||||
|
dataIndex: 'size',
|
||||||
|
slotName: 'size',
|
||||||
|
width: 120,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: 'project.fileManagement.tag',
|
title: 'project.fileManagement.tag',
|
||||||
dataIndex: 'tags',
|
dataIndex: 'tags',
|
||||||
|
@ -132,6 +138,15 @@ const { t } = useI18n();
|
||||||
sorter: true,
|
sorter: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: 'project.fileManagement.createTime',
|
||||||
|
dataIndex: 'createTime',
|
||||||
|
width: 180,
|
||||||
|
sortable: {
|
||||||
|
sortDirections: ['ascend', 'descend'],
|
||||||
|
sorter: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: 'project.fileManagement.updater',
|
title: 'project.fileManagement.updater',
|
||||||
dataIndex: 'updateUser',
|
dataIndex: 'updateUser',
|
||||||
|
|
Loading…
Reference in New Issue