change
This commit is contained in:
@@ -230,7 +230,7 @@
|
|||||||
},
|
},
|
||||||
async _inCheck () {
|
async _inCheck () {
|
||||||
try {
|
try {
|
||||||
let res = await inCheck()
|
let res = await inCheck(this.val2, this.val1)
|
||||||
if (res.code === '200') {
|
if (res.code === '200') {
|
||||||
this.handleAdd()
|
this.handleAdd()
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -123,12 +123,8 @@
|
|||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
this._getPdaSect()
|
this._getPdaSect()
|
||||||
this._getPdaVehicleCodeBySectCode()
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
toJump () {
|
|
||||||
this._getMaterialSuppByVehicleCode()
|
|
||||||
},
|
|
||||||
async _getPdaSect () {
|
async _getPdaSect () {
|
||||||
try {
|
try {
|
||||||
let res = await getPdaSect()
|
let res = await getPdaSect()
|
||||||
|
|||||||
@@ -228,9 +228,9 @@ export const getPlate = (vcode) => request({
|
|||||||
data: {vehicle_code: vcode}
|
data: {vehicle_code: vcode}
|
||||||
})
|
})
|
||||||
// PDA来料入库校验点位和托盘码
|
// PDA来料入库校验点位和托盘码
|
||||||
export const inCheck = () => request({
|
export const inCheck = (scode, vcode) => request({
|
||||||
url:'api/pda/iosIn/inCheck',
|
url:'api/pda/iosIn/inCheck',
|
||||||
data: {}
|
data: {site_code: scode, vehicle_code: vcode}
|
||||||
})
|
})
|
||||||
|
|
||||||
// 空载具出入库
|
// 空载具出入库
|
||||||
|
|||||||
Reference in New Issue
Block a user