diff --git a/src/pages/Container/Supervision/Qualification/ViewInfo/index.js b/src/pages/Container/Supervision/Qualification/ViewInfo/index.js index db028c2..fee86df 100644 --- a/src/pages/Container/Supervision/Qualification/ViewInfo/index.js +++ b/src/pages/Container/Supervision/Qualification/ViewInfo/index.js @@ -140,7 +140,7 @@ function ViewInfo(props) { styles={{ label: { width: 200 }, content: { width: 500 } }} items={[ { label: "公司名称", children: corpInfoData.corpName }, - { label: "企业状态", children: corpInfoData.corpStateName }, + { label: "企业状态", children: (corpInfoData.corpStateName) ? corpInfoData.corpStateName : "-" }, { label: "开户人", children: corpInfoData.createName }, { label: "统一社会信用代码", children: corpInfoData.code }, { label: "属地", children: corpInfoData.cityName },