zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<%--
  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>