<!--
|
* @Author: daidai
|
* @Date: 2022-03-04 09:23:59
|
* @LastEditors: Please set LastEditors
|
* @LastEditTime: 2022-05-07 11:05:02
|
* @FilePath: \web-pc\src\pages\big-screen\view\indexs\index.vue
|
-->
|
<template>
|
<div class="contents">
|
<div class="contetn_left">
|
<div class="pagetab">
|
|
</div>
|
<!-- <ItemWrap class="contetn_left-top contetn_lr-item" title="故障--种类频率">
|
<LeftCenter />
|
</ItemWrap> -->
|
|
<ItemWrap
|
class="contetn_left-bottom contetn_lr-item"
|
title="当前出入库任务"
|
>
|
<stationone/>
|
</ItemWrap>
|
|
<ItemWrap
|
class="contetn_left-bottom contetn_lr-item"
|
title="今日待出库实盘"
|
>
|
<stationtwo/>
|
</ItemWrap>
|
|
<ItemWrap
|
class="contetn_left-bottom contetn_lr-item"
|
title="货位状态信息"
|
>
|
<stationthree/>
|
</ItemWrap>
|
|
</div>
|
<div class="contetn_center">
|
<div style="height:70vh;margin-bottom: -30px">
|
<LeftBottom/>
|
</div>
|
<ItemWrap
|
class="contetn_left-bottom contetn_lr-item"
|
title="产量展示信息"
|
style="padding: 0 10px 16px 10px"
|
>
|
<RightCenter />
|
</ItemWrap>
|
</div>
|
<div class="contetn_right">
|
<ItemWrap
|
class="contetn_left-bottom contetn_lr-item"
|
title="各线当前任务数量"
|
style="padding: 0 10px 16px 10px"
|
>
|
<passtwo />
|
</ItemWrap>
|
|
<ItemWrap
|
class="contetn_left-bottom contetn_lr-item"
|
title="实盘入库产量统计"
|
style="padding: 0 10px 16px 10px"
|
>
|
<CenterBottom />
|
</ItemWrap>
|
|
<ItemWrap
|
class="contetn_left-bottom contetn_lr-item"
|
title="实盘出库产量统计"
|
>
|
<plan />
|
</ItemWrap>
|
|
</div>
|
</div>
|
</template>
|
|
<script>
|
import LeftTop from './left-top.vue'
|
import LeftCenter from "./left-center.vue";
|
import LeftBottom from "./left-bottom.vue";
|
import CenterMap from "./center-map.vue";
|
import CenterBottom from "./center-bottom.vue";
|
import RightTop from "./right-top.vue";
|
import RightCenter from "./right-center.vue";
|
import RightBottom from "./right-bottom.vue";
|
import LeftCenterRight from "./left-center-right.vue";
|
import stationone from './station-one.vue'
|
import stationtwo from './station-two.vue'
|
import stationthree from './station-three.vue'
|
import stationfour from './station-four.vue'
|
import passtwo from './pass-two.vue'
|
import plan from './plan.vue'
|
export default {
|
components: {
|
LeftTop,
|
LeftCenter,
|
LeftCenterRight,
|
LeftBottom,
|
CenterMap,
|
RightTop,
|
RightCenter,
|
RightBottom,
|
CenterBottom,
|
stationone,
|
stationtwo,
|
stationthree,
|
stationfour,
|
passtwo,
|
plan
|
},
|
data() {
|
return {
|
|
};
|
},
|
filters: {
|
numsFilter(msg) {
|
return msg || 0;
|
},
|
},
|
created() {
|
},
|
|
mounted() {},
|
methods: {
|
|
},
|
};
|
</script>
|
<style lang="scss" scoped>
|
// 内容
|
.contents {
|
.contetn_left,
|
.contetn_right {
|
width: 540px;
|
box-sizing: border-box;
|
// padding: 16px 0;
|
}
|
|
.contetn_center {
|
width: 720px;
|
}
|
|
//左右两侧 三个块
|
.contetn_lr-item {
|
height: 310px;
|
}
|
|
.contetn_center_top {
|
width: 100%;
|
}
|
|
// 中间
|
.contetn_center {
|
display: flex;
|
flex-direction: column;
|
justify-content: space-around;
|
}
|
|
.contetn_center-bottom {
|
height: 315px;
|
}
|
|
//左边 右边 结构一样
|
.contetn_left,
|
.contetn_right {
|
display: flex;
|
flex-direction: column;
|
justify-content: space-around;
|
position: relative;
|
|
|
}
|
}
|
.labels {
|
flex-shrink: 0;
|
font-size: 24px;
|
color: rgba(255, 255, 255, 0.6);
|
float: left;
|
margin-right: 11.5%;
|
}
|
.labelsd {
|
flex-shrink: 0;
|
font-size: 24px;
|
color: rgba(255, 255, 255, 0.6);
|
float: left;
|
margin-left: 6%;
|
}
|
|
@keyframes rotating {
|
0% {
|
-webkit-transform: rotate(0) scale(1);
|
transform: rotate(0) scale(1);
|
}
|
50% {
|
-webkit-transform: rotate(180deg) scale(1.1);
|
transform: rotate(180deg) scale(1.1);
|
}
|
100% {
|
-webkit-transform: rotate(360deg) scale(1);
|
transform: rotate(360deg) scale(1);
|
}
|
}
|
</style>
|