diff --git a/src/components/CustomPages/SK/SK002ShowSummary.js b/src/components/CustomPages/SK/SK002ShowSummary.js
index 8270944..becac23 100644
--- a/src/components/CustomPages/SK/SK002ShowSummary.js
+++ b/src/components/CustomPages/SK/SK002ShowSummary.js
@@ -31,9 +31,10 @@ class SK002ShowSummary extends React.Component {
let json = initFilter(this.props.login.OrgId, "", "", 1, 1);
json.Parameter22 = this.props.data.ORG_ID_HV;
extendInclude(json, 'Nav_Type');
- extendInclude(json, 'Nav_Area');
+ // extendInclude(json, 'Nav_Area');
extendInclude(json, 'Nav_Details');
extendInclude(json, 'Nav_RiskName');
+ extendInclude(json, 'Nav_ProductionUnit');
extendInclude(json, 'Nav_Details.Nav_DetailContents.Nav_Contents');
extendInclude(json, 'Nav_Details.Nav_DetailContents.Nav_DetailBasics.Nav_Law');
extendInclude(json, 'Nav_Details.Nav_DetailContents.Nav_DetailHiddens.Nav_Question');
@@ -82,7 +83,7 @@ class SK002ShowSummary extends React.Component {
| 序号 |
生产单元 |
- 辨识区域 |
+ {/* 辨识区域 | */}
风险名称 |
风险描述 |
风险类别 |
@@ -110,9 +111,9 @@ class SK002ShowSummary extends React.Component {
{item.Nav_ProductionUnit?.NAME}
|
-
+ {/* |
{item.Nav_Area?.NAME}
- |
+ */}
{item.RISK_NAME}
|
@@ -148,12 +149,12 @@ class SK002ShowSummary extends React.Component {
})}
- {item.MEASURE}
- {/* { item.Nav_Details && item.Nav_Details?.map((item2, i) => {
+ {/* {item.MEASURE} */}
+ { item.Nav_Details && item.Nav_Details?.map((item2, i) => {
if (item2) {
return
}
- })} */}
+ })}
|
{item.CHECKCONTENTS}
diff --git a/src/components/CustomPages/SK/SK004ShowSummary.js b/src/components/CustomPages/SK/SK004ShowSummary.js
index 24b70d2..2de02f8 100644
--- a/src/components/CustomPages/SK/SK004ShowSummary.js
+++ b/src/components/CustomPages/SK/SK004ShowSummary.js
@@ -34,6 +34,7 @@ class SK004ShowSummary extends React.Component {
extendInclude(json, 'Nav_Area');
extendInclude(json, 'Nav_Details');
extendInclude(json, 'Nav_RiskName');
+ extendInclude(json, 'Nav_ProductionUnit');
extendInclude(json, 'Nav_Departs.Nav_Department');
extendInclude(json, 'Nav_Departs.Nav_User');
extendInclude(json, 'Nav_Details.Nav_DetailContents.Nav_Contents');
|