Commit 27985d97 authored by xxx's avatar xxx

修改

parent 3aa7b0c6
......@@ -2141,7 +2141,7 @@ var HttpReq = function(){
params:param,
})
},
//大屏——车辆信息弹框——车辆实时数据(使用)
//大屏——车辆信息弹框——车辆实时数据(使用,卡车和其他车)
apiManmadesRealQuery1: function(param){
return request({
url: '/api/Manmades/Real',
......@@ -2149,6 +2149,14 @@ var HttpReq = function(){
params:param,
})
},
//大屏——车辆信息弹框——车辆实时数据(使用,铲车)
apiManmadesChancheRealQuery1: function(param){
return request({
url: '/api/Manmades/chancheReal',
method: 'get',
params:param,
})
},
//大屏——地图的增删改查
screenMapSetUpQuery: function(param){
return request({
......
......@@ -1015,7 +1015,7 @@ export default {
return
}
this.forkliftkDynamicListData.number = this.forkliftkDynamicListData.data[this.forkliftkDynamicListData.num2].number;
HttpReq.truckDispatching.apiManmadesRealQuery1({number:this.forkliftkDynamicListData.number}).then((res) => {
HttpReq.truckDispatching.apiManmadesChancheRealQuery1({number:this.forkliftkDynamicListData.number}).then((res) => {
if(res.code == 200){
this.forkliftkDynamicListData.rate = res.data.rate;
this.forkliftkDynamicListData.carry = res.data.carry;
......
......@@ -607,7 +607,7 @@ export default {
}
this.selectCarRadioArray.forEach((item,index)=>{
let query1 = {...this.desform};
query1.carNo = item;
query1.carNo = item.number;
HttpReq.truckDispatching.manualSchedulingAdd(query1).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