This commit is contained in:
hayu 2025-09-08 14:16:33 +08:00
parent f969630687
commit fc6755d9c1
2 changed files with 4 additions and 3 deletions

View File

@ -162,7 +162,8 @@ const getOutboundDetailsData = async () => {
console.log("yyyyyyyyyyyyyyyyyyyy");
const { data } = await getOutboundDetailsAPI(
leaseApplyInfo.value.parentId,
keyWord.value
keyWord.value,
leaseApplyInfo.value.publishTask
);
res = data;
console.log('🚀 ~ getOutboundDetailsData ~ res:', res);

View File

@ -21,10 +21,10 @@ export const getNoSignListAPI = (data) => {
/**
* 领料出库 ---- 任务详情
*/
export const getOutboundDetailsAPI = (id,keyWord) => {
export const getOutboundDetailsAPI = (id,keyWord,publishTask) => {
return http({
method: 'GET',
url: `/material/lease_apply_info/${id}?keyWord=${keyWord}`,
url: `/material/lease_apply_info/${id}?keyWord=${keyWord}?publishTask=${publishTask}`,
})
}