材料站-协议

This commit is contained in:
bb_pan 2025-07-05 17:57:45 +08:00
parent 5b06632e77
commit 47891b122f
2 changed files with 9 additions and 2 deletions

View File

@ -138,7 +138,7 @@ import {
getProjectList, getProjectList,
backTask, backTask,
editBackTask, editBackTask,
getAgreementInfoByIdApi, getAgreementInfoByIdBackApi,
detailsBackTask, detailsBackTask,
getUseTypeTree, getUseTypeTree,
} from '@/services/materialsStation' } from '@/services/materialsStation'
@ -239,7 +239,7 @@ const getAgreement = () => {
teamId: formData.teamId, teamId: formData.teamId,
projectId: formData.projectId, projectId: formData.projectId,
} }
getAgreementInfoByIdApi(obj) getAgreementInfoByIdBackApi(obj)
.then((res) => { .then((res) => {
console.log(res) console.log(res)
if (res.code == 200) { if (res.code == 200) {

View File

@ -130,6 +130,13 @@ export const getAgreementInfoByIdApi = (data) => {
data, data,
}) })
} }
export const getAgreementInfoByIdBackApi = (data) => {
return http({
method: 'POST',
url: '/material/select/getAgreementInfoByIdBack',
data,
})
}
// 工机具出库详情-列表 // 工机具出库详情-列表
export const getOutNum = (data) => { export const getOutNum = (data) => {