fix(supervision): 修正特殊处置企业信息列表隐患数据字段映射

- 将轻微隐患数字段从 minorCount 更新为 specialMinorCount
- 将一般隐患数字段从 generalCount 更新为 specialGeneralCount
master
fangjiakai 2026-01-21 13:47:05 +08:00
parent e51f198be1
commit b4005263b8
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@ function CorpInfoList(props) {
columns={[ columns={[
{ title: "企业名称", dataIndex: "corpName" }, { title: "企业名称", dataIndex: "corpName" },
{ title: "一般隐患", children: [ { title: "一般隐患", children: [
{ title: "轻微隐患数", dataIndex: "minorCount" }, { title: "轻微隐患数", dataIndex: "specialMinorCount" },
{ title: "一般隐患数", dataIndex: "generalCount" }, { title: "一般隐患数", dataIndex: "specialGeneralCount" },
] }, ] },
{ {
title: "操作", title: "操作",