|
|
@ -281,7 +281,7 @@ function GroundLockManagement() { |
|
|
|
/> |
|
|
|
<FormSelect |
|
|
|
yisaLabel="设备类型" |
|
|
|
yisaData={selectData.model} |
|
|
|
yisaData={selectData.model.filter(item => item.value != "0")} |
|
|
|
defaultValue={rowData.model || null} |
|
|
|
placeholder="请选择设备类型" |
|
|
|
hasUnlimited={false} |
|
|
@ -291,7 +291,7 @@ function GroundLockManagement() { |
|
|
|
/> |
|
|
|
<FormSelect |
|
|
|
yisaLabel="设备供应商" |
|
|
|
yisaData={selectData.supplier} |
|
|
|
yisaData={selectData.supplier.filter(item => item.value != "0")} |
|
|
|
defaultValue={rowData.supplier || null} |
|
|
|
placeholder="请选择设备供应商" |
|
|
|
hasUnlimited={false} |
|
|
@ -301,7 +301,7 @@ function GroundLockManagement() { |
|
|
|
/> |
|
|
|
<FormSelect |
|
|
|
yisaLabel="设备状态" |
|
|
|
yisaData={selectData.status} |
|
|
|
yisaData={selectData.status.filter(item => item.value != "0")} |
|
|
|
defaultValue={rowData.status || null} |
|
|
|
placeholder="请选择设备状态" |
|
|
|
hasUnlimited={false} |
|
|
@ -313,7 +313,7 @@ function GroundLockManagement() { |
|
|
|
|
|
|
|
<FormSelect |
|
|
|
yisaLabel="所属物理桩" |
|
|
|
yisaData={selectData.pile_id} |
|
|
|
yisaData={selectData.pile_id.filter(item => item.value != "0")} |
|
|
|
defaultValue={rowData.pile_id || null} |
|
|
|
placeholder="请选择所属物理桩" |
|
|
|
hasUnlimited={false} |
|
|
|