diff --git a/src/pages/proj/CallEmpty.vue b/src/pages/proj/CallEmpty.vue index fe44453..a58d2eb 100644 --- a/src/pages/proj/CallEmpty.vue +++ b/src/pages/proj/CallEmpty.vue @@ -75,7 +75,7 @@ export default { methods: { /** 查询区域 */ async _pdaRegion () { - let res = await pdaRegion('send_empty') + let res = await pdaRegion('call_empty') if (res.code === '1') { this.option1 = [...res.result] this.option1.map(el => { @@ -137,7 +137,7 @@ export default { }, /** 查询点位 */ async _pdaPoint (code) { - let res = await pdaPoint('send_empty', code) + let res = await pdaPoint('call_empty', code) if (res.code === '1') { this.option2 = [...res.result] this.option2.map(el => { diff --git a/src/pages/proj/VehicleBind.vue b/src/pages/proj/VehicleBind.vue index 9177504..bd10f80 100644 --- a/src/pages/proj/VehicleBind.vue +++ b/src/pages/proj/VehicleBind.vue @@ -118,7 +118,7 @@ export default { }, /** 查询区域 */ async _pdaRegion () { - let res = await pdaRegion('send_empty') + let res = await pdaRegion('vehicle_bind') if (res.code === '1') { this.option1 = [...res.result] this.option1.map(el => { @@ -183,7 +183,7 @@ export default { }, /** 查询点位 */ async _pdaPoint (code) { - let res = await pdaPoint('send_empty', code) + let res = await pdaPoint('vehicle_bind', code) if (res.code === '1') { this.option2 = [...res.result] this.option2.map(el => { diff --git a/src/pages/proj/VehicleUnbind.vue b/src/pages/proj/VehicleUnbind.vue index 4de1ea6..d227585 100644 --- a/src/pages/proj/VehicleUnbind.vue +++ b/src/pages/proj/VehicleUnbind.vue @@ -75,7 +75,7 @@ export default { methods: { /** 查询区域 */ async _pdaRegion () { - let res = await pdaRegion('call_material') + let res = await pdaRegion('vehicle_unbind') if (res.code === '1') { this.option1 = [...res.result] this.option1.map(el => { @@ -137,7 +137,7 @@ export default { }, /** 查询点位 */ async _pdaPoint (code) { - let res = await pdaPoint('call_material', code) + let res = await pdaPoint('vehicle_unbind', code) if (res.code === '1') { this.option2 = [...res.result] this.option2.map(el => {