This commit is contained in:
2025-08-25 14:44:08 +08:00
parent 38cff1f80c
commit a3a4842295
2 changed files with 3 additions and 3 deletions

View File

@@ -157,7 +157,7 @@
}, },
async _getMaterialSuppByVehicleCode () { async _getMaterialSuppByVehicleCode () {
try { try {
let res = await getMaterialSuppByVehicleCode(this.index2) let res = await getMaterialSuppByVehicleCode(this.val2)
if (res.code === '200') { if (res.code === '200') {
this.currentData = res.data this.currentData = res.data
} else { } else {

View File

@@ -316,7 +316,7 @@ export const combination = (vcode, pcsn, mid, spcode, spname, sweight) => reques
}) })
// 确认取货 // 确认取货
export const pickUp = () => request({ export const pickUp = (pcode, pstatus) => request({
url:'api/pda/iosOut/pickUp', url:'api/pda/iosOut/pickUp',
data: {} data: {point_code: pcode, point_status: pstatus}
}) })