自动化立体仓库 - WCS系统
#
luxiaotao1123
2022-02-21 35ae54320befb54df4dd7e8b2cf81680c951720b
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
157
158
159
160
161
body {
    padding: 10px;
    background-color: #f1f1f1;
}
main {
    background-color: #fff;
    height: 85%;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0,0,0,.3);
    margin-bottom: 8px;
}
.button-window {
    float: left;
    width: 5%;
    height: 100%;
}
.main-board {
    padding-left: 1%;
    float: left;
    width: 47.5%;
    height: 100%;
    overflow: auto;
}
.main-board:first-child {
    border-right: 1px solid #cad9ea;
}
 
/* 表格 */
.plc-log-header {
    height: 05%;
}
.plc-log-body {
    height: 95%;
    overflow: auto;
}
 
 
/* 站点表格 */
#site-table {
    font-size: 12px;
    border-collapse: collapse;
    margin: 0 auto;
    text-align: center;
}
#site-table td, #site-table th {
    border: 1px solid #cad9ea;
    color: #666;
    height: 25px;
}
#site-table thead th {
    background-color: #CCE8EB;
    width: 100px;
}
#site-table tr:nth-child(odd) {
    background: #fff;
}
#site-table tr:nth-child(even) {
    background: #F5FAFA;
}
 
 
 
/* plc异常表格 */
#plc-error-table {
    font-size: 12px;
    border-collapse: collapse;
    margin: 0 auto;
}
#plc-error-table td, #plc-error-table th {
    border: 1px solid #cad9ea;
    color: #666;
    height: 25px;
    text-align: left;
    padding-left: 5px;
}
#plc-error-table thead th {
    background-color: #CCE8EB;
    width: 100px;
}
#plc-error-table td {
    color: red;
}
#plc-error-table tr:nth-child(odd) {
    background: #fff;
}
#plc-error-table tr:nth-child(even) {
    background: #F5FAFA;
}
 
 
/* 尾部 */
footer {
    height: 11%;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0,0,0,.3);
}
#output {
    color: #666;
    border: 1px solid #b9b9b9;
    width: 100%;
    height: 100%;
    overflow: auto;
    resize:none;
}
 
 
/* 详情弹出层 */
#site-detl {
    padding: 30px 10px 0 25px;
    overflow: hidden;
}
#site-detl form {
    overflow: hidden;
}
.form-item {
    margin-bottom: 10px;
}
.form-label {
    display: inline-block;
    width: 70px;
    text-align: right;
}
.form-input {
    display: inline-block;
    padding-left: 15px;
}
.form-input input {
    outline-style: none ;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 5px 8px;
    width: 150px;
    font-size: 14px;
    font-weight: bolder;
}
.form-input input:focus{
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)
}
.form-button-container {
    text-align: center;
}
.form-button {
    margin: 10px 10px;
    width: 50px;
    height: 30px;
    color:white;
    background-color:cornflowerblue;
    border-radius: 3px;
    border-width: 0;
    outline: none;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
}
.form-button:hover {
    opacity: 0.7;
}