称重抓取

This commit is contained in:
2026-03-06 18:03:28 +08:00
parent 15ce1cfa13
commit f35d64bd91
6 changed files with 610 additions and 125 deletions

View File

@@ -78,7 +78,12 @@ export function importMaterial(data: any) {
return http.post(`${BASE_URL}/import`, data)
}
/** @desc 解析物料信息导入数据 */
/** @desc 物料照片批量导入数据 */
export function uploadMaterialPhotos(data: FormData) {
return http.post(`${BASE_URL}/import/uploadMaterialPhotos`, data)
}
/** @desc 物料照片抓取数据 */
export function catchPhoto(data: FormData) {
return http.post(`${BASE_URL}/import/catch`, data)
}