正式用户权限分配

This commit is contained in:
sjl
2025-11-14 16:19:18 +08:00
parent af05b9c810
commit e9b09e2193
8 changed files with 425 additions and 3 deletions

View File

@@ -53,3 +53,25 @@ export const removeMarketData = (data: any) => {
params: data
})
}
/**
* 获取用户未绑定的在运的便携式设备
*/
export const queryRunPortableDevByUseId = (data: any) => {
return createAxios({
url: '/cs-device-boot/EquipmentDelivery/getRunPortableDev',
method: 'post',
params: data
})
}
/**
* 获取用户未绑定的工程信息
*/
export const queryUnlinkEngineeringByUseId = (data: any) => {
return createAxios({
url: '/cs-device-boot/engineering/getUnlinkedEngineering',
method: 'post',
params: data
})
}