Merge branch 'dev' of http://47.92.113.182:3000/cq_anquan/safety-eval-service-frontend into dev
commit
92ddaa1272
|
|
@ -100,13 +100,8 @@ const SiteReviewNotice = (props) => {
|
|||
|
||||
const columns = [
|
||||
{ title: "通知编号", dataIndex: "id", width: 110 ,ellipsis: true },
|
||||
{
|
||||
title: "申请事项",
|
||||
dataIndex: "bizType",
|
||||
width: 120,
|
||||
render: (v) => BIZ_TYPE_MAP[v] || v || "-",
|
||||
},
|
||||
{ title: "监管部门", dataIndex: "supervisorContact", width: 130, ellipsis: true },
|
||||
{ title: "监管联系人", dataIndex: "supervisorContact", width: 130, ellipsis: true },
|
||||
{ title: "监管部门", dataIndex: "supervisorDept", width: 130, render: () => "重庆应急局" },
|
||||
{ title: "现场审查时间", dataIndex: "reviewDateStart", width: 180 },
|
||||
{ title: "审查地点", dataIndex: "reviewLocation", width: 180, ellipsis: true },
|
||||
{ title: "审查组", dataIndex: "reviewMembers", width: 130, ellipsis: true },
|
||||
|
|
@ -221,15 +216,11 @@ const SiteReviewNotice = (props) => {
|
|||
{currentRecord && (
|
||||
<Descriptions column={2} bordered size="small">
|
||||
<Descriptions.Item label="通知编号">{currentRecord.id}</Descriptions.Item>
|
||||
<Descriptions.Item label="申请事项">
|
||||
{BIZ_TYPE_MAP[currentRecord.bizType] || currentRecord.bizType || "-"}
|
||||
</Descriptions.Item>
|
||||
<Descriptions.Item label="监管联系人">{currentRecord.supervisorContact || "-"}</Descriptions.Item>
|
||||
<Descriptions.Item label="联系电话">{currentRecord.contactPhone || "-"}</Descriptions.Item>
|
||||
<Descriptions.Item label="现场审查时间" span={2}>{currentRecord.reviewDateStart || "-"}</Descriptions.Item>
|
||||
<Descriptions.Item label="审查地点" span={2}>{currentRecord.reviewLocation || "-"}</Descriptions.Item>
|
||||
<Descriptions.Item label="审查组成员" span={2}>{currentRecord.reviewMembers || "-"}</Descriptions.Item>
|
||||
<Descriptions.Item label="审查组长">{currentRecord.reviewLeader || "-"}</Descriptions.Item>
|
||||
<Descriptions.Item label="状态">
|
||||
<Tag color={ON_SITE_REVIEW_STATUS_MAP[currentRecord.status]?.color}>
|
||||
{ON_SITE_REVIEW_STATUS_MAP[currentRecord.status]?.label || currentRecord.status}
|
||||
|
|
|
|||
Loading…
Reference in New Issue