dev_1.2
luotaiqian 2026-07-22 11:57:46 +08:00
parent d1ca41a530
commit e095abcd82
1 changed files with 7 additions and 7 deletions

View File

@ -174,13 +174,13 @@ const SiteReviewNotice = (props) => {
const columns = [ const columns = [
{ title: "机构名称", dataIndex: "unitName", ellipsis: true }, { title: "机构名称", dataIndex: "unitName", ellipsis: true },
{ {
title: "现场审查时间", dataIndex: "reviewDateStart", width: 180, title: "现场审查时间", dataIndex: "reviewDateStart",
render: (val) => val ? dayjs(val).format("YYYY-MM-DD HH:mm") : "-", render: (val) => val ? dayjs(val).format("YYYY-MM-DD HH:mm") : "-",
}, },
{ title: "审查地点", dataIndex: "reviewLocation", width: 200, ellipsis: true }, { title: "审查地点", dataIndex: "reviewLocation", ellipsis: true },
{ title: "审查组成员", dataIndex: "reviewMembers", width: 140, ellipsis: true }, { title: "审查组成员", dataIndex: "reviewMembers", ellipsis: true },
{ {
title: "状态", dataIndex: "status", width: 120, title: "状态", dataIndex: "status",
render: (status) => { render: (status) => {
const cfg = ON_SITE_REVIEW_STATUS_MAP[status]; const cfg = ON_SITE_REVIEW_STATUS_MAP[status];
return cfg ? <Tag color={cfg.color}>{cfg.label}</Tag> : (status || "-"); return cfg ? <Tag color={cfg.color}>{cfg.label}</Tag> : (status || "-");