修复HiddenInfo错误
parent
567508dabb
commit
2218388674
|
|
@ -206,7 +206,7 @@ function HiddenInfo(props) {
|
|||
)
|
||||
}
|
||||
{
|
||||
(info.isConfirm === 1 && (info.hiddenConfirmUserCO && info.hiddenConfirmUserCO.length > 0)) && (
|
||||
(info.hiddenConfirmUserCO && info.hiddenConfirmUserCO.length > 0) && (
|
||||
<>
|
||||
<Divider orientation="left">隐患确认</Divider>
|
||||
{
|
||||
|
|
@ -379,7 +379,7 @@ function HiddenInfo(props) {
|
|||
<>
|
||||
<Divider orientation="left">整改信息</Divider>
|
||||
{
|
||||
info.hiddenSpecialList.map((item, index) => (
|
||||
info.hiddenRectifyUserCO.map((item, index) => (
|
||||
<Descriptions
|
||||
key={item.id}
|
||||
bordered
|
||||
|
|
@ -422,7 +422,7 @@ function HiddenInfo(props) {
|
|||
<>
|
||||
<Divider orientation="left">验收信息</Divider>
|
||||
{
|
||||
info.hiddenSpecialList.map((item, index) => (
|
||||
info.hiddenAcceptUserCO.map((item, index) => (
|
||||
<Descriptions
|
||||
key={item.id}
|
||||
bordered
|
||||
|
|
@ -446,7 +446,7 @@ function HiddenInfo(props) {
|
|||
<>
|
||||
<Divider orientation="left">验收打回信息</Divider>
|
||||
{
|
||||
info.hiddenSpecialList.map(item => (
|
||||
info.hiddenAcceptUserCO.map(item => (
|
||||
<Descriptions
|
||||
key={item.id}
|
||||
bordered
|
||||
|
|
|
|||
Loading…
Reference in New Issue