币种字段名修改

This commit is contained in:
mzr 2025-03-09 17:38:04 +08:00
parent 778069a87d
commit 62badd579a
1 changed files with 4 additions and 4 deletions

View File

@ -2321,13 +2321,13 @@ class ExportVrify extends Component {
} }
}, },
{ {
title: (<div fieldid="currtypeName" className="mergecells">{json['20020VRIFYPAGE-000034']}</div>),/* 国际化处理 币种*/ title: (<div fieldid="m_currtypeName" className="mergecells">{json['20020VRIFYPAGE-000034']}</div>),/* 国际化处理 币种*/
dataIndex: "currtypeName", dataIndex: "m_currtypeName",
key: "currtypeName", key: "m_currtypeName",
width: 100, width: 100,
render: (text, record, index) => { render: (text, record, index) => {
return ( return (
<div fieldid="currtypeName" className="defovercol">{text==null||(text&&!text.display)?<span>&nbsp;</span>:text.display}</div> <div fieldid="m_currtypeName" className="defovercol">{text==null||(text&&!text.display)?<span>&nbsp;</span>:text.display}</div>
); );
} }
}, },