houzhongjian
2024-07-23 8501060c4f921d1e744c477e4dc08eb47b52693c
提交 | 用户 | 时间
850106 1 <template>
H 2   <el-card shadow="never" class="aui-card--fill">
3     <div id="data-view">
4             <div id="title-bar">
5                 <div class="title-text">
6                     <div class="main-title-text">
7                         智能分选及加药控制模块
8                     </div>
9                 </div>
10             </div>
11             <div id="data-body">
12                 <div id="data-scada">
13                     <zjfx></zjfx>
14                 </div>
15             </div>
16     </div>
17   </el-card>
18 </template>
19 <script>
20 import Zjfx from './zjfx.vue'
21
22 export default {
23     components: {
24         Zjfx
25     },
26     data() {
27         return {}
28     }
29 }
30
31 </script>
32 <style scoped>
33 #right-status {
34     width: 10%;
35     height: 100%;
36 }
37
38 #data-foot {
39     width: 100%;
40     height: 38%;
41 }
42
43 #data-scada {
44     width: 90%;
45     height: calc(100% - 5px);
46 }
47
48 #data-body {
49     width: 100%;
50     height: 58%;
51     padding-top: 5px;
52     display: flex;
53 }
54
55 .title-text {
56     width: 20%;
57     height: 100%;
58 }
59
60 .main-title-text {
61     padding-top: 5px;
62     font-size: 20px;
63     font-family: 黑体;
64     text-align: center;
65 }
66
67 #title-bar {
68     width: 100%;
69     height: 4%;
70     padding: 5px;
71     display: flex;
72     justify-content: center;
73     background-color: rgba(102, 177, 255, 0.2);
74 }
75
76 #data-view {
77     width: 100%;
78     height: 100%;
79     background-color: #030409;
80     color: #fff;
81 }
82
83 </style>