Commit 493cd3b4 authored by 李志鸣's avatar 李志鸣

fix(AVI详情): 修改根据工单号查询车体详细信息接口传值

parent 116d40a4
......@@ -711,7 +711,7 @@ export default {
this.$refs.toolRef.$refs.tooltip.style.visibility = 'visible';
this.$refs.toolRef.$refs.tooltip.style.top = top - 100 + 'px';
this.$refs.toolRef.$refs.tooltip.style.left = left - 100 + 'px';
this.$fetch('area-controller/busNo-get', { workOrderNo: busWorkOrderNo })
this.$fetch('area-controller/busNo-get', { busNo: busWorkOrderNo })
.then(res => {
if (!Array.isArray(res)) {
this.BusInformation = _.cloneDeep(res)
......
......@@ -485,7 +485,7 @@ export default {
let top = window.event.clientY;
this.$refs.toolRef.$refs.tooltip.style.top = top - 100 + 'px';
this.$refs.toolRef.$refs.tooltip.style.left = left - 100 + 'px';
this.$fetch('area-controller/busNo-get', { workOrderNo: busWorkOrderNo })
this.$fetch('area-controller/busNo-get', { busNo: busWorkOrderNo })
.then(res => {
if (!Array.isArray(res)) {
this.BusInformation = _.cloneDeep(res);
......
......@@ -203,7 +203,7 @@ export default {
let top = window.event.clientY;
this.$refs.toolRef.$refs.tooltip.style.top = top - 100 + 'px';
this.$refs.toolRef.$refs.tooltip.style.left = left - 100 + 'px';
this.$fetch('area-controller/busNo-get', { workOrderNo: busWorkOrderNo })
this.$fetch('area-controller/busNo-get', { busNo: busWorkOrderNo })
.then(res => {
if (!Array.isArray(res)) {
this.BusInformation = _.cloneDeep(res);
......
......@@ -252,7 +252,7 @@ export default {
let top = window.event.clientY;
this.$refs.toolRef.$refs.tooltip.style.top = top - 100 + 'px';
this.$refs.toolRef.$refs.tooltip.style.left = left - 100 + 'px';
this.$fetch('area-controller/busNo-get', { workOrderNo: busWorkOrderNo })
this.$fetch('area-controller/busNo-get', { busNo: busWorkOrderNo })
.then(res => {
if (!Array.isArray(res)) {
this.BusInformation = _.cloneDeep(res);
......
......@@ -289,7 +289,7 @@ export default {
this.$refs.toolRef.$refs.tooltip.style.visibility = 'visible';
this.$refs.toolRef.$refs.tooltip.style.top = `${top - 100}px`;
this.$refs.toolRef.$refs.tooltip.style.left = `${left}px`;
this.$fetch('area-controller/busNo-get', { workOrderNo: busWorkOrderNo })
this.$fetch('area-controller/busNo-get', { busNo: busWorkOrderNo })
.then(res => {
if (!Array.isArray(res)) {
this.BusInformation = _.cloneDeep(res);
......
......@@ -347,7 +347,7 @@ export default {
let top = window.event.clientY;
this.$refs.toolRef.$refs.tooltip.style.top = top - 100 + 'px';
this.$refs.toolRef.$refs.tooltip.style.left = left - 100 + 'px';
let queryParams = { workOrderNo: busWorkOrderNo };
let queryParams = { busNo: busWorkOrderNo };
this.$fetch('area-controller/busNo-get', queryParams).then(
response => {
if (!Array.isArray(res)) {
......
......@@ -354,7 +354,7 @@ export default {
this.$refs.toolRef.$refs.tooltip.style.visibility = 'visible';
this.$refs.toolRef.$refs.tooltip.style.top = `${top - 100}px`;
this.$refs.toolRef.$refs.tooltip.style.left = `${left}px`;
this.$fetch('area-controller/busNo-get', { workOrderNo: busWorkOrderNo })
this.$fetch('area-controller/busNo-get', { busNo: busWorkOrderNo })
.then(res => {
if (!Array.isArray(res)) {
this.BusInformation = _.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