Commit ee3a7114 authored by 李志鸣's avatar 李志鸣

fea(avi 详情): 查询车体定位接口传参错误

parent 30b612f0
...@@ -725,7 +725,7 @@ export default { ...@@ -725,7 +725,7 @@ export default {
getCarPostion () { getCarPostion () {
let queryParams = { orderNo: this.orderNo, workOrderNo: this.workOrderNo } let queryParams = { orderNo: this.orderNo, workOrderNo: this.workOrderNo }
// 请求接口 // 请求接口
this.$fetch('area-controller/workOrderNo-get', { queryParams }).then(res => { this.$fetch('area-controller/workOrderNo-get', queryParams).then(res => {
this.carPostionInfo = _.cloneDeep(res) this.carPostionInfo = _.cloneDeep(res)
}) })
}, },
......
...@@ -530,7 +530,7 @@ export default { ...@@ -530,7 +530,7 @@ export default {
getCarPostion () { getCarPostion () {
let queryParams = { orderNo: this.orderNo, workOrderNo: this.workOrderNo } let queryParams = { orderNo: this.orderNo, workOrderNo: this.workOrderNo }
// 请求接口 // 请求接口
this.$fetch('area-controller/workOrderNo-get', { queryParams }).then(res => { this.$fetch('area-controller/workOrderNo-get', queryParams).then(res => {
this.carPostionInfo = _.cloneDeep(res) this.carPostionInfo = _.cloneDeep(res)
}) })
}, },
......
...@@ -230,7 +230,7 @@ export default { ...@@ -230,7 +230,7 @@ export default {
getCarPostion () { getCarPostion () {
let queryParams = { orderNo: this.orderNo, workOrderNo: this.workOrderNo } let queryParams = { orderNo: this.orderNo, workOrderNo: this.workOrderNo }
// 请求接口 // 请求接口
this.$fetch('area-controller/workOrderNo-get', { queryParams }).then(res => { this.$fetch('area-controller/workOrderNo-get', queryParams).then(res => {
this.carPostionInfo = _.cloneDeep(res) this.carPostionInfo = _.cloneDeep(res)
}) })
}, },
......
...@@ -279,7 +279,7 @@ export default { ...@@ -279,7 +279,7 @@ export default {
getCarPostion () { getCarPostion () {
let queryParams = { orderNo: this.orderNo, workOrderNo: this.workOrderNo } let queryParams = { orderNo: this.orderNo, workOrderNo: this.workOrderNo }
// 请求接口 // 请求接口
this.$fetch('area-controller/workOrderNo-get', { queryParams }).then(res => { this.$fetch('area-controller/workOrderNo-get', queryParams).then(res => {
this.carPostionInfo = _.cloneDeep(res) this.carPostionInfo = _.cloneDeep(res)
}) })
}, },
......
...@@ -305,7 +305,7 @@ export default { ...@@ -305,7 +305,7 @@ export default {
getCarPostion () { getCarPostion () {
let queryParams = { orderNo: this.orderNo, workOrderNo: this.workOrderNo } let queryParams = { orderNo: this.orderNo, workOrderNo: this.workOrderNo }
// 请求接口 // 请求接口
this.$fetch('area-controller/workOrderNo-get', { queryParams }).then(res => { this.$fetch('area-controller/workOrderNo-get', queryParams).then(res => {
this.carPostionInfo = _.cloneDeep(res) this.carPostionInfo = _.cloneDeep(res)
}) })
}, },
......
...@@ -383,7 +383,7 @@ export default { ...@@ -383,7 +383,7 @@ export default {
getCarPostion () { getCarPostion () {
let queryParams = { orderNo: this.orderNo, workOrderNo: this.workOrderNo } let queryParams = { orderNo: this.orderNo, workOrderNo: this.workOrderNo }
// 请求接口 // 请求接口
this.$fetch('area-controller/workOrderNo-get', { queryParams }).then(res => { this.$fetch('area-controller/workOrderNo-get', queryParams).then(res => {
this.carPostionInfo = _.cloneDeep(res) this.carPostionInfo = _.cloneDeep(res)
}) })
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment