Commit 51dca4f8 authored by caicaicai's avatar caicaicai

修改

parent 648e0332
...@@ -71,7 +71,7 @@ ...@@ -71,7 +71,7 @@
<div> <div>
<div class="intelligentSchScrView_rightView_title">智能调度信息</div> <div class="intelligentSchScrView_rightView_title">智能调度信息</div>
<div class="intelligentSchScrView_rightView_content"> <div class="intelligentSchScrView_rightView_content">
<div class="intelligentSchScrView_rightView_content_1_top"> <!-- <div class="intelligentSchScrView_rightView_content_1_top">
<div> <div>
<img src="../../../../assets/images/cutGraph/zhengzaijinxing1.png"> <img src="../../../../assets/images/cutGraph/zhengzaijinxing1.png">
<div style="color:#F8D909;text-align: center;"> <div style="color:#F8D909;text-align: center;">
...@@ -86,22 +86,22 @@ ...@@ -86,22 +86,22 @@
<div style="font-size:22px;">{{dispatchFinishNum}}</div> <div style="font-size:22px;">{{dispatchFinishNum}}</div>
</div> </div>
</div> </div>
</div> </div> -->
<div class="intelligentSchScrView_rightView_content_1_bottom"> <div class="intelligentSchScrView_rightView_content_1_bottom">
<div class="intelligentSchScrView_rightView_content_1_bottom_rolling"> <div class="intelligentSchScrView_rightView_content_1_bottom_rolling">
<div class="table-box"> <div class="table-box">
<dl> <dl>
<dt> <dt>
<div>起点</div> <div>调度车辆</div>
<div>调度时间</div> <div>调度时间</div>
<div>状态</div> <div>完成时间</div>
<div>目的地</div> <div>目的地</div>
</dt> </dt>
<dd v-for="(item,index) in dispatchDetailsList" :key="index"> <dd v-for="(item,index) in dispatchDetailsList" :key="index">
<div>{{item.zero}}</div> <div>{{item.carNo}}</div>
<div>{{item.name}} {{item.startTime.substring(11,16)}}</div> <div>{{item.createTime}}</div>
<div>{{item.status == 0 ? '完成' : '进行中'}}</div> <div>{{item.endTime}}</div>
<div>{{item.end}}</div> <div>{{item.destination}}</div>
</dd> </dd>
</dl> </dl>
</div> </div>
...@@ -183,7 +183,7 @@ export default { ...@@ -183,7 +183,7 @@ export default {
}; };
}) })
//智能调度情况 //智能调度情况
HttpReq.truckDispatching.IntelligentDispatchHistoryQuery({size:9999,sort:'startTime,desc',}).then((res) => { HttpReq.truckDispatching.personRecordingQuery({size:20,sort:'createTime,desc',flag:0}).then((res) => {
let finishData = []; let finishData = [];
let loadingData = []; let loadingData = [];
if(res.code == 200){ if(res.code == 200){
...@@ -423,9 +423,6 @@ export default { ...@@ -423,9 +423,6 @@ export default {
//WebSocket数据接收 //WebSocket数据接收
websocketonmessage(e){ websocketonmessage(e){
console.log("ee",e); console.log("ee",e);
console.log("eeee",e.data);
const redata = JSON.parse(e.data);
console.log("eeee---",redata);
}, },
//WebSocket数据发送 //WebSocket数据发送
websocketsend(agentData){ websocketsend(agentData){
...@@ -736,11 +733,11 @@ dd>div{ ...@@ -736,11 +733,11 @@ dd>div{
} }
.intelligentSchScrView_rightView_content_1_bottom{ .intelligentSchScrView_rightView_content_1_bottom{
width: 100%; width: 100%;
height: 20.5vh; height: 26.5vh;
} }
.intelligentSchScrView_rightView_content_1_bottom_rolling{ .intelligentSchScrView_rightView_content_1_bottom_rolling{
text-align: center; text-align: center;
height: 20.5vh; height: 26.5vh;
overflow-y:auto; overflow-y:auto;
scrollbar-width: none; scrollbar-width: none;
} }
......
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