feat:股份端车辆归属人字段完善
parent
181ba78374
commit
47b3e6df9c
|
|
@ -94,6 +94,7 @@ function List(props) {
|
||||||
{ title: "车辆数", dataIndex: "vehicleCount" },
|
{ title: "车辆数", dataIndex: "vehicleCount" },
|
||||||
{ title: "门禁权限", dataIndex: "mkmjPermission", render: (_, record) => record.mkmjPermission === 1 ? "开启" : "关闭" },
|
{ title: "门禁权限", dataIndex: "mkmjPermission", render: (_, record) => record.mkmjPermission === 1 ? "开启" : "关闭" },
|
||||||
{ title: "是否录入人脸", dataIndex: "userFaceUrl", render: (_, record) => record.userFaceUrl ? "是" : "否" },
|
{ title: "是否录入人脸", dataIndex: "userFaceUrl", render: (_, record) => record.userFaceUrl ? "是" : "否" },
|
||||||
|
{ title: "是否录入身份证号", dataIndex: "userCard", render: (_, record) => record.userCard ? "是" : "否" },
|
||||||
{
|
{
|
||||||
title: "操作",
|
title: "操作",
|
||||||
width: 200,
|
width: 200,
|
||||||
|
|
@ -103,6 +104,7 @@ function List(props) {
|
||||||
{props.permission(props.authorizationScopeBtn || "jgd-io-stock-pv-edit") && (
|
{props.permission(props.authorizationScopeBtn || "jgd-io-stock-pv-edit") && (
|
||||||
<Button
|
<Button
|
||||||
type="link"
|
type="link"
|
||||||
|
disabled={!record.userFaceUrl || !record.userCard}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setCurrentInfo(record);
|
setCurrentInfo(record);
|
||||||
setAuthorizationModalVisible(true);
|
setAuthorizationModalVisible(true);
|
||||||
|
|
|
||||||
|
|
@ -70,7 +70,7 @@ function List(props) {
|
||||||
</Space>
|
</Space>
|
||||||
)}
|
)}
|
||||||
columns={[
|
columns={[
|
||||||
{ title: "车辆归属人", dataIndex: "todo1" },
|
{ title: "车辆归属人", dataIndex: "employeeVehicleUserName" },
|
||||||
{ title: "车牌号", dataIndex: "licenceNo" },
|
{ title: "车牌号", dataIndex: "licenceNo" },
|
||||||
{ title: "车牌类型", dataIndex: "licenceTypeName" },
|
{ title: "车牌类型", dataIndex: "licenceTypeName" },
|
||||||
{ title: "车辆类型", dataIndex: "vehicleTypeName" },
|
{ title: "车辆类型", dataIndex: "vehicleTypeName" },
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue