物料流程整合

This commit is contained in:
zc
2026-04-03 17:29:42 +08:00
parent 3eb98be172
commit 7238aabd0a
4 changed files with 14 additions and 20 deletions

View File

@@ -9,6 +9,7 @@ export interface WeighManageResp {
materialSpec: string
unitWeight: number
photoUrl: string
materialProcess: string
matchResult: string
downFloatRatio: string
upFloatRatio: string
@@ -29,6 +30,6 @@ export function validateWeighing(data: any) {
}
/** @desc 校验物料是否一致 */
export function vmSend(code: string) {
return http.post<string>(`/vm/send`, { msg: code })
export function vmSend(materialProcess: string) {
return http.post<string>(`/vm/send`, { materialProcess })
}