This commit is contained in:
zc
2026-03-18 17:42:14 +08:00
parent 0320c8d8bc
commit feab964397
4 changed files with 69 additions and 8 deletions

View File

@@ -26,7 +26,7 @@ export function validateWeighing(data: any) {
return http.post(`${BASE_URL}/validateWeighing`, data)
}
/** @desc 校验称重信息 */
/** @desc 校验物料是否一致 */
export function vmSend(code: string) {
return http.get<WeighManageResp>(`/vm/send?msg=${code}`)
return http.post<string>(`/vm/send`, { msg: code })
}