Fixiaobai
2023-10-11 49890f74f09c5f132380c0a3d41982a8e924096a
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<template>
  <div id="app">
    <router-view />
  </div>
</template>
 
<script>
export default {
  name: "App",
  created() {
    // const changeFavicon = link => {
    //   let $favicon = document.querySelector('link[rel="icon"]');
    //   if ($favicon !== null) {
    //     $favicon.href = link;
    //   } else {
    //     $favicon = document.createElement("link");
    //     $favicon.rel = "icon";
    //     $favicon.href = link;
    //     document.head.appendChild($favicon);
    //   }
    // };
    // let icon = '../../../../../static/img/heisur/logo.png'; // 图片地址
    // changeFavicon(icon); // 动态修改网站图标
  }
};
</script>
<style>
/* @import url("../static/img/alifont/iconfont.css"); */
@import url("//at.alicdn.com/t/c/font_4281775_1onp267azqn.css");
 
* {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "微软雅黑";
}
 
a {
  text-decoration: none;
}
 
.router-link-active {
  text-decoration: none;
}
 
.el-scrollbar .el-scrollbar__bar {
  opacity: 1 !important;
}
 
.el-select-dropdown__item span,
.el-cascader-node__label {
  font-size: 0.8rem;
}
 
.el-dialog {
  border-radius: 6px;
  overflow: hidden;
  margin: 0 !important;
}
 
.el-dialog__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
 
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999 !important;
  font-size: 10px;
}
 
input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #999 !important;
  font-size: 10px;
}
 
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #999 !important;
  font-size: 10px;
}
 
input:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #999 !important;
  font-size: 10px;
}
 
.el-message p {
  color: #666 !important;
  font-size: 12px;
}
 
.el-message {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 6px 10px;
  min-width: 0;
  border-radius: 6px;
}
 
table {
  border-collapse: collapse;
}
 
.el-popover {
  padding: 0;
}
 
.el-popper .popper__arrow {
  display: none;
}
/**修改全局的滚动条*/
/**滚动条的宽度*/
::-webkit-scrollbar {
  width: 8px;
    height: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: #bdbfc4;
  border-radius: 3px;
}
/* 全局表格样式 */
.el-table th.el-table__cell,
.has-gutter .el-table__cell {
  background-color: #f0f1f5 !important;
  color: #333;
}
.has-gutter .el-table__cell .cell {
  font-size: 16px;
  font-weight: 500;
}
.cell {
  color: rgb(51, 51, 51);
  padding-left: 17px !important;
  font-size: 14px;
}
.cell span {
  font-size: 14px;
  font-weight: 400;
}
.el-table th.el-table__cell > .cell {
  font-size: 16px;
  font-weight: 400;
  color: rgb(51, 51, 51);
}
/* 全局分页器样式 */
.el-pager .number {
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  margin: 0 2px;
  color: #999;
  font-weight: 500;
}
.el-pager .number.active {
  background-color: #004ea2;
  color: #fff;
  border: 0;
}
/* 全局模态框样式 */
.el-dialog__header,.el-message-box__header {
  box-sizing: border-box;
  height: 56px;
  border-bottom: 1px solid rgb(238, 238, 238);
  padding: 0px;
  display: flex;
  align-items: center;
}
.el-dialog__header::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 30.24px;
  background: rgb(0, 95, 201);
  border-radius: 10px;
  margin-left: 32px;
  margin-right: 8.5px;
}
 
.el-message-box__header::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 30.24px;
  background: rgb(0, 95, 201);
  border-radius: 10px;
  margin-left: 20px;
  margin-right: 8.5px;
}
 
.el-dialog__header .el-dialog__title {
  font-size: 16px !important;
}
 
.el-dialog__footer{
    padding-right: 40px;
}
 
.el-dialog__footer .el-button * {
  font-size: 14px !important;
}
 
.el-dialog__footer .el-button {
  height: 36px;
  border: 1px solid rgba(190, 190, 190, 0.44);
  box-shadow: 0px 2px 4px rgba(220, 220, 220, 0.41);
  padding: 0 14px;
}
 
.el-message-box__btns .el-button * {
  font-size: 14px !important;
}
 
.el-message-box__btns .el-button{
    height: 36px;
    border: 1px solid rgba(190, 190, 190, 0.44);
    box-shadow: 0px 2px 4px rgba(220, 220, 220, 0.41);
    padding: 0 14px;
}
 
.el-button--primary {
  background: #004ea2;
}
 
.el-dialog__body {
  padding: 15px 20px;
}
 
.el-input.is-disabled input {
  color: #666 !important;
  background-color: rgba(0, 0, 0, 0.05) !important;
}
/* 全局输入框样式 */
/* 全局按钮样式 */
</style>