custom/领悦

This commit is contained in:
lys 2024-10-21 15:47:06 +08:00
parent 78d66f342f
commit 92d75bf369
1 changed files with 4 additions and 1 deletions

View File

@ -43,7 +43,10 @@ class HistoryVouncherDetail extends Component {
...o, render: text => {
let arr = [];
text && text.map(v => {
arr.push(<a className="child-item wdb">{`${v.fzhslx}${v.bh}/${v.mc}`}</a>);
arr.push(<React.Fragment>
<a className="child-item wdb">{`${v.fzhslx}${v.bh}/${v.mc}`}</a>
<br/>
</React.Fragment>);
});
return (<span>{arr}</span>);
}