Commit fff2e154 authored by caicaicai's avatar caicaicai

修改

parent 54676c52
......@@ -262,6 +262,9 @@ export default {
alarmBreakArray.push(alarmObj3);
alarmBreakArray.push(alarmObj4);
that.echarts6Data = alarmBreakArray;
this.$nextTick(()=>{
that.echarts6Fn();
})
}
})
}
......
......@@ -442,7 +442,7 @@ export default {
this.$nextTick(()=>{
//获取采区当前日产量
HttpReq.truckDispatching.caiquAreaQueryDay({size:1,addTime:this.currentTime.day}).then((res) => {
HttpReq.truckDispatching.caiquAreaQueryDay({size:1,createTime:this.currentTime.day}).then((res) => {
if(res.code == 200){
let undueArray = {};
if(res.data.totalElements == 0){
......@@ -464,7 +464,7 @@ export default {
}
})
//获取采区当前月产量
HttpReq.truckDispatching.caiquAreaQueryMonth({size:1,addTime:this.currentTime.month}).then((res) => {
HttpReq.truckDispatching.caiquAreaQueryMonth({size:1,createTime:this.currentTime.month}).then((res) => {
if(res.code == 200){
let undueArray = {};
if(res.data.totalElements == 0){
......@@ -486,7 +486,7 @@ export default {
}
})
//获取采区当前年产量
HttpReq.truckDispatching.caiquAreaQueryYear({size:1,addTime:this.currentTime.year}).then((res) => {
HttpReq.truckDispatching.caiquAreaQueryYear({size:1,createTime:this.currentTime.year}).then((res) => {
if(res.code == 200){
let undueArray = {};
if(res.data.totalElements == 0){
......
......@@ -24,6 +24,9 @@
<intelligentSchedul ref="intelligentSchedulMethod" v-show="selectModule == 'intelligentSchedul'"/>
<dataAnalysis ref="dataAnalysisMethod" v-show="selectModule == 'dataAnalysis'"/>
</div>
<div class="carExample" @click="showSpecificInforFn()">
<span class="el-icon-s-opportunity"></span>
</div>
</div>
</template>
......@@ -98,6 +101,10 @@ export default {
console.log('backstage');
}
},
showSpecificInforFn(){
this.selectModule = '';
},
//获取当前时间
setNowTimes () {
let myDate = new Date();
......@@ -171,4 +178,12 @@ export default {
font-size: 24px;
color: #03FEFE;
}
.carExample{
position: absolute;
top: 50%;
left: 50%;
font-size: 30px;
color: blue;
cursor: pointer;
}
</style>
\ No newline at end of file
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