feat : 设备管理新增序列号字段

This commit is contained in:
2024-08-07 19:47:36 +08:00
parent f4d6245ecf
commit acb729c8a3
2 changed files with 98 additions and 3 deletions

View File

@@ -56,3 +56,12 @@ export const editEquipment = (data) => {
data
})
}
export const getEquipmentSerialNumberOptions = (tunnelId) => {
return request({
url: '/tunnel/tunnel/serialnumber/options',
method: 'get',
params:{
tunnelId:tunnelId
}
})
}