This commit is contained in:
砂糖
2026-01-05 16:17:06 +08:00
11 changed files with 1550 additions and 389 deletions

View File

@@ -68,4 +68,17 @@ export function deletePdo(excoilid, planId) {
})
}
/**
* PDO - 下载质保单(单卷)
* @param {string} excoilid 成品卷号
* @returns {Promise<Blob>}
*/
export function downloadWarranty(excoilid) {
return l2Request({
method: 'get',
url: `/api/pdo/warranty/download/${excoilid}`,
responseType: 'blob'
})
}