|
@@ -60,7 +60,7 @@ const LockTabList = props => {
|
|
|
/> */}
|
|
/> */}
|
|
|
</Col>
|
|
</Col>
|
|
|
<Col span="16">
|
|
<Col span="16">
|
|
|
- <RenderLongleCon longgleService={item}></RenderLongleCon>
|
|
|
|
|
|
|
+ <RenderLongleCon longgleService={item} />
|
|
|
</Col>
|
|
</Col>
|
|
|
</Row>
|
|
</Row>
|
|
|
</List.Item>
|
|
</List.Item>
|
|
@@ -134,15 +134,13 @@ const LockTabList = props => {
|
|
|
const RenderLongleCon = ({ longgleService }) => {
|
|
const RenderLongleCon = ({ longgleService }) => {
|
|
|
return (
|
|
return (
|
|
|
<>
|
|
<>
|
|
|
- {showProductsStatus.includes(item.status) ? (
|
|
|
|
|
- <ProductLabel longgleService={item.product} />
|
|
|
|
|
- ) : null},
|
|
|
|
|
- {showNewLongleStatus.includes(item.status) ? (
|
|
|
|
|
- {item.NewKeyNum}
|
|
|
|
|
- ) : null},
|
|
|
|
|
- {showMarkStatus.includes(item.status) ? (
|
|
|
|
|
- {item.mark}
|
|
|
|
|
|
|
+ {showProductsStatus.includes(longgleService.status) ? (
|
|
|
|
|
+ <ProductLabel longgleService={longgleService.product} />
|
|
|
) : null}
|
|
) : null}
|
|
|
|
|
+ {showNewLongleStatus.includes(longgleService.status) ? (
|
|
|
|
|
+ <span>{longgleService.NewKeyNum}</span>
|
|
|
|
|
+ ) : null}
|
|
|
|
|
+ {showMarkStatus.includes(longgleService.status) ? <span>{longgleService.mark}</span> : null}
|
|
|
</>
|
|
</>
|
|
|
)
|
|
)
|
|
|
}
|
|
}
|