Commit 7f7e0b43 authored by xxx's avatar xxx

1

parent 670c64b5
......@@ -494,32 +494,7 @@ export default {
},
//实时报警
realAlarmStyleData:{
listData:[
{
content:'运载区入口处有不明障碍物体在路口',
time:'2021-10-19 12:23',
},
{
content:'运载区入口处有不明障碍物体在路口',
time:'2021-10-19 12:23',
},
{
content:'运载区入口处有不明障碍物体在路口',
time:'2021-10-19 12:23',
},
{
content:'运载区入口处有不明障碍物体在路口',
time:'2021-10-19 12:23',
},
{
content:'运载区入口处有不明障碍物体在路口',
time:'2021-10-19 12:23',
},
{
content:'运载区入口处有不明障碍物体在路口',
time:'2021-10-19 12:23',
},
],
listData:[],
}
}
},
......@@ -535,7 +510,7 @@ export default {
//获取采区当前日产量
HttpReq.truckDispatching.caiquAreaQueryDay().then((res) => {
let undueArray = {};
if(res.length == 0){
if(res.length == 0 || JSON.stringify(res[0]) == '{}'){
undueArray.eff = 0;
undueArray.finish = 0;
undueArray.plan = 0;
......@@ -559,7 +534,7 @@ export default {
//获取采区当前月产量
HttpReq.truckDispatching.caiquAreaQueryMonth().then((res) => {
let undueArray = {};
if(res.length == 0){
if(res.length == 0 || JSON.stringify(res[0]) == '{}'){
undueArray.eff = 0;
undueArray.finish = 0;
undueArray.plan = 0;
......@@ -583,7 +558,7 @@ export default {
//获取采区当前年产量
HttpReq.truckDispatching.caiquAreaQueryYear().then((res) => {
let undueArray = {};
if(res.length == 0){
if(res.length == 0 || JSON.stringify(res[0]) == '{}'){
undueArray.eff = 0;
undueArray.finish = 0;
undueArray.plan = 0;
......@@ -757,7 +732,7 @@ export default {
//获取采区当前日产量
HttpReq.truckDispatching.caiquAreaQueryDay().then((res) => {
let undueArray = {};
if(res.length == 0){
if(res.length == 0 || JSON.stringify(res[0]) == '{}'){
undueArray.eff = 0;
undueArray.finish = 0;
undueArray.plan = 0;
......@@ -781,7 +756,7 @@ export default {
//获取采区当前月产量
HttpReq.truckDispatching.caiquAreaQueryMonth().then((res) => {
let undueArray = {};
if(res.length == 0){
if(res.length == 0 || JSON.stringify(res[0]) == '{}'){
undueArray.eff = 0;
undueArray.finish = 0;
undueArray.plan = 0;
......@@ -805,7 +780,7 @@ export default {
//获取采区当前年产量
HttpReq.truckDispatching.caiquAreaQueryYear().then((res) => {
let undueArray = {};
if(res.length == 0){
if(res.length == 0 || JSON.stringify(res[0]) == '{}'){
undueArray.eff = 0;
undueArray.finish = 0;
undueArray.plan = 0;
......@@ -1481,7 +1456,6 @@ export default {
}
.dataScrView{
position: absolute;
z-index: 1;
width: 100%;
height: 100%;
overflow: hidden;
......@@ -1491,6 +1465,7 @@ export default {
.dataScrView_leftView{
height: 100%;
width: 20%;
z-index: 3;
}
.dataScrView_centerView{
height: 100%;
......@@ -1500,6 +1475,7 @@ export default {
.dataScrView_rightView{
height: 100%;
width: 20%;
z-index: 3;
}
.dataScrView_leftView>div{
width: 100%;
......@@ -1743,6 +1719,7 @@ dd>div{
padding: 5px 7px;
box-sizing: border-box;
overflow: hidden;
z-index: 3;
}
.dataScrView_centerView_title{
margin-bottom: 5px;
......
......@@ -42,7 +42,6 @@
<video id="monitorCover1Id" width="1300" height="700" muted autoplay></video>
</div>
</div>
</div>
</template>
......@@ -318,6 +317,7 @@ export default {
top: 0px;
position: absolute;
overflow: hidden;
z-index: 2;
}
.bigScreenView{
width: 100vw;
......@@ -331,7 +331,7 @@ export default {
background:no-repeat center center url('~@/assets/images/cutGraph/top_title.png');
background-size:100% 100%;
position: relative;
z-index: 1;
z-index: 3;
}
.content_view{
width: 100%;
......@@ -343,7 +343,7 @@ export default {
.videoSelectView{
position: absolute;
top: 5.5vh;
z-index: 1;
z-index: 3;
width: 100%;
height: 5.5vh;
background-color: rgb(102,204,255);
......@@ -360,7 +360,7 @@ export default {
.jiankongView{
position: absolute;
top: 11vh;
z-index: 1;
z-index: 3;
width: 100%;
}
.top_titl_left{
......
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