This commit is contained in:
zc
2026-03-09 20:34:20 +08:00
parent 2bf7b6872a
commit 3f8b6e4695
6 changed files with 187 additions and 89 deletions

View File

@@ -1,6 +1,6 @@
import http from '@/utils/http'
const BASE_URL = '/weighManage/material'
const BASE_URL = '/weighManage/workOrder'
export interface WeighManageResp {
id: string
@@ -21,7 +21,7 @@ export function getMaterialDetail(code: string) {
return http.get<WeighManageResp>(`/admin/materialInfo/code/${code}`)
}
/** @desc 新增人员管理 */
export function addPeople(data: any) {
return http.post(`${BASE_URL}`, data)
/** @desc 校验称重信息 */
export function validateWeighing(data: any) {
return http.post(`${BASE_URL}/validateWeighing`, data)
}

View File

@@ -18,6 +18,7 @@ export interface WorkOrderResp {
updateUserString: string
matchResult: string
workOrderInfos: Array<WorkOrderInfoResp>
qrCodeData: string
}
export interface WorkOrderInfoResp {