feat:检查部门车辆名称
parent
248edd7a98
commit
a688ec6251
|
|
@ -65,7 +65,7 @@ function List(props) {
|
||||||
</Space>
|
</Space>
|
||||||
)}
|
)}
|
||||||
columns={[
|
columns={[
|
||||||
{ title: "名称", dataIndex: "remarks" },
|
{ title: "名称", dataIndex: "checkDepartmentName" },
|
||||||
{ title: "车牌号", dataIndex: "licenceNo" },
|
{ title: "车牌号", dataIndex: "licenceNo" },
|
||||||
{ title: "车牌类型", dataIndex: "licenceTypeName" },
|
{ title: "车牌类型", dataIndex: "licenceTypeName" },
|
||||||
{ title: "车辆类型", dataIndex: "vehicleTypeName" },
|
{ title: "车辆类型", dataIndex: "vehicleTypeName" },
|
||||||
|
|
@ -199,7 +199,7 @@ const AddModalComponent = (props) => {
|
||||||
span={24}
|
span={24}
|
||||||
labelCol={{ span: 10 }}
|
labelCol={{ span: 10 }}
|
||||||
values={{
|
values={{
|
||||||
remarks: info.remarks,
|
remarks: info.checkDepartmentName,
|
||||||
inspectCarList: [{
|
inspectCarList: [{
|
||||||
licenceType: info.licenceType,
|
licenceType: info.licenceType,
|
||||||
licenceTypeName: info.licenceTypeName,
|
licenceTypeName: info.licenceTypeName,
|
||||||
|
|
@ -209,7 +209,7 @@ const AddModalComponent = (props) => {
|
||||||
}],
|
}],
|
||||||
}}
|
}}
|
||||||
options={[
|
options={[
|
||||||
{ name: "remarks", label: "名称" },
|
{ name: "checkDepartmentName", label: "名称" },
|
||||||
{ label: "车辆信息", render: FORM_ITEM_RENDER_ENUM.DIVIDER },
|
{ label: "车辆信息", render: FORM_ITEM_RENDER_ENUM.DIVIDER },
|
||||||
{
|
{
|
||||||
name: "inspectCarList",
|
name: "inspectCarList",
|
||||||
|
|
@ -278,7 +278,7 @@ const ViewModalComponent = (props) => {
|
||||||
column={1}
|
column={1}
|
||||||
styles={{ label: { width: 200 } }}
|
styles={{ label: { width: 200 } }}
|
||||||
items={[
|
items={[
|
||||||
{ label: "名称", children: info.remarks },
|
{ label: "名称", children: info.checkDepartmentName },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<Divider orientation="left">车辆信息</Divider>
|
<Divider orientation="left">车辆信息</Divider>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue