二级和app修改

This commit is contained in:
2026-01-05 14:29:33 +08:00
parent b95291265b
commit 4480cfdfcb
9 changed files with 1309 additions and 373 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'
})
}