system-clients 3.2.4 → 3.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (167) hide show
  1. package/.eslintrc.js +16 -16
  2. package/SystemClient.iml +2 -5
  3. package/build/webpack.base.conf.js +21 -11
  4. package/package.json +6 -4
  5. package/src/App.vue +24 -24
  6. package/src/components/Main.vue +626 -476
  7. package/src/components/TabButton.vue +201 -0
  8. package/src/components/Tabs.vue +67 -0
  9. package/src/components/addressManage/AddressCascadingMenu.vue +145 -0
  10. package/src/components/equipment/EquipmentManage.vue +1 -1
  11. package/src/components/equipment/PcAdd.vue +5 -5
  12. package/src/components/equipment/PcList.vue +5 -5
  13. package/src/components/equipment/PhoneAdd.vue +26 -13
  14. package/src/components/equipment/PhoneList.vue +31 -21
  15. package/src/components/equipment/PosAdd.vue +231 -45
  16. package/src/components/equipment/PosList.vue +198 -68
  17. package/src/components/equipment/PosManage.vue +80 -9
  18. package/src/components/equipment/PosManageBoth.vue +125 -0
  19. package/src/components/equipment/PosParamAdd.vue +236 -0
  20. package/src/components/equipment/PosParamList.vue +121 -0
  21. package/src/components/equipment/PosParamManage.vue +51 -0
  22. package/src/components/parammanage/ParamManage.vue +2 -2
  23. package/src/components/parammanage/ParamPage.vue +30 -8
  24. package/src/components/parammanage/SinglePage.vue +4 -4
  25. package/src/components/server/ImageVieweTest.vue +56 -0
  26. package/src/components/server/ImageViewer.vue +350 -0
  27. package/src/components/server/LoadData.vue +21 -2
  28. package/src/components/server/Login.vue +889 -625
  29. package/src/components/server/ModifyPw.vue +12 -7
  30. package/src/components/server/PcdBuildingSelect.vue +241 -0
  31. package/src/components/server/ResSelect.vue +5 -0
  32. package/src/components/server/ResSelectGroup.vue +159 -103
  33. package/src/components/server/RightTree.vue +289 -204
  34. package/src/filiale/dongguan/Main.vue +715 -0
  35. package/src/filiale/dongguan/system.js +5 -0
  36. package/src/filiale/konggang/Login.vue +840 -0
  37. package/src/filiale/konggang/system.js +7 -0
  38. package/src/filiale/qianneng/ModifyPw.vue +107 -0
  39. package/src/filiale/qianneng/system.js +7 -0
  40. package/src/filiale/rizhao/LeftTree.vue +111 -0
  41. package/src/filiale/rizhao/Login.vue +791 -0
  42. package/src/filiale/rizhao/Main.vue +606 -0
  43. package/src/filiale/rizhao/system.js +14 -0
  44. package/src/filiale/yuchuan/Login.vue +889 -0
  45. package/src/filiale/yuchuan/Main.vue +773 -0
  46. package/src/filiale/yuchuan/system.js +10 -0
  47. package/src/plugins/EncryptUtil.js +53 -0
  48. package/src/plugins/GetLoginInfoService.js +76 -70
  49. package/src/plugins/HeatGetLoginInfoService.js +491 -0
  50. package/src/plugins/validation.js +9 -1
  51. package/src/stores/HeatAppData.js +38 -0
  52. package/src/styles/fonts/PINGFANG LIGHT.TTF +0 -0
  53. package/src/styles/fonts/PingFangSC-Regular.ttf +0 -0
  54. package/src/styles/fonts/glyphicons-halflings-regular.eot +0 -0
  55. package/src/styles/fonts/glyphicons-halflings-regular.svg +288 -0
  56. package/src/styles/fonts/glyphicons-halflings-regular.ttf +0 -0
  57. package/src/styles/fonts/glyphicons-halflings-regular.woff +0 -0
  58. package/src/styles/fonts/glyphicons-halflings-regular.woff2 +0 -0
  59. package/src/styles/fonts/pingfang-bold.ttf +0 -0
  60. package/src/styles/fonts/pingfang-medium.ttf +0 -0
  61. package/src/styles/fonts/pingfang-regular.ttf +0 -0
  62. package/src/styles/fonts/trendstrends.ttf +0 -0
  63. package/src/styles/fonts//346/261/211/344/273/252/350/217/261/345/277/203/344/275/223/347/256/200.ttf +0 -0
  64. package/src/styles/less/.csscomb.json +304 -0
  65. package/src/styles/less/.csslintrc +19 -0
  66. package/src/styles/less/alerts.less +73 -0
  67. package/src/styles/less/aofeng/animate.min.css +11 -0
  68. package/src/styles/less/aofeng/expandcss.less +569 -0
  69. package/src/styles/less/aofeng/standard.less +2507 -0
  70. package/src/styles/less/aofeng/themeOne/BinaryTemplate.less +686 -0
  71. package/src/styles/less/aofeng/themeOne/loginStyle.less +1586 -0
  72. package/src/styles/less/aofeng/themeOne/systemStyle.less +2650 -0
  73. package/src/styles/less/aofeng/themeOne.less +17 -0
  74. package/src/styles/less/aofeng/themeTwo/newStyle1.less +415 -0
  75. package/src/styles/less/aofeng/themeTwo.less +3 -0
  76. package/src/styles/less/badges.less +66 -0
  77. package/src/styles/less/bootstrap.less +66 -0
  78. package/src/styles/less/breadcrumbs.less +26 -0
  79. package/src/styles/less/button-groups.less +247 -0
  80. package/src/styles/less/buttons.less +172 -0
  81. package/src/styles/less/carousel.less +269 -0
  82. package/src/styles/less/close.less +34 -0
  83. package/src/styles/less/code.less +69 -0
  84. package/src/styles/less/component-animations.less +33 -0
  85. package/src/styles/less/dropdowns.less +216 -0
  86. package/src/styles/less/fonts-list.less +25 -0
  87. package/src/styles/less/forms.less +626 -0
  88. package/src/styles/less/glyphicons.less +305 -0
  89. package/src/styles/less/grid.less +84 -0
  90. package/src/styles/less/input-groups.less +167 -0
  91. package/src/styles/less/jumbotron.less +52 -0
  92. package/src/styles/less/labels.less +64 -0
  93. package/src/styles/less/list-group.less +141 -0
  94. package/src/styles/less/manageStyle/manageChile.less +180 -0
  95. package/src/styles/less/manageStyle/manageStyle/manageChile.less +180 -0
  96. package/src/styles/less/manageStyle/manageStyle/manageStyle.less +1102 -0
  97. package/src/styles/less/manageStyle/manageStyle/safeStyle.less +498 -0
  98. package/src/styles/less/manageStyle/manageStyle.less +1102 -0
  99. package/src/styles/less/manageStyle/safeStyle.less +498 -0
  100. package/src/styles/less/media.less +66 -0
  101. package/src/styles/less/mixins/alerts.less +14 -0
  102. package/src/styles/less/mixins/background-variant.less +9 -0
  103. package/src/styles/less/mixins/border-radius.less +18 -0
  104. package/src/styles/less/mixins/buttons.less +69 -0
  105. package/src/styles/less/mixins/center-block.less +7 -0
  106. package/src/styles/less/mixins/clearfix.less +22 -0
  107. package/src/styles/less/mixins/forms.less +90 -0
  108. package/src/styles/less/mixins/gradients.less +59 -0
  109. package/src/styles/less/mixins/grid-framework.less +92 -0
  110. package/src/styles/less/mixins/grid.less +122 -0
  111. package/src/styles/less/mixins/hide-text.less +21 -0
  112. package/src/styles/less/mixins/image.less +33 -0
  113. package/src/styles/less/mixins/labels.less +12 -0
  114. package/src/styles/less/mixins/list-group.less +30 -0
  115. package/src/styles/less/mixins/nav-divider.less +10 -0
  116. package/src/styles/less/mixins/nav-vertical-align.less +9 -0
  117. package/src/styles/less/mixins/opacity.less +8 -0
  118. package/src/styles/less/mixins/pagination.less +24 -0
  119. package/src/styles/less/mixins/panels.less +24 -0
  120. package/src/styles/less/mixins/progress-bar.less +10 -0
  121. package/src/styles/less/mixins/reset-filter.less +8 -0
  122. package/src/styles/less/mixins/reset-text.less +18 -0
  123. package/src/styles/less/mixins/resize.less +6 -0
  124. package/src/styles/less/mixins/responsive-visibility.less +15 -0
  125. package/src/styles/less/mixins/size.less +10 -0
  126. package/src/styles/less/mixins/tab-focus.less +9 -0
  127. package/src/styles/less/mixins/table-row.less +44 -0
  128. package/src/styles/less/mixins/text-emphasis.less +9 -0
  129. package/src/styles/less/mixins/text-overflow.less +8 -0
  130. package/src/styles/less/mixins/vendor-prefixes.less +227 -0
  131. package/src/styles/less/mixins.less +40 -0
  132. package/src/styles/less/modals.less +151 -0
  133. package/src/styles/less/navbar.less +660 -0
  134. package/src/styles/less/navs.less +285 -0
  135. package/src/styles/less/normalize.less +424 -0
  136. package/src/styles/less/pager.less +76 -0
  137. package/src/styles/less/pagination.less +89 -0
  138. package/src/styles/less/panels.less +275 -0
  139. package/src/styles/less/popovers.less +131 -0
  140. package/src/styles/less/print.less +101 -0
  141. package/src/styles/less/progress-bars.less +87 -0
  142. package/src/styles/less/responsive-embed.less +35 -0
  143. package/src/styles/less/responsive-utilities.less +194 -0
  144. package/src/styles/less/scaffolding.less +161 -0
  145. package/src/styles/less/stand.less +207 -0
  146. package/src/styles/less/tables.less +312 -0
  147. package/src/styles/less/theme.less +291 -0
  148. package/src/styles/less/thumbnails.less +36 -0
  149. package/src/styles/less/tooltip.less +102 -0
  150. package/src/styles/less/type.less +316 -0
  151. package/src/styles/less/utilities.less +55 -0
  152. package/src/styles/less/variables.less +899 -0
  153. package/src/styles/less/wells.less +29 -0
  154. package/src/system.js +34 -1
  155. package/src/util/Daiban.json +12 -0
  156. package/static/images/lefticon//345/220/210/345/220/214/347/256/241/347/220/206.png +0 -0
  157. package/static/logo.png +0 -0
  158. package/static/newStyle/about-us.png +0 -0
  159. package/static/rizhao.png +0 -0
  160. package/yarn-error.log +6896 -0
  161. package/.gradle/3.5/file-changes/last-build.bin +0 -0
  162. package/.gradle/3.5/taskHistory/taskHistory.lock +0 -0
  163. package/.gradle/3.5.1/file-changes/last-build.bin +0 -0
  164. package/.gradle/3.5.1/taskHistory/taskHistory.lock +0 -0
  165. package/.gradle/buildOutputCleanup/built.bin +0 -0
  166. package/.gradle/buildOutputCleanup/cache.properties +0 -2
  167. package/.gradle/buildOutputCleanup/cache.properties.lock +0 -1
@@ -0,0 +1,498 @@
1
+
2
+
3
+ /*分辨率@1920*1080*/
4
+ @media screen and (max-width: 1920px) {
5
+ /*经营管控全局页面样式*/
6
+ .home-div {
7
+ font-family: PingFangSC-Regular;
8
+ background-image: url('../../../../static/ManageHomePic/图层0.png');
9
+ background-repeat: no-repeat;
10
+ background-size: 100% 100%;
11
+ /*width: 2304px;*/
12
+ /*height: 775px;*/
13
+ width: 100%;
14
+ height: 100%;
15
+ position: relative;
16
+ overflow: hidden;
17
+ }
18
+
19
+ .safe-navigation{
20
+ position: absolute;
21
+ width: 100%;
22
+ height: 10%;
23
+ }
24
+ .safe-title-div{
25
+ margin-top: 1%;
26
+ margin-left: 3%;
27
+ padding-top: 1%;
28
+ float: left;
29
+ min-width: 13%;
30
+ max-height: 65px;
31
+ text-align: center;
32
+ background-image: url('../../../../static/ManageHomePic/图层519.png');
33
+ background-repeat: no-repeat;
34
+ background-size: 100% 100%;
35
+ }
36
+
37
+
38
+ /*菜单全局样式*/
39
+ .safe-navigation>.safe-menucol {
40
+ padding-left: 4%;
41
+ float: left;
42
+ width: 40%;
43
+ height: 100%;
44
+ }
45
+
46
+ /*菜单列样式*/
47
+ .safe-navigation>.safe-menucol>.safe-colname {
48
+ width: 100%;
49
+ height: 90%;
50
+ font-family: HanYi;
51
+ padding-top: 2%;
52
+ color: #00f7ff;
53
+ float: left;
54
+ }
55
+
56
+ /*单个菜单样式*/
57
+ .safe-navigation>.safe-menucol>.safe-colname div {
58
+ text-align: center;
59
+ padding-top: 3%;
60
+ width: 14%;
61
+ float: left;
62
+ height: 80%;
63
+ max-height: 60px;
64
+ letter-spacing: 0px;
65
+ font-family: HanYi;
66
+ }
67
+
68
+ .filiale{
69
+ font-family: PingFangSC-Regular;
70
+ float: right;
71
+ padding-top: 2%;
72
+ width: 11%;
73
+ font-size: 2rem;
74
+ color: white;
75
+ font-weight: bolder;
76
+ }
77
+ .filiale img{
78
+ margin-right: 5%;
79
+ width: 9%;
80
+ }
81
+ /*鼠标移入时菜单样式*/
82
+ .safe-navigation>.safe-menucol>.safe-colname div:hover {
83
+ font-size: 2rem;
84
+ background-image: url('../../../../static/ManageHomePic/椭圆2.png');
85
+ background-repeat: no-repeat;
86
+ background-position: bottom;
87
+ background-size: 100% 6%;
88
+ }
89
+
90
+ /*未选中菜单的字体大小*/
91
+ .safe-navigation>.safe-menucol>.safe-colname .noclick {
92
+ font-size: 1.8rem;
93
+ }
94
+
95
+ /*已选中菜单样式*/
96
+ .safe-navigation>.safe-menucol>.safe-colname .click {
97
+ font-size: 2.2rem;
98
+ background-image: url('../../../../static/ManageHomePic/椭圆2.png');
99
+ background-repeat: no-repeat;
100
+ background-position: bottom;
101
+ background-size: 100% 6%;
102
+ }
103
+
104
+ .new-manage{
105
+ float: right;
106
+ letter-spacing: 2px;
107
+ color: #ffffff;
108
+ font-size: 2.5rem;
109
+ height: 55%;
110
+ margin: 1% 2%;
111
+ padding: 10px 2%;
112
+ background-color: rgba(6, 84, 97, 0.22);
113
+ border: solid 1px rgba(105, 206, 210, 0.22);
114
+ }
115
+
116
+ /*正文内容样式*/
117
+ .safe-text {
118
+ position: absolute;
119
+ top: 10%;
120
+ width: 100%;
121
+ height: 92%;
122
+ background-color: rgba(1, 207, 242, 0.03);
123
+ }
124
+
125
+ /*分页面全局样式*/
126
+ .d3 {
127
+ position: relative;
128
+ width: 100%;
129
+ height: 100%;
130
+ /*background-color: #880000;*/
131
+ }
132
+
133
+ /*安全服务标题样式*/
134
+ .mfont {
135
+ margin-top: 2%;
136
+ float: left;
137
+ font-size: 3rem;
138
+ letter-spacing: 4px;
139
+ color: #ffffff;
140
+ }
141
+
142
+ /*主题字体样式*/
143
+ .safe-gradient-text {
144
+ width: 100%;
145
+ height: 100%;
146
+ font-size: 2.5rem;
147
+ font-family: HanYi;
148
+ }
149
+
150
+ /*主题字体颜色渐变样式*/
151
+ .safe-gradient-text-one {
152
+ background-image: -webkit-linear-gradient(bottom, #009ef1, #00f2fe, #00f7ff);
153
+ -webkit-background-clip: text;
154
+ -webkit-text-fill-color: transparent;
155
+ }
156
+
157
+ /*安全服务天数样式*/
158
+ .span-date {
159
+ color: #f7cb32;
160
+ }
161
+
162
+
163
+ //==========主页
164
+ /*小模块边框*/
165
+ .safe-border {
166
+ padding-top: 0.4%;
167
+ background: linear-gradient(#6fd9d0, #6fd9d0) left top,
168
+ linear-gradient(#6fd9d0, #6fd9d0) left top,
169
+ linear-gradient(#6fd9d0, #6fd9d0) right top,
170
+ linear-gradient(#6fd9d0, #6fd9d0) right top,
171
+ linear-gradient(#6fd9d0, #6fd9d0) left bottom,
172
+ linear-gradient(#6fd9d0, #6fd9d0) left bottom,
173
+ linear-gradient(#6fd9d0, #6fd9d0) right bottom,
174
+ linear-gradient(#6fd9d0, #6fd9d0) right bottom;
175
+ background-repeat: no-repeat;
176
+ background-size: 1.5px 11px, 11px 1.5px;
177
+ background-color: rgba(1, 207, 242, 0.05);
178
+ }
179
+
180
+ /*用户模块样式*/
181
+ .safe-user {
182
+ position: absolute;
183
+ float: left;
184
+ width: 33%;
185
+ height: 30%;
186
+ left: 2%;
187
+ }
188
+
189
+ /*陕西地图*/
190
+ .safe-shanximap {
191
+ position: absolute;
192
+ top:-5%;
193
+ left: 36%;
194
+ width: 28%;
195
+ height: 57%;
196
+ }
197
+
198
+ /*供销气量模块样式*/
199
+ .safe-gasvalue {
200
+ position: absolute;
201
+ left: 65%;
202
+ width: 33%;
203
+ height: 50%;
204
+ }
205
+
206
+ /*客服模块样式*/
207
+ .safe-callcenter {
208
+ position: absolute;
209
+ top: 32%;
210
+ width: 33%;
211
+ height: 25%;
212
+ left: 2%;
213
+ }
214
+
215
+ /*安检模块样式*/
216
+ .safe-safe {
217
+ position: absolute;
218
+ top: 59%;
219
+ width: 33%;
220
+ height: 35%;
221
+ left: 2%;
222
+ }
223
+
224
+ /*管网模块样式*/
225
+ .safe-network {
226
+ position: absolute;
227
+ top: 52%;
228
+ left: 65%;
229
+ width: 33%;
230
+ height: 42%;
231
+ }
232
+
233
+
234
+ /*监控模块样式*/
235
+ .safe-monitor {
236
+ position: absolute;
237
+ top: 59%;
238
+ height: 35%;
239
+ left: 36%;
240
+ width: 28%;
241
+ }
242
+ .label{
243
+ padding-top: 1%;
244
+ margin-left: 4%!important;
245
+ font-size: 1.5rem !important;
246
+ }
247
+
248
+ }
249
+
250
+
251
+
252
+
253
+ /*分辨率@1366*768*/
254
+ @media screen and (max-width: 1366px) {
255
+ /*经营管控全局页面样式*/
256
+ .home-div {
257
+ font-family: PingFangSC-Regular;
258
+ background-image: url('../../../../static/ManageHomePic/图层0.png');
259
+ background-repeat: no-repeat;
260
+ background-size: 100% 100%;
261
+ /*width: 2304px;*/
262
+ /*height: 775px;*/
263
+ width: 100%;
264
+ height: 100%;
265
+ position: relative;
266
+ overflow: hidden;
267
+ }
268
+
269
+ .safe-navigation{
270
+ position: absolute;
271
+ width: 100%;
272
+ height: 10%;
273
+ }
274
+ .safe-title-div{
275
+ margin-top: 1%;
276
+ margin-left: 3%;
277
+ padding-top: 1%;
278
+ float: left;
279
+ min-width: 13%;
280
+ max-height: 46px;
281
+ text-align: center;
282
+ background-image: url('../../../../static/ManageHomePic/图层519.png');
283
+ background-repeat: no-repeat;
284
+ background-size: 100% 100%;
285
+ }
286
+
287
+
288
+ /*菜单全局样式*/
289
+ .safe-navigation>.safe-menucol {
290
+ padding-left: 4%;
291
+ float: left;
292
+ width: 40%;
293
+ height: 100%;
294
+ }
295
+
296
+ /*菜单列样式*/
297
+ .safe-navigation>.safe-menucol>.safe-colname {
298
+ width: 100%;
299
+ height: 90%;
300
+ font-family: HanYi;
301
+ padding-top: 2%;
302
+ color: #00f7ff;
303
+ float: left;
304
+ }
305
+
306
+ /*单个菜单样式*/
307
+ .safe-navigation>.safe-menucol>.safe-colname div {
308
+ text-align: center;
309
+ padding-top: 3%;
310
+ width: 14%;
311
+ float: left;
312
+ height: 80%;
313
+ max-height: 50px;
314
+ letter-spacing: 0px;
315
+ font-family: HanYi;
316
+ }
317
+
318
+ .filiale{
319
+ font-family: PingFangSC-Regular;
320
+ float: right;
321
+ padding-top: 2%;
322
+ width: 11%;
323
+ font-size: 1.8rem;
324
+ color: white;
325
+ font-weight: bolder;
326
+ }
327
+ .filiale img{
328
+ margin-right: 5%;
329
+ width: 9%;
330
+ }
331
+ /*鼠标移入时菜单样式*/
332
+ .safe-navigation>.safe-menucol>.safe-colname div:hover {
333
+ font-size: 1.8rem;
334
+ background-image: url('../../../../static/ManageHomePic/椭圆2.png');
335
+ background-repeat: no-repeat;
336
+ background-position: bottom;
337
+ background-size: 100% 6%;
338
+ }
339
+
340
+ /*未选中菜单的字体大小*/
341
+ .safe-navigation>.safe-menucol>.safe-colname .noclick {
342
+ font-size: 1.6rem;
343
+ }
344
+
345
+ /*已选中菜单样式*/
346
+ .safe-navigation>.safe-menucol>.safe-colname .click {
347
+ font-size: 1.8rem;
348
+ background-image: url('../../../../static/ManageHomePic/椭圆2.png');
349
+ background-repeat: no-repeat;
350
+ background-position: bottom;
351
+ background-size: 100% 6%;
352
+ }
353
+
354
+ .new-manage{
355
+ float: right;
356
+ letter-spacing: 2px;
357
+ color: #ffffff;
358
+ font-size: 1.6rem;
359
+ height: 55%;
360
+ margin: 1% 2%;
361
+ padding: 5px 2%;
362
+ background-color: rgba(6, 84, 97, 0.22);
363
+ border: solid 1px rgba(105, 206, 210, 0.22);
364
+ }
365
+
366
+ /*正文内容样式*/
367
+ .safe-text {
368
+ position: absolute;
369
+ top: 10%;
370
+ width: 100%;
371
+ height: 92%;
372
+ background-color: rgba(1, 207, 242, 0.03);
373
+ }
374
+
375
+ /*分页面全局样式*/
376
+ .d3 {
377
+ position: relative;
378
+ width: 100%;
379
+ height: 100%;
380
+ /*background-color: #880000;*/
381
+ }
382
+
383
+ /*安全服务标题样式*/
384
+ .mfont {
385
+ margin-top: 2%;
386
+ float: left;
387
+ font-size: 2rem;
388
+ letter-spacing: 4px;
389
+ color: #ffffff;
390
+ }
391
+
392
+ /*主题字体样式*/
393
+ .safe-gradient-text {
394
+ width: 100%;
395
+ height: 100%;
396
+ font-size: 1.9rem;
397
+ font-family: HanYi;
398
+ }
399
+
400
+ /*主题字体颜色渐变样式*/
401
+ .safe-gradient-text-one {
402
+ background-image: -webkit-linear-gradient(bottom, #009ef1, #00f2fe, #00f7ff);
403
+ -webkit-background-clip: text;
404
+ -webkit-text-fill-color: transparent;
405
+ }
406
+
407
+ /*安全服务天数样式*/
408
+ .span-date {
409
+ color: #f7cb32;
410
+ }
411
+
412
+
413
+ //==========主页
414
+ /*小模块边框*/
415
+ .safe-border {
416
+ padding-top: 0.4%;
417
+ background: linear-gradient(#6fd9d0, #6fd9d0) left top,
418
+ linear-gradient(#6fd9d0, #6fd9d0) left top,
419
+ linear-gradient(#6fd9d0, #6fd9d0) right top,
420
+ linear-gradient(#6fd9d0, #6fd9d0) right top,
421
+ linear-gradient(#6fd9d0, #6fd9d0) left bottom,
422
+ linear-gradient(#6fd9d0, #6fd9d0) left bottom,
423
+ linear-gradient(#6fd9d0, #6fd9d0) right bottom,
424
+ linear-gradient(#6fd9d0, #6fd9d0) right bottom;
425
+ background-repeat: no-repeat;
426
+ background-size: 1.5px 11px, 11px 1.5px;
427
+ background-color: rgba(1, 207, 242, 0.05);
428
+ }
429
+
430
+ /*用户模块样式*/
431
+ .safe-user {
432
+ position: absolute;
433
+ float: left;
434
+ width: 33%;
435
+ height: 30%;
436
+ left: 2%;
437
+ }
438
+
439
+ /*陕西地图*/
440
+ .safe-shanximap {
441
+ position: absolute;
442
+ top:-5%;
443
+ left: 36%;
444
+ width: 28%;
445
+ height: 57%;
446
+ }
447
+
448
+ /*供销气量模块样式*/
449
+ .safe-gasvalue {
450
+ position: absolute;
451
+ left: 65%;
452
+ width: 33%;
453
+ height: 50%;
454
+ }
455
+
456
+ /*客服模块样式*/
457
+ .safe-callcenter {
458
+ position: absolute;
459
+ top: 32%;
460
+ width: 33%;
461
+ height: 25%;
462
+ left: 2%;
463
+ }
464
+
465
+ /*安检模块样式*/
466
+ .safe-safe {
467
+ position: absolute;
468
+ top: 59%;
469
+ width: 33%;
470
+ height: 35%;
471
+ left: 2%;
472
+ }
473
+
474
+ /*管网模块样式*/
475
+ .safe-network {
476
+ position: absolute;
477
+ top: 52%;
478
+ left: 65%;
479
+ width: 33%;
480
+ height: 42%;
481
+ }
482
+
483
+
484
+ /*监控模块样式*/
485
+ .safe-monitor {
486
+ position: absolute;
487
+ top: 59%;
488
+ height: 35%;
489
+ left: 36%;
490
+ width: 28%;
491
+ }
492
+ .label{
493
+ padding-top: 1%;
494
+ margin-left: 4%!important;
495
+ font-size: 1rem !important;
496
+ }
497
+
498
+ }
@@ -0,0 +1,66 @@
1
+ .media {
2
+ // Proper spacing between instances of .media
3
+ margin-top: 15px;
4
+
5
+ &:first-child {
6
+ margin-top: 0;
7
+ }
8
+ }
9
+
10
+ .media,
11
+ .media-body {
12
+ zoom: 1;
13
+ overflow: hidden;
14
+ }
15
+
16
+ .media-body {
17
+ width: 10000px;
18
+ }
19
+
20
+ .media-object {
21
+ display: block;
22
+
23
+ // Fix collapse in webkit from max-width: 100% and display: table-cell.
24
+ &.img-thumbnail {
25
+ max-width: none;
26
+ }
27
+ }
28
+
29
+ .media-right,
30
+ .media > .pull-right {
31
+ padding-left: 10px;
32
+ }
33
+
34
+ .media-left,
35
+ .media > .pull-left {
36
+ padding-right: 10px;
37
+ }
38
+
39
+ .media-left,
40
+ .media-right,
41
+ .media-body {
42
+ display: table-cell;
43
+ vertical-align: top;
44
+ }
45
+
46
+ .media-middle {
47
+ vertical-align: middle;
48
+ }
49
+
50
+ .media-bottom {
51
+ vertical-align: bottom;
52
+ }
53
+
54
+ // Reset margins on headings for tighter default spacing
55
+ .media-heading {
56
+ margin-top: 0;
57
+ margin-bottom: 5px;
58
+ }
59
+
60
+ // Media list variation
61
+ //
62
+ // Undo default ul/ol styles
63
+ .media-list {
64
+ padding-left: 0;
65
+ list-style: none;
66
+ }
@@ -0,0 +1,14 @@
1
+ // Alerts
2
+
3
+ .alert-variant(@background; @border; @text-color) {
4
+ background-color: @background;
5
+ border-color: @border;
6
+ color: @text-color;
7
+
8
+ hr {
9
+ border-top-color: darken(@border, 5%);
10
+ }
11
+ .alert-link {
12
+ color: darken(@text-color, 10%);
13
+ }
14
+ }
@@ -0,0 +1,9 @@
1
+ // Contextual backgrounds
2
+
3
+ .bg-variant(@color) {
4
+ background-color: @color;
5
+ a&:hover,
6
+ a&:focus {
7
+ background-color: darken(@color, 10%);
8
+ }
9
+ }
@@ -0,0 +1,18 @@
1
+ // Single side border-radius
2
+
3
+ .border-top-radius(@radius) {
4
+ border-top-right-radius: @radius;
5
+ border-top-left-radius: @radius;
6
+ }
7
+ .border-right-radius(@radius) {
8
+ border-bottom-right-radius: @radius;
9
+ border-top-right-radius: @radius;
10
+ }
11
+ .border-bottom-radius(@radius) {
12
+ border-bottom-right-radius: @radius;
13
+ border-bottom-left-radius: @radius;
14
+ }
15
+ .border-left-radius(@radius) {
16
+ border-bottom-left-radius: @radius;
17
+ border-top-left-radius: @radius;
18
+ }
@@ -0,0 +1,69 @@
1
+ // Button variants
2
+ //
3
+ // Easily pump out default styles, as well as :hover, :focus, :active,
4
+ // and disabled options for all buttons
5
+
6
+ .button-variant(@color; @background; @border) {
7
+ color: @color;
8
+ background-color: @background;
9
+ border-color: @border;
10
+
11
+ &:focus,
12
+ &.focus {
13
+ color: @color;
14
+ background-color: darken(@background, 10%);
15
+ border-color: darken(@border, 25%);
16
+ }
17
+ &:hover {
18
+ color: @color;
19
+ background-color: darken(@background, 10%);
20
+ border-color: darken(@border, 12%);
21
+ }
22
+ &:active,
23
+ &.active,
24
+ .open > .dropdown-toggle& {
25
+ color: @color;
26
+ background-color: darken(@background, 10%);
27
+ border-color: darken(@border, 12%);
28
+
29
+ &:hover,
30
+ &:focus,
31
+ &.focus {
32
+ color: @color;
33
+ background-color: darken(@background, 17%);
34
+ border-color: darken(@border, 25%);
35
+ }
36
+ }
37
+ &:active,
38
+ &.active,
39
+ .open > .dropdown-toggle& {
40
+ background-image: none;
41
+ }
42
+ &.disabled,
43
+ &[disabled],
44
+ fieldset[disabled] & {
45
+ &,
46
+ &:hover,
47
+ &:focus,
48
+ &.focus,
49
+ &:active,
50
+ &.active {
51
+ background-color: @background;
52
+ border-color: @border;
53
+ }
54
+ }
55
+
56
+ .badge {
57
+ color: @background;
58
+ background-color: @color;
59
+ }
60
+ }
61
+ // button-size第六个参数原本没有自己添加
62
+ // Button sizes
63
+ .button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius; @margin-bottom) {
64
+ padding: @padding-vertical @padding-horizontal;
65
+ font-size: @font-size;
66
+ line-height: @line-height;
67
+ border-radius: @border-radius;
68
+ // margin-bottom: @margin-bottom;
69
+ }
@@ -0,0 +1,7 @@
1
+ // Center-align a block level element
2
+
3
+ .center-block() {
4
+ display: block;
5
+ margin-left: auto;
6
+ margin-right: auto;
7
+ }
@@ -0,0 +1,22 @@
1
+ // Clearfix
2
+ //
3
+ // For modern browsers
4
+ // 1. The space content is one way to avoid an Opera bug when the
5
+ // contenteditable attribute is included anywhere else in the document.
6
+ // Otherwise it causes space to appear at the top and bottom of elements
7
+ // that are clearfixed.
8
+ // 2. The use of `table` rather than `block` is only necessary if using
9
+ // `:before` to contain the top-margins of child elements.
10
+ //
11
+ // Source: http://nicolasgallagher.com/micro-clearfix-hack/
12
+
13
+ .clearfix() {
14
+ &:before,
15
+ &:after {
16
+ content: " "; // 1
17
+ display: table; // 2
18
+ }
19
+ &:after {
20
+ clear: both;
21
+ }
22
+ }