Commit 3595d804 authored by caicaicai's avatar caicaicai

修改

parent 1516dd87
...@@ -33,3 +33,4 @@ export const dingDanBiaoCaoZuo = '/api/Order'; //订单表操作 ...@@ -33,3 +33,4 @@ export const dingDanBiaoCaoZuo = '/api/Order'; //订单表操作
export const getZhuangCheDingDanQuery = '/api/Order/ZC'; //获取装车订单 export const getZhuangCheDingDanQuery = '/api/Order/ZC'; //获取装车订单
export const getXieCheDingDanQuery = '/api/Order/XC'; //获取卸车订单 export const getXieCheDingDanQuery = '/api/Order/XC'; //获取卸车订单
export const getalarmRealQuery = '/api/alarm/real'; //获取车辆设备实时报警 export const getalarmRealQuery = '/api/alarm/real'; //获取车辆设备实时报警
export const dispatchFinishQuery = '/api/Dispatch/finish'; //获取智能调度是否完成
...@@ -82,7 +82,8 @@ import { ...@@ -82,7 +82,8 @@ import {
vehicleInformationUpdate, vehicleInformationUpdate,
dingDanBiaoCaoZuo, dingDanBiaoCaoZuo,
manualSchedulingQuery, manualSchedulingQuery,
getalarmRealQuery getalarmRealQuery,
dispatchFinishQuery
} from "@/axios/api.js" } from "@/axios/api.js"
import startOrderReceiving from './components/startOrderReceiving/index.vue' //接受派单 import startOrderReceiving from './components/startOrderReceiving/index.vue' //接受派单
import voiceApplication from './components/voiceApplication/index.vue' //语音申请 import voiceApplication from './components/voiceApplication/index.vue' //语音申请
...@@ -368,6 +369,12 @@ export default { ...@@ -368,6 +369,12 @@ export default {
if(res.code == 200){ if(res.code == 200){
putForJson(vehicleInformationUpdate,{id:res.data.content[0].id,number:this.carnumber,workStatus:0,weightStatus:1,oddStatus:1}).then((res) => {}); putForJson(vehicleInformationUpdate,{id:res.data.content[0].id,number:this.carnumber,workStatus:0,weightStatus:1,oddStatus:1}).then((res) => {});
} }
});
//智能调度是否完成
httpGet(dispatchFinishQuery,{carno:this.carnumber}).then((res) => {
if(res.code == 200){
}
}); });
}, },
//地图构造完成回调 //地图构造完成回调
......
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