设备登记列表
This commit is contained in:
@@ -31,7 +31,6 @@ export const resetEquipmentDelivery = (id: any) => {
|
||||
}
|
||||
|
||||
// 编辑出厂设备
|
||||
|
||||
export const editEquipmentDelivery = (data: any) => {
|
||||
return createAxios({
|
||||
url: '/cs-device-boot/EquipmentDelivery/updateEquipmentDelivery',
|
||||
@@ -64,3 +63,27 @@ export const batchImportDevice = (file: any) => {
|
||||
data: form
|
||||
})
|
||||
}
|
||||
|
||||
// 直连设备注册接入
|
||||
export const governDeviceRegister = (data: any) => {
|
||||
return createAxios({
|
||||
url: `/access-boot/device/register?nDid=${data.nDid}&type=${data.type}`,
|
||||
method: 'POST'
|
||||
})
|
||||
}
|
||||
|
||||
// 便携式设备注册
|
||||
export const portableDeviceRegister = (data: any) => {
|
||||
return createAxios({
|
||||
url: `/access-boot/device/wlRegister?nDid=${data.nDid}`,
|
||||
method: 'POST',
|
||||
})
|
||||
}
|
||||
|
||||
// 便携式设备接入
|
||||
export const portableDeviceAccess = (data: any) => {
|
||||
return createAxios({
|
||||
url: `/access-boot/device/wlAccess?nDid=${data.nDid}`,
|
||||
method: 'POST',
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user