fix(工作台): 修复工作台首页评审列表增加创建时间字段和排序
This commit is contained in:
parent
552682bd44
commit
d167dd2ba9
|
@ -153,7 +153,6 @@
|
|||
}
|
||||
|
||||
function changeProject() {
|
||||
emit('change');
|
||||
nextTick(() => {
|
||||
initCaseCount();
|
||||
emit('change');
|
||||
|
|
|
@ -166,6 +166,18 @@
|
|||
dataIndex: 'createUser',
|
||||
width: 200,
|
||||
},
|
||||
{
|
||||
title: 'common.createTime',
|
||||
slotName: 'createTime',
|
||||
dataIndex: 'createTime',
|
||||
showTooltip: true,
|
||||
sortable: {
|
||||
sortDirections: ['ascend', 'descend'],
|
||||
sorter: true,
|
||||
},
|
||||
width: 200,
|
||||
showDrag: true,
|
||||
},
|
||||
];
|
||||
|
||||
const { propsRes, propsEvent, loadList, setLoadListParams } = useTable(workReviewList, {
|
||||
|
|
Loading…
Reference in New Issue