单位与部门

This commit is contained in:
孙景学
2025-07-16 11:22:57 +08:00
parent 54f5ad64ca
commit 1e5e5d4987
17 changed files with 147 additions and 117 deletions

View File

@ -51,7 +51,7 @@ const DetailView: React.FC<DetailViewProps> = ({ visible, onClose, detailId }) =
// 把info数组两两合并成一行显示
function renderInfoTable(infoArr: InfoItem[]) {
const rows = [];
for (let i = 0; i < infoArr.length; i += 2) {
for (let i = 0; i < infoArr.length; i++) {
rows.push(
<>
<Descriptions.Item label={`变更前-${infoArr[i].fieldAnnotation}` }>{infoArr[i].oldValue}</Descriptions.Item>