<%--
|
Created by IntelliJ IDEA.
|
User: zhuguifei
|
Date: 2020-07-27
|
Time: 15:47
|
To change this template use File | Settings | File Templates.
|
--%>
|
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
pageEncoding="UTF-8"%>
|
<!DOCTYPE html>
|
<meta name="keywords" content="上海兰宝数据采集系统,卷接包数据采集"/>
|
<html>
|
<head>
|
<title>上海兰宝数据采集系统,卷接包数据采集</title>
|
<script type="text/babel" src="https://blog-static.cnblogs.com/files/gxsyj/browser.min.js"></script>
|
<script src="https://unpkg.com/vue"></script>
|
<!--Debug version-->
|
<!--调试版-->
|
<script src="https://unpkg.com/@jiaminghi/data-view/dist/datav.map.vue.js"></script>
|
<!--Compression version-->
|
<!--压缩版-->
|
<!-- <script src="https://unpkg.com/@jiaminghi/data-view/dist/datav.min.vue.js"></script> -->
|
<%-- TODO 设计尺寸height:1002px;width: 1920px--%>
|
<style>
|
html, body, #app {
|
width: 100%;
|
height: 100%;
|
margin: 0px;
|
padding: 0px;
|
}
|
.rgba{ background: rgba(255, 255, 255, 0.03);border-radius:3px; border: 1px solid rgba(255, 255, 255, 0.1)}
|
|
#dv-full-screen-container {
|
background-image: url('../../img/xy.jpg');
|
background-size: 100% 100%;
|
box-shadow: 0 0 3px blue;
|
display: flex;
|
flex-direction: column;
|
}
|
|
.main-header {
|
height: 80px;
|
display: flex;
|
justify-content: space-between;
|
align-items: flex-end;
|
}
|
|
.mh-middle {
|
color: white;
|
font-size: 30px;
|
}
|
|
.main-container {
|
height: calc(~ "100% - 80px");
|
}
|
.main-container-left{
|
width: 59.8%;
|
margin-right: 0.2%;
|
display: flex;
|
flex-direction: column;
|
}
|
.main-container-right{
|
width: 40%;
|
}
|
.border-box-content {
|
padding: 20px;
|
box-sizing: border-box;
|
display: flex;
|
}
|
|
.container-left-top{
|
height: 32%;
|
display: flex;
|
flex-direction: column;
|
}
|
.container-left-bot{
|
margin-top: 0.2%;
|
height: 67.8%;
|
}
|
|
.effe-title{
|
padding: 1%;
|
height: 20%;
|
color: white;
|
box-sizing: border-box;
|
}
|
|
.effe-body {
|
height: 70%;
|
display: flex;
|
flex-wrap: nowrap;
|
justify-content: center;
|
}
|
.effe-body-item{
|
height: 100%;
|
width: 25%;
|
}
|
.left3{
|
margin-left: 3%;
|
}
|
|
|
</style>
|
</head>
|
<body>
|
<div id="app">
|
<%--全屏盒子--%>
|
<dv-full-screen-container>
|
<%-- 顶部标题--%>
|
<div class="main-header">
|
<div class="mh-left"></div>
|
<div class="mh-middle">兰宝车间综合管理平台</div>
|
<div class="mh-right"></div>
|
</div>
|
<%--内容主体--%>
|
<dv-border-box-1 class="main-container">
|
<%--左边--%>
|
<div class="main-container-left">
|
<%--有效作用率最高--%>
|
<div class="container-left-top rgba">
|
<div class="effe-title">
|
有效作用率最高
|
</div>
|
<div class="effe-body">
|
<div class="effe-body-item rgba"></div>
|
<div class="effe-body-item left3 rgba "></div>
|
<div class="effe-body-item left3 rgba"></div>
|
|
</div>
|
|
|
</div>
|
<%--生产计划--%>
|
<div class="container-left-bot rgba">
|
</div>
|
|
|
|
</div>
|
<%--右边--%>
|
<div class="main-container-right rgba">
|
|
</div>
|
|
</dv-border-box-1>
|
|
|
</dv-full-screen-container>
|
</div>
|
<script>
|
var app = new Vue({
|
el: '#app'
|
})
|
</script>
|
</body>
|
</html>
|