fix: fix the id value in the download data

Only the project_id column need to deal with the project id info, the other columns(such as: id) use the origin value

Closes-Bug: #1988967
Change-Id: I550c74c52efacc5219f2ff23d7d4b1f4d3fb04a7
This commit is contained in:
Jingwei.Zhang 2022-09-07 17:35:40 +08:00
parent a2dbe5ab8f
commit 1a3f4deed6

View File

@ -559,17 +559,19 @@ export class BaseTable extends React.Component {
sName = `${fTitle.split('ID')[0]}${sTitle}`;
}
let fIndex = it.idKey || rowKey;
let render = null;
if (
it.title.includes(t('Project')) &&
it.dataIndex === 'project_name'
) {
fIndex = 'project_id';
render = (_, record) => this.getProjectId(record);
}
return [
{
title: fTitle,
dataIndex: fIndex,
render: (_, record) => this.getProjectId(record),
render,
},
{
...it,