fix(系统设置): 修复系统设置资源池应用组织字段错误

This commit is contained in:
xinxin.wu 2024-10-29 11:37:50 +08:00 committed by 刘瑞斌
parent d618593ffe
commit 762ad82317
1 changed files with 2 additions and 2 deletions

View File

@ -195,8 +195,7 @@
}, },
{ {
title: 'system.resourcePool.orgRange', title: 'system.resourcePool.orgRange',
slotName: 'orgNames', dataIndex: 'orgId',
dataIndex: 'orgNames',
showInTable: true, showInTable: true,
showDrag: true, showDrag: true,
isTag: true, isTag: true,
@ -260,6 +259,7 @@
(item) => { (item) => {
return { return {
...item, ...item,
orgId: item.orgNames,
lastConcurrentNumber: item.type === 'Kubernetes' ? '-' : item.lastConcurrentNumber || 0, lastConcurrentNumber: item.type === 'Kubernetes' ? '-' : item.lastConcurrentNumber || 0,
}; };
} }