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