迁移设备点检功能
Some checks failed
Release pipeline / publish (push) Has been cancelled
Release pipeline / Always run job (push) Has been cancelled

This commit is contained in:
sheng
2026-06-26 15:17:56 +08:00
parent 561e0413e8
commit 71a721989a
8 changed files with 683 additions and 380 deletions

View File

@@ -8,6 +8,14 @@ export function getList (data) {
return request({ url: BASE + 'list', method: 'get', params: params('device_management_device_check_device_check_items_log_list', data) })
}
export function getDetails (data) {
return request({ url: BASE + 'details', method: 'get', params: params('device_management_device_check_device_check_items_log_details', data) })
}
export function getDetailsList (data) {
return request({ url: BASE + 'details_list', method: 'get', params: params('device_management_device_check_device_check_items_log_details_list', data) })
}
export function createExportTask (data) {
return request({ url: BASE + 'export', method: 'post', data: params('device_management_device_check_device_check_items_log_export', data) })
}