From f6b2ed5fa1661219951e0bb208ccc39ed7a61058 Mon Sep 17 00:00:00 2001 From: luotaiqian <1147642922@qq.com> Date: Wed, 22 Jul 2026 16:31:23 +0800 Subject: [PATCH] on-site confirm --- .../QualApplication/SiteReviewNotice/index.js | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/src/pages/Container/QualApplication/SiteReviewNotice/index.js b/src/pages/Container/QualApplication/SiteReviewNotice/index.js index e5698a2..1e4a738 100644 --- a/src/pages/Container/QualApplication/SiteReviewNotice/index.js +++ b/src/pages/Container/QualApplication/SiteReviewNotice/index.js @@ -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 && ( {currentRecord.id} - - {BIZ_TYPE_MAP[currentRecord.bizType] || currentRecord.bizType || "-"} - {currentRecord.supervisorContact || "-"} {currentRecord.contactPhone || "-"} {currentRecord.reviewDateStart || "-"} {currentRecord.reviewLocation || "-"} {currentRecord.reviewMembers || "-"} - {currentRecord.reviewLeader || "-"} {ON_SITE_REVIEW_STATUS_MAP[currentRecord.status]?.label || currentRecord.status}