永康嘉持电器有限公司前端
小小儁爺
2024-10-09 63e3551a76c7f1b0860786bc61db9880aeb21e90
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
/*全局样式表*/
html, body, #app {
  height: 100%;
  margin: 0;
  padding: 0;
  /*min-width: 1200px;*/ /*这行代码目前不能加  加了工单打印宽度会出问题*/
  /*overflow-y: hidden;*/
  /*overflow-x: hidden;*/
 
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
}
 
 
.body {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #eaecef;
  margin: 0;
  padding: 0 10px;
}
 
.el-table .custom-row {
  background: #f8f8fa;
}
 
.el-table__body-wrapper {
  background: #f8f8fa;
}
 
.el-table__body .el-table__row.hover-row td {
  background-color: #eaecef !important;
}
 
.body .el-input__inner {
  height: 34px !important;
}
 
.el-dialog__body {
  padding: 50px 80px !important;
}
 
.el-dialog__body .el-input__inner {
  height: 34px !important;
}
 
.el-icon-delete, .el-icon-edit-outline {
  cursor: pointer;
  margin-right: 15px;
}
 
.operationClass {
  height: 23px;
  display: flex;
  align-items: center;
}
 
.el-message-box__btns {
  display: flex;
  justify-content: flex-end;
}
 
.el-button--text{
  font-size: 14px !important;
  cursor: pointer !important;
}
 
 
/*头部按钮组样式*/
.bodyTopButtonGroup {
  /*padding-left: 10px;*/
  display: flex;
  background-color: #f8f8fa;
  margin-top: 10px;
  padding: 5px 10px;
  border-bottom: 3px solid #eee;
}
 
/*头部表单组样式*/
.bodyTopFormGroup {
  background-color: #f8f8fa;
  padding: 10px 10px 0 10px;
  display: flex;
  flex-direction: column;
}
 
.bodySearchReset {
  display: flex;
  align-items: start;
  margin-top: 3px;
  /*margin-left: 5%;*/
  /*margin-left: 10%;*/
}
 
.bodyTopFormExpand {
  display: block;
  text-align: center;
  margin-top: 5px;
  /*justify-content: center;*/
  /*align-items: center;*/
  /*background-color: #eee;*/
  /*cursor: pointer;*/
}
 
.bodyTopFormExpand:hover {
  color: #00ff8b !important;
}
 
.svg-icon:hover {
  color: #00ff8b !important;
  /*background-color: #00ff8b !important;*/
}
 
.elForm {
  display: flex;
  /*justify-content: flex-start;*/
  /*justify-content: space-between;*/
  /*justify-content: space-around;*/
  width: 100%;
  /*min-height:42px  !important;*/
  flex-wrap: wrap;
}
 
.elForm .el-form-item {
  margin-bottom: 0 !important;
}
 
.elTableDiv {
  display: flex;
  border: 1px solid #eee;
  /*width: 99%;*/
  width: 100%;
  margin: 10px auto;
  /*margin-top: 20px;*/
  box-shadow: 0 0 5px #d7d6d6;
  position: relative;
}
 
/*.operationClass {*/
/*  height: 23px;*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
/*}*/
 
 
/*对话框按钮底部*/
.footerButton {
  display: flex;
  justify-content: end;
}
 
.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
 
.osloading {
  font-size: 26px !important;
}
 
.el-loading-text {
  font-size: 26px !important;
}
 
 
.el-button {
  height: 34px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
 
/*
定义滚动条高宽及背景
高宽分别对应横竖滚动条的尺寸
*/
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  /*background-color: white;*/
  background-color: #f8f8fa;
}
 
::-webkit-scrollbar-thumb {
  /*box-shadow: inset 0 0 0px white;*/
  box-shadow: inset 0 0 0px #f8f8fa;
  /*-webkit-box-shadow: inset 0 0 0px white;*/
  -webkit-box-shadow: inset 0 0 0px #f8f8fa;
  background-color: rgb(193, 193, 193);
  /*滚动条的背景颜色*/
  border-radius: 20px;
}
 
/*解决表格固定列时的压样式问题*/
.el-table__fixed {
  height: calc(100% - 7px) !important;
}
 
.el-table__fixed-right {
  height: calc(100% - 12px) !important;
}
 
.el-table__fixed-right::before,
.el-table__fixed::before {
  /*background-color: unset !important;*/
  background-color: #f8f8fa !important;
}
 
/*scrollbar END*/
 
 
/*解决固定滚动条高低像素差*/
.el-table__fixed::before {
  height: 0 !important;
}
 
.el-table__fixed-right::before {
  height: 0 !important;
}