bug:16154、16187、16158、16151
parent
0b5bde42a8
commit
566288bb55
|
|
@ -79,7 +79,7 @@ function List(props) {
|
||||||
type="link"
|
type="link"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setViewRejectReasonModalVisible(true);
|
setViewRejectReasonModalVisible(true);
|
||||||
setCurrentRefusalReason(record.id);
|
setCurrentRefusalReason(record.refusalReason);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
驳回原因
|
驳回原因
|
||||||
|
|
|
||||||
|
|
@ -209,7 +209,7 @@ const ViewModalComponent = (props) => {
|
||||||
{ label: "项目人员数", children: info.personApplyList?.length },
|
{ label: "项目人员数", children: info.personApplyList?.length },
|
||||||
{ label: "申请时间", children: info.applyTime },
|
{ label: "申请时间", children: info.applyTime },
|
||||||
{ label: "申请状态", children: getLabelName({ list: ENCLOSED_AREA_AUDIT_STATUS_ENUM, status: info.auditFlag }) },
|
{ label: "申请状态", children: getLabelName({ list: ENCLOSED_AREA_AUDIT_STATUS_ENUM, status: info.auditFlag }) },
|
||||||
{ label: "申请人签字", children: (<PreviewImg files={info.informSignId} />) },
|
{ label: "申请人签字", children: (<PreviewImg files={info.informSignFile} />) },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<Divider orientation="left">人员信息</Divider>
|
<Divider orientation="left">人员信息</Divider>
|
||||||
|
|
|
||||||
|
|
@ -262,13 +262,14 @@ const InfoModalComponent = (props) => {
|
||||||
{ label: "相关方名称", children: info.vehicleCorpName },
|
{ label: "相关方名称", children: info.vehicleCorpName },
|
||||||
{ label: "项目名称", children: info.projectName },
|
{ label: "项目名称", children: info.projectName },
|
||||||
{ label: "审核人员", children: info.currentAuditUserName },
|
{ label: "审核人员", children: info.currentAuditUserName },
|
||||||
{ label: "时间范围", children: info.visitStartTime +'-'+ info.visitEndTime },
|
{ label: "时间范围", children: `${info.visitStartTime}-${info.visitEndTime}` },
|
||||||
{ label: "地域范围", children: info.gateLevelAuthArea && JSON.parse(info.gateLevelAuthArea).area.map(item => item.value).join("、") },
|
{ label: "地域范围", children: info.gateLevelAuthArea && JSON.parse(info.gateLevelAuthArea).area.map(item => item.value).join("、") },
|
||||||
{ label: "驾驶人员", children: info.drivingUserName },
|
{ label: "驾驶人员", children: info.drivingUserName },
|
||||||
{ label: "车辆类型", children: info.vehicleTypeName },
|
{ label: "车辆类型", children: info.vehicleTypeName },
|
||||||
{ label: "车牌类型", children: info.licenceTypeName },
|
{ label: "车牌类型", children: info.licenceTypeName },
|
||||||
{ label: "车牌号", children: info.licenceNo },
|
{ label: "车牌号", children: info.licenceNo },
|
||||||
{ label: "审核状态", children: getLabelName({ list: VEHICLE_AUDIT_STATUS_ENUM, status: info.auditFlag }) },
|
{ label: "审核状态", children: getLabelName({ list: VEHICLE_AUDIT_STATUS_ENUM, status: info.auditFlag }) },
|
||||||
|
...(info.auditFlag === 3 ? [{ label: "驳回原因", children: info.refusalReason }] : []),
|
||||||
{ label: "车辆照片", children: (<PreviewImg files={info.attachmentFile} />) },
|
{ label: "车辆照片", children: (<PreviewImg files={info.attachmentFile} />) },
|
||||||
{ label: "车辆行驶证照片", children: (<PreviewImg files={info.drivingLicenseFile} />) },
|
{ label: "车辆行驶证照片", children: (<PreviewImg files={info.drivingLicenseFile} />) },
|
||||||
{ label: "申请人签字", children: (<PreviewImg files={info.informSignFile} />) },
|
{ label: "申请人签字", children: (<PreviewImg files={info.informSignFile} />) },
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue