154 lines
4.6 KiB
Python
154 lines
4.6 KiB
Python
<template>
|
|
<div id="index" ref="appRef">
|
|
<div class="bg">
|
|
<!--<dv-loading v-show="loading">Loading...</dv-loading>-->
|
|
<div class="host-body">
|
|
<div class="d-flex jc-center" id="firstLine">
|
|
<dv-decoration-10 class="dv-dec-10" />
|
|
<div class="d-flex jc-center">
|
|
<dv-decoration-8 class="dv-dec-8" :color="['#568aea', '#000000']" />
|
|
<div class="title">
|
|
<div class="title-text">
|
|
<span style="margin-right: 20px">*航玻车间</span><span>可视化平台</span>
|
|
</div>
|
|
<dv-decoration-6
|
|
class="dv-dec-6"
|
|
:reverse="true"
|
|
:color="['#50e3c2', '#67a1e5']"
|
|
/>
|
|
</div>
|
|
<dv-decoration-8
|
|
class="dv-dec-8"
|
|
:reverse="true"
|
|
:color="['#568aea', '#000000']"
|
|
/>
|
|
</div>
|
|
<dv-decoration-10 class="dv-dec-10-s" />
|
|
</div>
|
|
<!-- 第二行 -->
|
|
<div class="d-flex jc-between px-2">
|
|
<div class="d-flex aside-width">
|
|
<div class="react-left ml-4 react-l-s">
|
|
<span class="react-before"></span>
|
|
<span class="text">数据分析1</span>
|
|
</div>
|
|
<div class="react-right ml-3">
|
|
<span class="text">数据分析2</span>
|
|
</div>
|
|
</div>
|
|
<div class="d-flex aside-width">
|
|
<div class="react-right bg-color-blue mr-3">
|
|
<span class="text fw-b">车间详情展示</span>
|
|
</div>
|
|
<div class="react-right mr-4 react-l-s">
|
|
<span class="react-after"></span>
|
|
<span class="text"
|
|
>{{ dateYear }} {{ dateWeek }} {{ dateDay }}</span
|
|
>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="body-box">
|
|
<!-- 第三行数据 -->
|
|
<div id="centerWrap" class="content-box">
|
|
<!-- 中间 -->
|
|
<div>
|
|
<center />
|
|
</div>
|
|
<div>
|
|
<dv-border-box-1>
|
|
<centerLeft1 />
|
|
</dv-border-box-1>
|
|
</div>
|
|
<div>
|
|
<dv-border-box-1>
|
|
<centerLeft1 />
|
|
</dv-border-box-1>
|
|
</div>
|
|
<div>
|
|
<centerRight2 />
|
|
</div>
|
|
<div>
|
|
<dv-border-box-13>
|
|
<centerRight1 />
|
|
</dv-border-box-13>
|
|
</div>
|
|
</div>
|
|
<!-- 第四行数据 -->
|
|
<div class="bototm-box">
|
|
<dv-border-box-3>
|
|
<bottomRight />
|
|
</dv-border-box-3>
|
|
<dv-border-box-13>
|
|
<bottomLeft />
|
|
</dv-border-box-13>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import drawMixin from "../../utils/drawMixin";
|
|
import { formatTimeBigScreen } from '../../utils/index.js'
|
|
import centerLeft1 from './centerLeft1'
|
|
import centerRight1 from './centerRight1'
|
|
import centerRight2 from './centerRight2'
|
|
import center from './center'
|
|
import bottomLeft from './bottomLeft'
|
|
import bottomRight from './bottomRight'
|
|
|
|
export default {
|
|
mixins: [ drawMixin ],
|
|
data() {
|
|
return {
|
|
timing: null,
|
|
loading: true,
|
|
dateDay: null,
|
|
dateYear: null,
|
|
dateWeek: null,
|
|
weekday: ['周日', '周一', '周二', '周三', '周四', '周五', '周六']
|
|
}
|
|
},
|
|
components: {
|
|
centerLeft1,
|
|
centerRight1,
|
|
centerRight2,
|
|
center,
|
|
bottomLeft,
|
|
bottomRight
|
|
},
|
|
mounted() {
|
|
this.timeFn();
|
|
this.cancelLoading();
|
|
let bigHeight = document.getElementsByClassName('host-body')[0].clientHeight;
|
|
let firstHeight = document.getElementById('firstLine').clientHeight;
|
|
let secondHeight = document.getElementsByClassName('jc-between')[0].clientHeight;
|
|
let domHeight = (bigHeight/2) - firstHeight - secondHeight-30;
|
|
document.getElementById('centerWrap').style.height = domHeight + 'px';
|
|
},
|
|
beforeDestroy () {
|
|
clearInterval(this.timing)
|
|
},
|
|
methods: {
|
|
timeFn() {
|
|
this.timing = setInterval(() => {
|
|
this.dateDay = formatTimeBigScreen(new Date(), 'HH: mm: ss')
|
|
this.dateYear = formatTimeBigScreen(new Date(), 'yyyy-MM-dd')
|
|
this.dateWeek = this.weekday[new Date().getDay()]
|
|
}, 1000)
|
|
},
|
|
cancelLoading() {
|
|
setTimeout(() => {
|
|
this.loading = false
|
|
}, 500)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import '../../assets/scss/index';
|
|
</style>
|