Files
admin-govern/src/api/cs-device-boot/recall.ts

21 lines
396 B
TypeScript
Raw Normal View History

2025-10-21 16:27:49 +08:00
import createAxios from '@/utils/request'
//补召事件
export function eventRecall(data: any) {
return createAxios({
url: '/cs-device-boot/icd/bzEvent',
method: 'post',
2025-10-22 09:24:41 +08:00
data: data
2025-10-21 16:27:49 +08:00
})
}
//补召波形
export function fileRecall(data: any) {
return createAxios({
url: '/cs-device-boot/icd/bzFile',
method: 'post',
2025-10-22 09:24:41 +08:00
data: data
2025-10-21 16:27:49 +08:00
})
}
2025-10-22 15:32:18 +08:00