Commit fff2e154 authored by caicaicai's avatar caicaicai

修改

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