子卷配送val1

This commit is contained in:
2022-12-16 12:08:05 +08:00
parent 5e5fed317b
commit bc591b3dea
2 changed files with 4 additions and 3 deletions

View File

@@ -197,7 +197,7 @@
return return
} }
try { try {
let res = await shippingConfirm(this.checkArr, this.val3) let res = await shippingConfirm(this.checkArr, this.val3, this.val1)
this.disabled2 = false this.disabled2 = false
this.checkArr = [] this.checkArr = []
this._queryMaterialInfo() this._queryMaterialInfo()

View File

@@ -168,11 +168,12 @@ export const needVehicle = (code) => request({
}) })
// 1.3配送确认 // 1.3配送确认
export const shippingConfirm = (rows, code) => request({ export const shippingConfirm = (rows, code, vcode) => request({
url:'api/pda/shipping/confirm', url:'api/pda/shipping/confirm',
data: { data: {
cut_rows: rows, cut_rows: rows,
point_code: code point_code: code,
vehicle_code: vcode
} }
}) })
// 1.4载具送回 // 1.4载具送回