manage-client 3.2.147 → 3.2.149
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.
- package/build/dev-server.js +176 -176
- package/build/webpack.base.conf.js +1 -1
- package/package.json +2 -1
- package/src/components/sale/businessquery/ChangeMeterQuery.vue +10 -0
- package/src/filiale/qianneng/ChargeQuery.vue +1 -1
- package/src/filiale/wuhai/ChargeQuery.vue +3 -3
- package/src/filiale/zhongyi/CallReport/CallReportMainPage.vue +1 -1
- package/src/filiale/zhongyi/CallReport/IncomingTelegram.vue +35 -17
- package/src/filiale/zhongyi/CallReport/PercentageComplete.vue +71 -40
- package/src/filiale/zhongyi/CallReport/PercentageCompleteEchart.vue +6 -6
- package/src/filiale/zhongyi/CallReport/RateBottom.vue +8 -8
- package/src/filiale/zhongyi/CallReport/RateTop.vue +8 -8
- package/src/filiale/zhongyi/CallReport/ScrollContent.vue +14 -14
- package/src/filiale/zhongyi/CallReport/ServiceStatus.vue +49 -49
- package/src/filiale/zhongyi/CallReport/SwiperTools.vue +161 -0
- package/src/filiale/zhongyi/CallReport/SwiperTools2.vue +143 -0
- package/src/filiale/zhongyi/CallReport/Time.vue +65 -26
- package/src/filiale/zhongyi/CallReport/Userinfo.vue +73 -143
- package/src/filiale/zhongyi/CallReport/WeatherData.vue +11 -8
- package/src/filiale/zhongyi/CallReport/WorkOrderPage.vue +12 -12
- package/static/fonts/font.css +6 -0
- package/static/fonts//351/230/277/351/207/214/346/261/211/344/273/252/346/231/272/350/203/275/351/273/221/344/275/223.TTF +0 -0
- package/static/images/zhongyi/Pigeon.png +0 -0
- package/static/images/zhongyi/blueArrows.png +0 -0
- package/static/images/zhongyi/exclamationPoint.png +0 -0
- package/static/images/zhongyi/refresh.png +0 -0
- package/static/images/zhongyi/yellowArrows.png +0 -0
|
@@ -6,12 +6,13 @@
|
|
|
6
6
|
<div class="beingProcessed"><i></i><span>处理中</span><span class="beingProcessedNum">{{ data.beingProcessedNum }}</span></div>
|
|
7
7
|
<div class="completed"><i></i><span>已完成</span><span class="completedNum">{{ data.completedNum }}</span></div>
|
|
8
8
|
<div class="completedEcharts"></div>
|
|
9
|
+
<div class="percentText">完成率</div>
|
|
9
10
|
</div>
|
|
10
11
|
<div class="data">
|
|
11
12
|
<ul>
|
|
12
|
-
<li><span>昨日工单</span><span class="day">{{ data.day }}</span><span>日环比</span><
|
|
13
|
-
<li><span>月度工单量</span><span class="month">{{ data.month }}</span><span>月环比</span><
|
|
14
|
-
<li><span>年度工单量</span><span class="year">{{ data.year }}</span><span>同比</span><
|
|
13
|
+
<li><span>昨日工单</span><span class="day">{{ data.day }}</span><span>日环比</span><div :class="data.daysFrom[0]==='1'?'blueArrows':'yellowArrows'"></div><span :class="data.daysFrom[0]==='1'?'increase':'lower'">{{ data.daysFrom[1] }}</span></li>
|
|
14
|
+
<li><span>月度工单量</span><span class="month">{{ data.month }}</span><span>月环比</span><div :class="data.onAMonthlyBasis[0]==='1'?'blueArrows':'yellowArrows'"></div><span :class="data.onAMonthlyBasis[0]==='1'?'increase':'lower'">{{ data.onAMonthlyBasis[1] }}</span></li>
|
|
15
|
+
<li><span>年度工单量</span><span class="year">{{ data.year }}</span><span>同比</span><div :class="data.yoy[0]==='1'?'blueArrows':'yellowArrows'"></div><span :class="data.yoy[0]==='1'?'increase':'lower'">{{ data.yoy[1] }}</span></li>
|
|
15
16
|
</ul>
|
|
16
17
|
</div>
|
|
17
18
|
</div>
|
|
@@ -37,12 +38,13 @@ export default {
|
|
|
37
38
|
month:'5149',
|
|
38
39
|
//年度工单量
|
|
39
40
|
year:'145784',
|
|
41
|
+
//日环比、月环比、同比第一个参数,0为降,1为增长
|
|
40
42
|
//日环比
|
|
41
|
-
daysFrom:'44.18%',
|
|
43
|
+
daysFrom:['0','44.18%'],
|
|
42
44
|
//月环比
|
|
43
|
-
onAMonthlyBasis:'71.12%',
|
|
45
|
+
onAMonthlyBasis:['1','71.12%'],
|
|
44
46
|
//同比
|
|
45
|
-
yoy:'95.07%',
|
|
47
|
+
yoy:['1','95.07%'],
|
|
46
48
|
|
|
47
49
|
|
|
48
50
|
}
|
|
@@ -79,21 +81,22 @@ export default {
|
|
|
79
81
|
position: absolute;
|
|
80
82
|
top: 4.63vh;
|
|
81
83
|
left: 0.573vw;
|
|
82
|
-
border:
|
|
84
|
+
border: 0.093vh dashed #fff;
|
|
83
85
|
}
|
|
84
86
|
|
|
85
87
|
.pending i {
|
|
86
|
-
width:
|
|
88
|
+
width: 93%;
|
|
87
89
|
height: 100%;
|
|
88
90
|
background-repeat: no-repeat;
|
|
89
|
-
background-position:
|
|
91
|
+
background-position: 0 -0.365vw;
|
|
90
92
|
background-size: cover;
|
|
91
93
|
position: absolute;
|
|
92
94
|
background-image: url("../../../../static/images/zhongyi/exclamationPoint.png");
|
|
95
|
+
margin-left: 0.15625vw;
|
|
93
96
|
}
|
|
94
97
|
|
|
95
98
|
.pending span:nth-of-type(1) {
|
|
96
|
-
font-size:
|
|
99
|
+
font-size: 2.037vh;
|
|
97
100
|
color: #FFFFFF;
|
|
98
101
|
position: absolute;
|
|
99
102
|
bottom: 9.259vh;
|
|
@@ -101,7 +104,7 @@ export default {
|
|
|
101
104
|
}
|
|
102
105
|
|
|
103
106
|
.pending span:nth-of-type(2) {
|
|
104
|
-
font-size:
|
|
107
|
+
font-size: 2.963vh;
|
|
105
108
|
font-weight: bold;
|
|
106
109
|
color: #FF7E00;
|
|
107
110
|
position: absolute;
|
|
@@ -115,21 +118,22 @@ export default {
|
|
|
115
118
|
position: absolute;
|
|
116
119
|
top: 4.63vh;
|
|
117
120
|
left: 5.417vw;
|
|
118
|
-
border:
|
|
121
|
+
border: 0.093vh dashed #fff;
|
|
119
122
|
}
|
|
120
123
|
|
|
121
124
|
.beingProcessed i {
|
|
122
|
-
width:
|
|
125
|
+
width: 93%;
|
|
123
126
|
height: 100%;
|
|
124
127
|
background-repeat: no-repeat;
|
|
125
|
-
background-position:
|
|
128
|
+
background-position: 0 -0.365vw;
|
|
126
129
|
background-size: cover;
|
|
127
130
|
position: absolute;
|
|
128
131
|
background-image: url("../../../../static/images/zhongyi/refresh.png");
|
|
132
|
+
margin-left: 0.15625vw;
|
|
129
133
|
}
|
|
130
134
|
|
|
131
135
|
.beingProcessed span:nth-of-type(1) {
|
|
132
|
-
font-size:
|
|
136
|
+
font-size: 2.037vh;
|
|
133
137
|
color: #FFFFFF;
|
|
134
138
|
position: absolute;
|
|
135
139
|
bottom: 9.259vh;
|
|
@@ -137,7 +141,7 @@ export default {
|
|
|
137
141
|
}
|
|
138
142
|
|
|
139
143
|
.beingProcessed span:nth-of-type(2) {
|
|
140
|
-
font-size:
|
|
144
|
+
font-size: 2.963vh;
|
|
141
145
|
font-weight: bold;
|
|
142
146
|
color: #FFCC0F;
|
|
143
147
|
position: absolute;
|
|
@@ -151,21 +155,22 @@ export default {
|
|
|
151
155
|
position: absolute;
|
|
152
156
|
top: 4.63vh;
|
|
153
157
|
left: 10.208vw;
|
|
154
|
-
border:
|
|
158
|
+
border: 0.093vh dashed #fff;
|
|
155
159
|
}
|
|
156
160
|
|
|
157
161
|
.completed i {
|
|
158
|
-
width:
|
|
162
|
+
width: 93%;
|
|
159
163
|
height: 100%;
|
|
160
164
|
background-repeat: no-repeat;
|
|
161
|
-
background-position:
|
|
165
|
+
background-position: 0 -0.365vw;
|
|
162
166
|
background-size: cover;
|
|
163
167
|
position: absolute;
|
|
164
168
|
background-image: url("../../../../static/images/zhongyi/Pigeon.png");
|
|
169
|
+
margin-left: 0.15625vw;
|
|
165
170
|
}
|
|
166
171
|
|
|
167
172
|
.completed span:nth-of-type(1) {
|
|
168
|
-
font-size:
|
|
173
|
+
font-size: 2.037vh;
|
|
169
174
|
color: #FFFFFF;
|
|
170
175
|
position: absolute;
|
|
171
176
|
bottom: 9.259vh;
|
|
@@ -173,7 +178,7 @@ export default {
|
|
|
173
178
|
}
|
|
174
179
|
|
|
175
180
|
.completed span:nth-of-type(2) {
|
|
176
|
-
font-size:
|
|
181
|
+
font-size: 2.963vh;
|
|
177
182
|
font-weight: bold;
|
|
178
183
|
color: #01F7E6;
|
|
179
184
|
position: absolute;
|
|
@@ -212,7 +217,7 @@ export default {
|
|
|
212
217
|
background-repeat: no-repeat;
|
|
213
218
|
background-size: cover;
|
|
214
219
|
bottom: 16.389vh;
|
|
215
|
-
border:
|
|
220
|
+
border: 0.093vh dashed #fff;
|
|
216
221
|
}
|
|
217
222
|
|
|
218
223
|
.data li:nth-of-type(2) {
|
|
@@ -222,7 +227,7 @@ export default {
|
|
|
222
227
|
background-repeat: no-repeat;
|
|
223
228
|
background-size: cover;
|
|
224
229
|
bottom: 9.259vh;
|
|
225
|
-
border:
|
|
230
|
+
border: 0.093vh dashed #fff;
|
|
226
231
|
}
|
|
227
232
|
|
|
228
233
|
.data li:nth-of-type(3) {
|
|
@@ -232,18 +237,18 @@ export default {
|
|
|
232
237
|
background-repeat: no-repeat;
|
|
233
238
|
background-size: cover;
|
|
234
239
|
bottom: 2.037vh;
|
|
235
|
-
border:
|
|
240
|
+
border: 0.093vh dashed #fff;
|
|
236
241
|
}
|
|
237
242
|
|
|
238
243
|
.data li span:nth-of-type(1) {
|
|
239
|
-
font-size:
|
|
244
|
+
font-size: 2.037vh;
|
|
240
245
|
color: #FFFFFF;
|
|
241
246
|
position: relative;
|
|
242
247
|
top: 0.833vh;
|
|
243
248
|
left: 0.625vw;
|
|
244
249
|
}
|
|
245
250
|
.data li span:nth-of-type(2) {
|
|
246
|
-
font-size:
|
|
251
|
+
font-size: 2.5vh;
|
|
247
252
|
position: absolute;
|
|
248
253
|
font-weight: bold;
|
|
249
254
|
top: 0.556vh;
|
|
@@ -258,34 +263,60 @@ export default {
|
|
|
258
263
|
.year{
|
|
259
264
|
color: #01F7E6;
|
|
260
265
|
}
|
|
266
|
+
/*.data li{*/
|
|
267
|
+
/* position: relative;*/
|
|
268
|
+
/*}*/
|
|
261
269
|
.data li span:nth-of-type(3) {
|
|
262
|
-
font-size:
|
|
270
|
+
font-size: 2.037vh;
|
|
263
271
|
color: #FFFFFF;
|
|
264
272
|
position: absolute;
|
|
265
273
|
top: 0.833vh;
|
|
266
274
|
right: 7.292vw;
|
|
267
275
|
}
|
|
268
276
|
.data li span:nth-of-type(4) {
|
|
269
|
-
font-size:
|
|
270
|
-
|
|
277
|
+
font-size: 2.037vh;
|
|
271
278
|
position: absolute;
|
|
272
279
|
font-weight: bold;
|
|
273
280
|
top: 0.833vh;
|
|
274
281
|
right: 0.833vw;
|
|
275
282
|
}
|
|
276
|
-
|
|
283
|
+
|
|
284
|
+
.increase{
|
|
285
|
+
color: #01F7E6;
|
|
286
|
+
}
|
|
287
|
+
.lower{
|
|
277
288
|
color: #FF7E00;
|
|
278
289
|
}
|
|
279
|
-
.
|
|
280
|
-
|
|
290
|
+
.view{
|
|
291
|
+
position: relative;
|
|
292
|
+
}
|
|
293
|
+
.percentText{
|
|
294
|
+
width: 3.4375vw;
|
|
295
|
+
height: 2.037vh;
|
|
296
|
+
font-size: 2.037vh;
|
|
297
|
+
font-weight: bold;
|
|
298
|
+
color: #FFFFFF;
|
|
299
|
+
position: absolute;
|
|
300
|
+
top: 12vh;
|
|
301
|
+
right: 2.917vw;
|
|
302
|
+
}
|
|
303
|
+
.blueArrows{
|
|
304
|
+
width: 1.146vw;
|
|
305
|
+
height: 2.037vh;
|
|
306
|
+
background: url('../../../../static/images/zhongyi/blueArrows.png') no-repeat;
|
|
307
|
+
background-size: cover;
|
|
308
|
+
position: absolute;
|
|
309
|
+
right: 5.365vw;
|
|
310
|
+
top: 1.389vh;
|
|
311
|
+
}
|
|
312
|
+
.yellowArrows{
|
|
313
|
+
width: 1.146vw;
|
|
314
|
+
height: 2.037vh;
|
|
315
|
+
background: url('../../../../static/images/zhongyi/yellowArrows.png') no-repeat;
|
|
316
|
+
background-size: cover;
|
|
317
|
+
position: absolute;
|
|
318
|
+
right: 5.365vw;
|
|
319
|
+
top: 1.389vh;
|
|
281
320
|
}
|
|
282
|
-
/*.data ul li i{*/
|
|
283
|
-
/* width: 22px;*/
|
|
284
|
-
/* height: 22px;*/
|
|
285
|
-
/* background-image: url('./images/zhongyi/箭头\ 19\ 1.png');*/
|
|
286
|
-
/* background-repeat: no-repeat;*/
|
|
287
|
-
/* background-size: cover;*/
|
|
288
|
-
/* position: absolute;*/
|
|
289
|
-
/*}*/
|
|
290
321
|
/* 完成率组件样式结束 */
|
|
291
322
|
</style>
|
|
@@ -31,10 +31,10 @@ export default {
|
|
|
31
31
|
title: {
|
|
32
32
|
text: `${value}%`,
|
|
33
33
|
x: 'center',
|
|
34
|
-
y: '
|
|
34
|
+
y: '38%',
|
|
35
35
|
textStyle: {
|
|
36
36
|
color: '#00F6FF',
|
|
37
|
-
fontSize:
|
|
37
|
+
fontSize:36
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
40
|
series: [ {
|
|
@@ -131,10 +131,10 @@ export default {
|
|
|
131
131
|
|
|
132
132
|
<style scoped>
|
|
133
133
|
#echart{
|
|
134
|
-
margin-left:
|
|
135
|
-
margin-top:
|
|
136
|
-
width:
|
|
137
|
-
height:
|
|
134
|
+
margin-left: 14.0625vw;
|
|
135
|
+
margin-top: 12.963vh;
|
|
136
|
+
width: 13.021vw;
|
|
137
|
+
height: 23.148vh;
|
|
138
138
|
}
|
|
139
139
|
canvas{}
|
|
140
140
|
</style>
|
|
@@ -34,7 +34,7 @@ export default {
|
|
|
34
34
|
text: '{num|' + data.value + '%}',
|
|
35
35
|
subtext: '\n' + data.name,
|
|
36
36
|
x: '49%',
|
|
37
|
-
y: '
|
|
37
|
+
y: '40%',
|
|
38
38
|
textAlign: 'center',
|
|
39
39
|
textStyle: {
|
|
40
40
|
rich: {
|
|
@@ -42,7 +42,7 @@ export default {
|
|
|
42
42
|
fontWeight: '500',
|
|
43
43
|
color: '#fff',
|
|
44
44
|
fontFamily: '微软雅黑',
|
|
45
|
-
fontSize:
|
|
45
|
+
fontSize: 40,
|
|
46
46
|
},
|
|
47
47
|
}
|
|
48
48
|
|
|
@@ -73,10 +73,10 @@ export default {
|
|
|
73
73
|
y2: 0,
|
|
74
74
|
colorStops: [{
|
|
75
75
|
offset: 0,
|
|
76
|
-
color: 'rgba(54, 255, 239,
|
|
76
|
+
color: 'rgba(54, 255, 239, 1)' // 0% 处的颜色
|
|
77
77
|
}, {
|
|
78
78
|
offset: 1,
|
|
79
|
-
color: 'rgba(54, 255, 239, 1)' // 100% 处的颜色
|
|
79
|
+
color: 'rgba(54, 255, 239, .1)' // 100% 处的颜色
|
|
80
80
|
}]
|
|
81
81
|
}, 'transparent'],
|
|
82
82
|
hoverAnimation: true,
|
|
@@ -134,10 +134,10 @@ export default {
|
|
|
134
134
|
|
|
135
135
|
<style scoped>
|
|
136
136
|
#echart2{
|
|
137
|
-
width:
|
|
138
|
-
height:
|
|
137
|
+
width: 10.417vw;
|
|
138
|
+
height: 18.519vh;
|
|
139
139
|
position: absolute;
|
|
140
|
-
top:
|
|
141
|
-
right:
|
|
140
|
+
top: 42.13vh;
|
|
141
|
+
right: 1.40625vw;
|
|
142
142
|
}
|
|
143
143
|
</style>
|
|
@@ -34,7 +34,7 @@ export default {
|
|
|
34
34
|
text: '{num|' + data.value + '%}',
|
|
35
35
|
subtext: '\n' + data.name,
|
|
36
36
|
x: '49%',
|
|
37
|
-
y: '
|
|
37
|
+
y: '40%',
|
|
38
38
|
textAlign: 'center',
|
|
39
39
|
textStyle: {
|
|
40
40
|
rich: {
|
|
@@ -42,7 +42,7 @@ export default {
|
|
|
42
42
|
fontWeight: '500',
|
|
43
43
|
color: '#fff',
|
|
44
44
|
fontFamily: '微软雅黑',
|
|
45
|
-
fontSize:
|
|
45
|
+
fontSize: 40,
|
|
46
46
|
},
|
|
47
47
|
}
|
|
48
48
|
|
|
@@ -73,10 +73,10 @@ export default {
|
|
|
73
73
|
y2: 0,
|
|
74
74
|
colorStops: [{
|
|
75
75
|
offset: 0,
|
|
76
|
-
color: 'rgba(255, 205, 0,
|
|
76
|
+
color: 'rgba(255, 205, 0, 1)' // 0% 处的颜色
|
|
77
77
|
}, {
|
|
78
78
|
offset: 1,
|
|
79
|
-
color: 'rgba(255, 205, 0, 1)' // 100% 处的颜色
|
|
79
|
+
color: 'rgba(255, 205, 0, .1)' // 100% 处的颜色
|
|
80
80
|
}]
|
|
81
81
|
}, 'transparent'],
|
|
82
82
|
hoverAnimation: true,
|
|
@@ -134,11 +134,11 @@ export default {
|
|
|
134
134
|
|
|
135
135
|
<style scoped>
|
|
136
136
|
#echart1{
|
|
137
|
-
width:
|
|
138
|
-
height:
|
|
137
|
+
width: 10.417vw;
|
|
138
|
+
height: 18.519vh;
|
|
139
139
|
position: absolute;
|
|
140
|
-
top:
|
|
141
|
-
right:
|
|
140
|
+
top: 20.556vh;
|
|
141
|
+
right: 1.40625vw;
|
|
142
142
|
}
|
|
143
143
|
|
|
144
144
|
</style>
|
|
@@ -102,39 +102,39 @@ li{
|
|
|
102
102
|
}
|
|
103
103
|
span{
|
|
104
104
|
color: #ffffff;
|
|
105
|
-
font-size:
|
|
106
|
-
line-height:
|
|
105
|
+
font-size: 2.037vh;
|
|
106
|
+
line-height: 3.611vh;
|
|
107
107
|
}
|
|
108
108
|
.date{
|
|
109
|
-
margin-left:
|
|
109
|
+
margin-left: 2.083vw;
|
|
110
110
|
}
|
|
111
111
|
.duration{
|
|
112
|
-
margin-left:
|
|
112
|
+
margin-left: 5.99vw;
|
|
113
113
|
}
|
|
114
114
|
.name{
|
|
115
115
|
position: absolute;
|
|
116
|
-
left:
|
|
117
|
-
width:
|
|
116
|
+
left: 27.396vw;
|
|
117
|
+
width: 9.259vh;
|
|
118
118
|
}
|
|
119
119
|
.orderType{
|
|
120
120
|
position: absolute;
|
|
121
|
-
left:
|
|
122
|
-
width:
|
|
121
|
+
left: 35.677vw;
|
|
122
|
+
width: 3.125vw;
|
|
123
123
|
}
|
|
124
124
|
.address{
|
|
125
125
|
position: absolute;
|
|
126
|
-
left:
|
|
127
|
-
width:
|
|
126
|
+
left: 43.021vw;
|
|
127
|
+
width: 26.042vw;
|
|
128
128
|
}
|
|
129
129
|
.receptionist{
|
|
130
130
|
position: absolute;
|
|
131
|
-
left:
|
|
132
|
-
width:
|
|
131
|
+
left: 56.771vw;
|
|
132
|
+
width: 4.6875vw;
|
|
133
133
|
}
|
|
134
134
|
.state{
|
|
135
135
|
position: absolute;
|
|
136
|
-
left:
|
|
137
|
-
width:
|
|
136
|
+
left: 64.6875vw;
|
|
137
|
+
width: 5.208vw;
|
|
138
138
|
color: #F7DB35;
|
|
139
139
|
}
|
|
140
140
|
|
|
@@ -184,24 +184,24 @@ export default {
|
|
|
184
184
|
}
|
|
185
185
|
|
|
186
186
|
.service1 {
|
|
187
|
-
width:
|
|
188
|
-
height:
|
|
187
|
+
width: 3.49vw;
|
|
188
|
+
height: 8.148vh;
|
|
189
189
|
background-image: url("../../../../static/images/zhongyi/service1.png");
|
|
190
190
|
background-repeat: no-repeat;
|
|
191
|
-
background-position:
|
|
192
|
-
background-size:
|
|
191
|
+
background-position: 0 0;
|
|
192
|
+
background-size: contain;
|
|
193
193
|
position: absolute;
|
|
194
|
-
left:
|
|
194
|
+
left: 0.78125vw;
|
|
195
195
|
}
|
|
196
196
|
.service2 {
|
|
197
|
-
width:
|
|
198
|
-
height:
|
|
197
|
+
width: 3.49vw;
|
|
198
|
+
height: 8.148vh;
|
|
199
199
|
background-image: url("../../../../static/images/zhongyi/service2.png");
|
|
200
200
|
background-repeat: no-repeat;
|
|
201
|
-
background-position:
|
|
202
|
-
background-size:
|
|
201
|
+
background-position: 0 0;
|
|
202
|
+
background-size: contain;
|
|
203
203
|
position: absolute;
|
|
204
|
-
left:
|
|
204
|
+
left: 0.78125vw;
|
|
205
205
|
}
|
|
206
206
|
|
|
207
207
|
|
|
@@ -212,55 +212,55 @@ export default {
|
|
|
212
212
|
.status1 {
|
|
213
213
|
width: 1.875vw;
|
|
214
214
|
background-image: url("../../../../static/images/zhongyi/ring.png");
|
|
215
|
-
height:
|
|
215
|
+
height: 4.333vh;
|
|
216
216
|
background-repeat: no-repeat;
|
|
217
|
-
background-position:
|
|
218
|
-
background-size:
|
|
217
|
+
background-position: 0 0;
|
|
218
|
+
background-size: contain;
|
|
219
219
|
position: absolute;
|
|
220
|
-
right:
|
|
221
|
-
bottom:
|
|
220
|
+
right: 0.052vw;
|
|
221
|
+
bottom: 0.185vh;
|
|
222
222
|
}
|
|
223
223
|
|
|
224
224
|
.status2 {
|
|
225
225
|
width: 1.875vw;
|
|
226
226
|
background-image: url("../../../../static/images/zhongyi/phone1.png");
|
|
227
|
-
height:
|
|
227
|
+
height: 4.333vh;
|
|
228
228
|
background-repeat: no-repeat;
|
|
229
|
-
background-position:
|
|
230
|
-
background-size:
|
|
229
|
+
background-position: 0 0;
|
|
230
|
+
background-size: contain;
|
|
231
231
|
position: absolute;
|
|
232
|
-
right:
|
|
233
|
-
bottom:
|
|
232
|
+
right: 0.052vw;
|
|
233
|
+
bottom: 0.104vw;
|
|
234
234
|
}
|
|
235
235
|
|
|
236
236
|
.status3 {
|
|
237
237
|
width: 2.34375vw;
|
|
238
238
|
background-image: url("../../../../static/images/zhongyi/telephone1.png");
|
|
239
|
-
height:
|
|
239
|
+
height: 4.333vh;
|
|
240
240
|
background-repeat: no-repeat;
|
|
241
|
-
background-position:
|
|
242
|
-
background-size:
|
|
241
|
+
background-position: 0 0;
|
|
242
|
+
background-size: contain;
|
|
243
243
|
position: absolute;
|
|
244
|
-
right:
|
|
245
|
-
bottom:
|
|
244
|
+
right: 0.052vw;
|
|
245
|
+
bottom: 0.185vh;
|
|
246
246
|
}
|
|
247
247
|
|
|
248
248
|
.status4 {
|
|
249
249
|
width: 1.875vw;
|
|
250
250
|
background-image: url("../../../../static/images/zhongyi/phone2.png");
|
|
251
|
-
height:
|
|
251
|
+
height: 4.333vh;
|
|
252
252
|
background-repeat: no-repeat;
|
|
253
|
-
background-position:
|
|
254
|
-
background-size:
|
|
253
|
+
background-position: 0 0;
|
|
254
|
+
background-size: contain;
|
|
255
255
|
position: absolute;
|
|
256
|
-
right:
|
|
257
|
-
bottom:
|
|
256
|
+
right: 0.052vw;
|
|
257
|
+
bottom: 0.185vh;
|
|
258
258
|
}
|
|
259
259
|
|
|
260
260
|
.service-status div span {
|
|
261
261
|
width: 5.208vw;
|
|
262
262
|
height: 2.037vh;
|
|
263
|
-
font-size:
|
|
263
|
+
font-size: 2.037vh;
|
|
264
264
|
font-weight: bold;
|
|
265
265
|
color: #FFFEFE;
|
|
266
266
|
display: block;
|
|
@@ -283,11 +283,11 @@ export default {
|
|
|
283
283
|
|
|
284
284
|
.answer{
|
|
285
285
|
width: 1.875vw;
|
|
286
|
-
height:
|
|
286
|
+
height: 4.333vh;
|
|
287
287
|
background-image: url("../../../../static/images/zhongyi/phone1.png");
|
|
288
288
|
background-repeat: no-repeat;
|
|
289
|
-
background-position:
|
|
290
|
-
background-size:
|
|
289
|
+
background-position: 0 0;
|
|
290
|
+
background-size: contain;
|
|
291
291
|
position: absolute;
|
|
292
292
|
top: 1.389vh;
|
|
293
293
|
}
|
|
@@ -297,7 +297,7 @@ export default {
|
|
|
297
297
|
left: 3.125vw;
|
|
298
298
|
}
|
|
299
299
|
.answer-num{
|
|
300
|
-
font-size:
|
|
300
|
+
font-size: 2.593vh;
|
|
301
301
|
color: #00FFEA;
|
|
302
302
|
position: absolute;
|
|
303
303
|
top: 1.204vh;
|
|
@@ -306,11 +306,11 @@ export default {
|
|
|
306
306
|
|
|
307
307
|
.await{
|
|
308
308
|
width: 2.34375vw;
|
|
309
|
-
height:
|
|
309
|
+
height: 4.333vh;
|
|
310
310
|
background-image: url("../../../../static/images/zhongyi/telephone1.png");
|
|
311
311
|
background-repeat: no-repeat;
|
|
312
|
-
background-position:
|
|
313
|
-
background-size:
|
|
312
|
+
background-position: 0 0;
|
|
313
|
+
background-size: contain;
|
|
314
314
|
position: absolute;
|
|
315
315
|
top: 1.389vh;
|
|
316
316
|
left: 10.417vw;
|
|
@@ -321,7 +321,7 @@ export default {
|
|
|
321
321
|
left: 14.0625vw;
|
|
322
322
|
}
|
|
323
323
|
.await-num{
|
|
324
|
-
font-size:
|
|
324
|
+
font-size: 2.593vh;
|
|
325
325
|
color: #FFCD00;
|
|
326
326
|
position: absolute;
|
|
327
327
|
top: 1.204vh;
|
|
@@ -330,11 +330,11 @@ export default {
|
|
|
330
330
|
|
|
331
331
|
.ring{
|
|
332
332
|
width: 1.875vw;
|
|
333
|
-
height:
|
|
333
|
+
height: 4.333vh;
|
|
334
334
|
background-image: url("../../../../static/images/zhongyi/ring.png");
|
|
335
335
|
background-repeat: no-repeat;
|
|
336
|
-
background-position:
|
|
337
|
-
background-size:
|
|
336
|
+
background-position: 0 0;
|
|
337
|
+
background-size: contain;
|
|
338
338
|
position: absolute;
|
|
339
339
|
top: 1.389vh;
|
|
340
340
|
left: 22.396vw;
|
|
@@ -345,7 +345,7 @@ export default {
|
|
|
345
345
|
left: 25.78125vw;
|
|
346
346
|
}
|
|
347
347
|
.ring-num{
|
|
348
|
-
font-size:
|
|
348
|
+
font-size: 2.593vh;
|
|
349
349
|
color: #FF7E00;
|
|
350
350
|
position: absolute;
|
|
351
351
|
top: 1.204vh;
|
|
@@ -354,11 +354,11 @@ export default {
|
|
|
354
354
|
|
|
355
355
|
.off-line{
|
|
356
356
|
width: 1.875vw;
|
|
357
|
-
height:
|
|
357
|
+
height: 4.333vh;
|
|
358
358
|
background-image: url("../../../../static/images/zhongyi/phone2.png");
|
|
359
359
|
background-repeat: no-repeat;
|
|
360
|
-
background-position:
|
|
361
|
-
background-size:
|
|
360
|
+
background-position: 0 0;
|
|
361
|
+
background-size: contain;
|
|
362
362
|
position: absolute;
|
|
363
363
|
top: 1.389vh;
|
|
364
364
|
left: 32.03125vw;
|
|
@@ -369,7 +369,7 @@ export default {
|
|
|
369
369
|
left: 35.417vw;
|
|
370
370
|
}
|
|
371
371
|
.off-line-num{
|
|
372
|
-
font-size:
|
|
372
|
+
font-size: 2.593vh;
|
|
373
373
|
color: #DBDBDB;
|
|
374
374
|
position: absolute;
|
|
375
375
|
top: 1.204vh;
|
|
@@ -378,8 +378,8 @@ export default {
|
|
|
378
378
|
|
|
379
379
|
|
|
380
380
|
.status-count div span:nth-of-type(1) {
|
|
381
|
-
font-size:
|
|
381
|
+
font-size: 2.037vh;
|
|
382
382
|
color: #FFFFFF;
|
|
383
|
-
line-height:
|
|
383
|
+
line-height: 2.315vh;
|
|
384
384
|
}
|
|
385
385
|
</style>
|