fixed:搜索条件时效的bug

master^2
dearLin 2026-05-27 15:22:39 +08:00
parent a21d441ced
commit a493d21cf6
4 changed files with 4 additions and 4 deletions

View File

@ -205,7 +205,7 @@ const ViewModalComponent = (props) => {
label: "区域范围", label: "区域范围",
children: info.gateLevelAuthArea && JSON.parse(info.gateLevelAuthArea).area.map(item => item.value).join("、"), children: info.gateLevelAuthArea && JSON.parse(info.gateLevelAuthArea).area.map(item => item.value).join("、"),
}, },
{ label: "访问期限", children: `${info.visitStartTime}-${info.visitEndTime}` }, { label: "访问期限", children: `${info.visitStartTime}${info.visitEndTime}` },
{ 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 }) },

View File

@ -71,7 +71,7 @@ function List(props) {
{ {
title: "访问期限", title: "访问期限",
dataIndex: "visitStartTime", dataIndex: "visitStartTime",
render: (_, record) => `${record.visitStartTime}-${record.visitEndTime}`, render: (_, record) =>`${record.visitStartTime}${record.visitEndTime}`,
}, },
{ title: "车辆类型", dataIndex: "vehicleTypeName" }, { title: "车辆类型", dataIndex: "vehicleTypeName" },
{ title: "车牌类型", dataIndex: "licenceTypeName" }, { title: "车牌类型", dataIndex: "licenceTypeName" },

View File

@ -62,7 +62,7 @@ function List(props) {
<Search <Search
labelCol={{ span: 4 }} labelCol={{ span: 4 }}
options={[ options={[
{ name: "name", label: "姓名" }, { name: "employeePersonUserName", label: "姓名" },
{ name: "projectName", label: "项目名称" }, { name: "projectName", label: "项目名称" },
]} ]}
onFinish={getData} onFinish={getData}

View File

@ -50,7 +50,7 @@ function RelatedVehicles(props) {
{ {
dataIndex: "visitStartTime", dataIndex: "visitStartTime",
title: "访问期限", title: "访问期限",
render: (_, record) => record.visitStartTime + record.visitEndTime, render: (_, record) =>`${record.visitStartTime}${record.visitEndTime}`,
}, },
{ dataIndex: "vehicleTypeName", title: "车辆类型" }, { dataIndex: "vehicleTypeName", title: "车辆类型" },
{ dataIndex: "licenceTypeName", title: "车牌类型" }, { dataIndex: "licenceTypeName", title: "车牌类型" },