This commit is contained in:
2023-06-05 09:55:25 +08:00
parent 81fcf4583b
commit f65bc9f7ca
3 changed files with 6 additions and 6 deletions

View File

@@ -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 => {

View File

@@ -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 => {

View File

@@ -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 => {