feature/2.9.9.2312.01-薪资核算列表在线编辑

This commit is contained in:
黎永顺 2023-12-12 10:41:33 +08:00
parent 253ba3cc8c
commit 717a88667c
1 changed files with 2 additions and 2 deletions

View File

@ -259,13 +259,13 @@ const traverse = (arr) => {
return {
title: item.text, width: item.width + "px", ellipsis: true,
dataIndex: item.column, children: traverse(item.children),
fixed: item.fixed || false, dataType: item.dataType
fixed: item.fixed || false, dataType: item.dataType, align: "center"
};
} else {
return {
title: item.text, width: item.width + "px", fixed: item.fixed || false,
dataIndex: item.column, ellipsis: true, lockStatus: item.lockStatus,
pattern: item.pattern, dataType: item.dataType
pattern: item.pattern, dataType: item.dataType, align: "center"
};
}
});