manage-client 3.2.262 → 3.2.264

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 (39) hide show
  1. package/build/dev-server.js +180 -180
  2. package/package.json +1 -1
  3. package/src/components/SellReport/ManageBusSummary.vue +2 -0
  4. package/src/filiale/ningjin/CallReport/CallReportMainPage.vue +146 -0
  5. package/src/filiale/ningjin/CallReport/DropDownBox.vue +64 -0
  6. package/src/filiale/ningjin/CallReport/IncomingTelegram.vue +187 -0
  7. package/src/filiale/ningjin/CallReport/PercentageComplete.vue +413 -0
  8. package/src/filiale/ningjin/CallReport/PercentageCompleteEchart.vue +150 -0
  9. package/src/filiale/ningjin/CallReport/RateBottom.vue +143 -0
  10. package/src/filiale/ningjin/CallReport/RateTop.vue +144 -0
  11. package/src/filiale/ningjin/CallReport/ScrollContent.vue +143 -0
  12. package/src/filiale/ningjin/CallReport/ServiceStatus.vue +371 -0
  13. package/src/filiale/ningjin/CallReport/SwiperTools.vue +145 -0
  14. package/src/filiale/ningjin/CallReport/SwiperTools2.vue +176 -0
  15. package/src/filiale/ningjin/CallReport/Time.vue +100 -0
  16. package/src/filiale/ningjin/CallReport/Userinfo.vue +69 -0
  17. package/src/filiale/ningjin/CallReport/WeatherData.vue +108 -0
  18. package/src/filiale/ningjin/CallReport/WorkOrderPage.vue +260 -0
  19. package/src/filiale/ningjin/FillCardQuery.vue +581 -0
  20. package/src/filiale/ningjin/GasStatistics.vue +39 -20
  21. package/src/filiale/ningjin/LostContactAnalysisList.vue +676 -0
  22. package/src/filiale/ningjin/ManageBusSummaryPeng.vue +241 -0
  23. package/src/filiale/ningjin/ManageHandSellMoney.vue +247 -0
  24. package/src/filiale/ningjin/ManageSellType.vue +284 -0
  25. package/src/filiale/ningjin/MeterExceptionList.vue +54 -9
  26. package/src/filiale/ningjin/UserLostContactAnalysis.vue +592 -0
  27. package/src/filiale/ningjin/config/exportConfig.js +35 -34
  28. package/src/filiale/ningjin/reportManage.js +6 -1
  29. package/src/filiale/ningjin/sale.js +26 -0
  30. package/src/filiale/ningjin/webmeterManage.js +5 -1
  31. package/src/filiale/wenxi/ChargeQuery.vue +26 -112
  32. package/src/filiale/wenxi/FmyGasDeviceQuery.vue +144 -17
  33. package/src/filiale/wenxi/GasDeviceQuery.vue +975 -0
  34. package/src/filiale/wenxi/RecordInfoQuery.vue +1 -1
  35. package/src/filiale/wenxi/sale.js +2 -0
  36. package/src/filiale/yuansheng/DayReportList.vue +15 -1
  37. package/node_modules.zip +0 -0
  38. package/static/newStyle/new_stretch_bottom.png +0 -0
  39. package/static/newStyle/new_stretch_top.png +0 -0
@@ -0,0 +1,187 @@
1
+ <template>
2
+ <!-- 来电模块 -->
3
+ <div class="incoming-telegram">
4
+ <p><i></i><span>来电数量统计</span></p>
5
+ <i></i><i></i>
6
+ <div class="incoming-telegram-div">
7
+ <span>{{ data.netAppointment}}</span><br>
8
+ <span>日统计来电数量</span>
9
+ </div>
10
+ <div class="incoming-telegram-div">
11
+ <span>{{ data.hotLine }}</span><br>
12
+ <span>月统计来电数量</span>
13
+ </div>
14
+ <!-- <span class="text1">接通率</span>-->
15
+ <!-- <span class="text2">接通率</span>-->
16
+ <!-- <div class="blueLadder"></div>-->
17
+ <!-- <div class="yellowLadder"></div>-->
18
+
19
+
20
+ </div>
21
+ </template>
22
+
23
+ <script>
24
+ import echarts from "echarts";
25
+ import {HttpResetClass} from "vue-client";
26
+ export default {
27
+ name: "IncomingTelegram",
28
+
29
+ data(){
30
+ return{
31
+ data:{
32
+ netAppointment:'', //日统计
33
+ hotLine:'' //月统计
34
+
35
+
36
+ }
37
+ }
38
+ },
39
+ methods:{
40
+ getrecords(){
41
+ let http = new HttpResetClass()
42
+ http.load('post','rs/logic/RecordQuantity',{
43
+ data: {
44
+ }
45
+ },{rejectMsg:null,resolveMsg:null}).then((ress)=>{
46
+ console.log("完成"+JSON.stringify(ress.data))
47
+ this.data.netAppointment = ress.data.data.rishuliang||0
48
+ this.data.hotLine = ress.data.data.yueshuliang||0
49
+ })
50
+ }
51
+ },
52
+ ready(){
53
+ this.getrecords()
54
+ setInterval(() => {
55
+ this.getrecords()
56
+ }, 5000*60)
57
+ }
58
+
59
+
60
+ }
61
+ </script>
62
+
63
+ <style scoped>
64
+
65
+ /* 来电统计样式 */
66
+ .incoming-telegram {
67
+ width: 23.4375vw;
68
+ height: 51.667vh;
69
+ background: rgba(255, 255, 255, .04);
70
+ position: absolute;
71
+ top: 12.315vh;
72
+ right: 1.198vw;
73
+ }
74
+
75
+ .incoming-telegram p i {
76
+ width: 1.458vw;
77
+ height: 2.593vh;
78
+ background-image: url('../../../../static/images/zhongyi/chart-2@2x.png');
79
+ background-repeat: no-repeat;
80
+ background-size: cover;
81
+ background-position: 0 0;
82
+ position: absolute;
83
+ top: 2.315vh;
84
+ left: 1.51vw;
85
+ }
86
+
87
+ .incoming-telegram i {
88
+ width: 22.8125vw;
89
+ height: 0.093vh;
90
+ background-image: url('../../../../static/images/zhongyi/blueLine.png');
91
+ background-repeat: no-repeat;
92
+ background-size: cover;
93
+ position: absolute;
94
+ top: 6.852vh;
95
+ left: 1.09375vw;
96
+ }
97
+
98
+ .incoming-telegram i:nth-of-type(2) {
99
+ top: 6.667vh;
100
+ }
101
+
102
+ .incoming-telegram p span {
103
+ font-size: 2.5vh;
104
+ color: #FFFFFF;
105
+ position: absolute;
106
+ top: 1.852vh;
107
+ left: 3.698vw;
108
+ }
109
+
110
+
111
+ .incoming-telegram-div {
112
+ position: absolute;
113
+ top: 13vh;
114
+ left: 8.042vw;
115
+ height: 13.889vh;
116
+ }
117
+
118
+ .incoming-telegram div:nth-of-type(2) {
119
+ top: 34.185vh;
120
+ }
121
+
122
+ .incoming-telegram div span:nth-of-type(1) {
123
+ font-size: 5vh;
124
+ font-weight: bold;
125
+ color: #FFCD00;
126
+ display: block;
127
+ text-align: center;
128
+ margin-bottom: -2.222vh;
129
+ }
130
+
131
+ .incoming-telegram div:nth-of-type(2) span:nth-of-type(1) {
132
+ color: #00FFEA;
133
+ }
134
+
135
+ .incoming-telegram div span:nth-of-type(2) {
136
+ font-size: 2.037vh;
137
+ /* font-weight: bold; */
138
+ color: #FFFEFE;
139
+ }
140
+
141
+ .rate-top{
142
+ width: 45%;
143
+ height: 30% !important;
144
+ margin: 0.093vh 0.052vw 0.093vh 11.458vw;
145
+ }
146
+ .rate-bottom{
147
+ width: 45%;
148
+ height: 30% !important;
149
+ margin: 22.222vh 0.052vw 0.093vh 11.458vw;
150
+ }
151
+
152
+ .text1 {
153
+ font-size: 2.037vh;
154
+ font-weight: bold;
155
+ color: #FFFEFE;
156
+ position: absolute;
157
+ top: 20.722vh;
158
+ right: 3.59375vw;
159
+ }
160
+ .text2 {
161
+ font-size: 2.037vh;
162
+ font-weight: bold;
163
+ color: #FFFEFE;
164
+ position: absolute;
165
+ top: 42.185vh;
166
+ right: 3.59375vw;
167
+ }
168
+ .blueLadder{
169
+ width: 4.948vw;
170
+ height: 0.37vh;
171
+ background: url('../../../../static/images/zhongyi/blueLadder.png') no-repeat;
172
+ background-size: cover;
173
+ position: absolute;
174
+ top: 45.556vh;
175
+ right: 2.76vw;
176
+ }
177
+ .yellowLadder{
178
+ width: 4.948vw;
179
+ height: 0.37vh;
180
+ background: url('../../../../static/images/zhongyi/yellowLadder.png') no-repeat;
181
+ background-size: cover;
182
+ position: absolute;
183
+ top: 24.167vh;
184
+ right: 2.76vw;
185
+ }
186
+ /* 来电统计样式结束 */
187
+ </style>
@@ -0,0 +1,413 @@
1
+ <template>
2
+ <!-- 完成率组件 -->
3
+ <div class="percentageComplete">
4
+ <div class="view">
5
+ <div class="pending"><i></i><span>待处理</span><span class="pendingNum">{{ data.pendingNum ?data.pendingNum:'0' }}</span></div>
6
+ <div class="beingProcessed"><i></i><span>处理中</span><span class="beingProcessedNum">{{ data.beingProcessedNum?data.beingProcessedNum:'0' }}</span></div>
7
+ <div class="completed"><i></i><span>已完成</span><span class="completedNum">{{ data.completedNum?data.completedNum:'0' }}</span></div>
8
+ <div class="completedEcharts"></div>
9
+ <div class="percentText">完成率</div>
10
+ </div>
11
+ <div class="data">
12
+ <ul>
13
+ <li><span>昨日工单</span><span class="day">{{ data.day }}</span><span>日环比</span>
14
+ <div v-show="data.daysFrom != '0%'" :class="data.daysFrom.startsWith('-') ?'yellowArrows':'blueArrows'"></div>
15
+ <span :class="data.daysFrom.startsWith('-') ?'lower':'increase'">{{ data.daysFrom.startsWith('-') ? data.daysFrom.substring(1) : data.daysFrom }}</span>
16
+ </li>
17
+ <li><span>月度工单量</span><span class="month">{{ data.month }}</span><span>月环比</span>
18
+ <div v-show="data.onAMonthlyBasis != '0%'":class="data.onAMonthlyBasis.startsWith('-') ?'yellowArrows':'blueArrows'"></div>
19
+ <span :class="data.onAMonthlyBasis.startsWith('-') ?'lower':'increase'">{{ data.onAMonthlyBasis.startsWith('-') ?data.onAMonthlyBasis.substring(1) : data.onAMonthlyBasis }}</span>
20
+ </li>
21
+ <li><span>年度工单量</span><span class="year">{{ data.year }}</span><span>同比</span>
22
+ <div v-show="data.yoy != '0%'" :class="data.yoy.startsWith('-') ?'yellowArrows':'blueArrows'"></div>
23
+ <span :class="data.yoy.startsWith('-') ?'lower':'increase'">{{ data.yoy.startsWith('-') ? data.yoy.substring(1) : data.yoy}}</span>
24
+ </li>
25
+ </ul>
26
+ </div>
27
+ </div>
28
+ </template>
29
+
30
+ <script>
31
+ import {HttpResetClass} from "vue-client";
32
+ import * as Util from '../../../util'
33
+
34
+ export default {
35
+ name: "PercentageComplete",
36
+ data(){
37
+ return{
38
+ f_orgid: '',
39
+ data:{
40
+ //待处理
41
+ pendingNum:'',
42
+ // 处理中
43
+ beingProcessedNum:'',
44
+ //已完成
45
+ completedNum:'',
46
+ //昨日工单
47
+ day:'',
48
+ //月度工单量
49
+ month:'',
50
+ //年度工单量
51
+ year:'',
52
+ //日环比、月环比、同比第一个参数,0为降,1为增长
53
+ //日环比
54
+ daysFrom:'',
55
+ //月环比
56
+ onAMonthlyBasis:'',
57
+ //同比
58
+ yoy:''
59
+ }
60
+ }
61
+ },
62
+ props:['filialeId'],
63
+ methods:{
64
+ //获取完成
65
+ getWorkorder(){
66
+ let http = new HttpResetClass()
67
+ http.load('post','rs/logic/WorkorderCompletionInformation',{
68
+ data: {
69
+ f_orgid: this.filialeId?this.filialeId:23145 // 分公司id
70
+ }
71
+ },{rejectMsg:null,resolveMsg:null}).then((ress)=>{
72
+ console.log("完成"+JSON.stringify(ress.data))
73
+ this.data.completedNum = ress.data.data.yiwancheng||0
74
+ this.data.pendingNum = ress.data.data.daichuli||0
75
+ this.data.beingProcessedNum = ress.data.data.chulizhong||0
76
+ console.log(" this.data"+JSON.stringify(this.data))
77
+ this.$emit('wanchenglv',ress.data.data.wanchenglv)
78
+ })
79
+ },
80
+ //获取环比
81
+ gettongyu(){
82
+ let http = new HttpResetClass()
83
+ http.load('post','rs/logic/AnnulusStatistics',{
84
+ data: {
85
+ f_orgid: this.filialeId?this.filialeId:23145 // 分公司id
86
+ }
87
+ },{rejectMsg:null,resolveMsg:null}).then((res)=>{
88
+ console.log("gettongyu"+JSON.stringify(res.data))
89
+ this.data.daysFrom = res.data.data[0].rihuanbi||0
90
+ this.data.onAMonthlyBasis = res.data.data[0].yuehuanbi||0
91
+ this.data.yoy = res.data.data[0].nianhuanbi||0
92
+ })
93
+ },
94
+ //获取月工单数量环
95
+ getmonthworkoreder(){
96
+ let http = new HttpResetClass()
97
+ http.load('post','rs/logic/Monthlyworkorderstatistics',{
98
+ data: {
99
+ f_orgid: this.filialeId?this.filialeId:23145 // 分公司id
100
+ }
101
+ },{rejectMsg:null,resolveMsg:null}).then((res)=>{
102
+ console.log("getmonthworkoreder"+JSON.stringify(res.data))
103
+ this.data.month = res.data.data[0].monthsum||0
104
+ })
105
+ },
106
+ //获取天工单数量环
107
+ getdayworkoreder(){
108
+ let http = new HttpResetClass()
109
+ http.load('post','rs/logic/Dayworkorderstatistics',{
110
+ data: {
111
+ f_orgid: this.filialeId?this.filialeId:23145 // 分公司id
112
+ }
113
+ },{rejectMsg:null,resolveMsg:null}).then((res)=>{
114
+ console.log("getdayworkoreder"+JSON.stringify(res.data))
115
+ this.data.day = res.data.data[0].daysum||0
116
+ })
117
+ },
118
+ //获取年度工单数量环
119
+ getyearworkoreder(){
120
+ let http = new HttpResetClass()
121
+ http.load('post','rs/logic/Yearworkorderstatistics',{
122
+ data: {
123
+ f_orgid: this.filialeId?this.filialeId:23145 // 分公司id
124
+ }
125
+ },{rejectMsg:null,resolveMsg:null}).then((res)=>{
126
+ console.log("year"+JSON.stringify(res.data))
127
+ this.data.year = res.data.data[0].yearsum||0
128
+ })
129
+ }
130
+ },
131
+ ready(){
132
+ this.getWorkorder()
133
+ this.gettongyu()
134
+ this.getmonthworkoreder()
135
+ this.getdayworkoreder()
136
+ this.getyearworkoreder()
137
+ setInterval(() => {
138
+ this.getWorkorder()
139
+ this.gettongyu()
140
+ this.getmonthworkoreder()
141
+ this.getdayworkoreder()
142
+ this.getyearworkoreder()
143
+ }, 300000)
144
+ },
145
+ watch: {
146
+ 'filialeId'(val){
147
+ console.log("filialeId>>>=====",val)
148
+ this.getWorkorder()
149
+ this.gettongyu()
150
+ this.getmonthworkoreder()
151
+ this.getdayworkoreder()
152
+ this.getyearworkoreder()
153
+ }
154
+ }
155
+ }
156
+ </script>
157
+
158
+ <style scoped>
159
+ /* 完成率组件样式 */
160
+ .percentageComplete {
161
+ width: 24.198vw;
162
+ height: 42.852vh;
163
+ position: absolute;
164
+ top: 53.241vh;
165
+ left: 1.146vw;
166
+ background: #0f136c;
167
+ }
168
+
169
+ .pending {
170
+ width: 4.948vw;
171
+ height: 13.981vh;
172
+ position: absolute;
173
+ top: 4.63vh;
174
+ left: 0.573vw;
175
+ border: 0.093vh dashed #fff;
176
+ }
177
+
178
+ .pending i {
179
+ width: 93%;
180
+ height: 100%;
181
+ background-repeat: no-repeat;
182
+ background-position: 0 -0.365vw;
183
+ background-size: cover;
184
+ position: absolute;
185
+ background-image: url("../../../../static/images/zhongyi/exclamationPoint.png");
186
+ margin-left: 0.15625vw;
187
+ }
188
+
189
+ .pending span:nth-of-type(1) {
190
+ font-size: 2.037vh;
191
+ color: #FFFFFF;
192
+ position: absolute;
193
+ bottom: 9.259vh;
194
+ left: 0.885vw;
195
+ }
196
+
197
+ .pending span:nth-of-type(2) {
198
+ font-size: 2.963vh;
199
+ font-weight: bold;
200
+ color: #FF7E00;
201
+ position: absolute;
202
+ bottom: 12.222vh;
203
+ left: 1.5625vw;
204
+ }
205
+
206
+ .beingProcessed {
207
+ width: 4.948vw;
208
+ height: 13.981vh;
209
+ position: absolute;
210
+ top: 4.63vh;
211
+ left: 5.417vw;
212
+ border: 0.093vh dashed #fff;
213
+ }
214
+
215
+ .beingProcessed i {
216
+ width: 93%;
217
+ height: 100%;
218
+ background-repeat: no-repeat;
219
+ background-position: 0 -0.365vw;
220
+ background-size: cover;
221
+ position: absolute;
222
+ background-image: url("../../../../static/images/zhongyi/refresh.png");
223
+ margin-left: 0.15625vw;
224
+ }
225
+
226
+ .beingProcessed span:nth-of-type(1) {
227
+ font-size: 2.037vh;
228
+ color: #FFFFFF;
229
+ position: absolute;
230
+ bottom: 9.259vh;
231
+ left: 0.885vw;
232
+ }
233
+
234
+ .beingProcessed span:nth-of-type(2) {
235
+ font-size: 2.963vh;
236
+ font-weight: bold;
237
+ color: #FFCC0F;
238
+ position: absolute;
239
+ bottom: 12.222vh;
240
+ left: 1.5625vw;
241
+ }
242
+
243
+ .completed {
244
+ width: 4.948vw;
245
+ height: 13.981vh;
246
+ position: absolute;
247
+ top: 4.63vh;
248
+ left: 10.208vw;
249
+ border: 0.093vh dashed #fff;
250
+ }
251
+
252
+ .completed i {
253
+ width: 93%;
254
+ height: 100%;
255
+ background-repeat: no-repeat;
256
+ background-position: 0 -0.365vw;
257
+ background-size: cover;
258
+ position: absolute;
259
+ background-image: url("../../../../static/images/zhongyi/Pigeon.png");
260
+ margin-left: 0.15625vw;
261
+ }
262
+
263
+ .completed span:nth-of-type(1) {
264
+ font-size: 2.037vh;
265
+ color: #FFFFFF;
266
+ position: absolute;
267
+ bottom: 9.259vh;
268
+ left: 0.885vw;
269
+ }
270
+
271
+ .completed span:nth-of-type(2) {
272
+ font-size: 2.963vh;
273
+ font-weight: bold;
274
+ color: #01F7E6;
275
+ position: absolute;
276
+ bottom: 12.222vh;
277
+ left: 1.5625vw;
278
+ }
279
+
280
+ .completedEcharts {
281
+ width: 7.24vw;
282
+ height: 12.87vh;
283
+ opacity: 0.08;
284
+ border-radius: 50%;
285
+ position: absolute;
286
+ top: 4.352vh;
287
+ right: 1.146vw;
288
+ /*background-color: #00F6FF;*/
289
+ }
290
+ .data{
291
+ height: 1vh;
292
+ }
293
+
294
+ .data li {
295
+ width: 22.8125vw;
296
+ height: 4.537vh;
297
+ position: absolute;
298
+ /* position: relative; */
299
+ left: 1.09375vw;
300
+ list-style: none;
301
+ display: inline-block;
302
+ }
303
+
304
+ .data li:nth-of-type(1) {
305
+ width: 22.8125vw;
306
+ height: 4.537vh;
307
+ background-image: url('../../../../static/images/zhongyi/bluebg.png');
308
+ background-repeat: no-repeat;
309
+ background-size: cover;
310
+ bottom: 16.389vh;
311
+ border: 0.093vh dashed #fff;
312
+ }
313
+
314
+ .data li:nth-of-type(2) {
315
+ width: 22.8125vw;
316
+ height: 4.537vh;
317
+ background-image: url('../../../../static/images/zhongyi/yellowbg.png');
318
+ background-repeat: no-repeat;
319
+ background-size: cover;
320
+ bottom: 9.259vh;
321
+ border: 0.093vh dashed #fff;
322
+ }
323
+
324
+ .data li:nth-of-type(3) {
325
+ width: 22.8125vw;
326
+ height: 4.537vh;
327
+ background-image: url('../../../../static/images/zhongyi/bulebg2.png');
328
+ background-repeat: no-repeat;
329
+ background-size: cover;
330
+ bottom: 2.037vh;
331
+ border: 0.093vh dashed #fff;
332
+ }
333
+
334
+ .data li span:nth-of-type(1) {
335
+ font-size: 2.037vh;
336
+ color: #FFFFFF;
337
+ position: relative;
338
+ top: 0.833vh;
339
+ left: 0.625vw;
340
+ }
341
+ .data li span:nth-of-type(2) {
342
+ font-size: 2.5vh;
343
+ position: absolute;
344
+ font-weight: bold;
345
+ top: 0.556vh;
346
+ left: 6.823vw;
347
+ }
348
+ .day{
349
+ color: #00D2FF;
350
+ }
351
+ .month{
352
+ color: #FFCD00;
353
+ }
354
+ .year{
355
+ color: #01F7E6;
356
+ }
357
+ /*.data li{*/
358
+ /* position: relative;*/
359
+ /*}*/
360
+ .data li span:nth-of-type(3) {
361
+ font-size: 2.037vh;
362
+ color: #FFFFFF;
363
+ position: absolute;
364
+ top: 0.833vh;
365
+ right: 7.292vw;
366
+ }
367
+ .data li span:nth-of-type(4) {
368
+ font-size: 2.037vh;
369
+ position: absolute;
370
+ font-weight: bold;
371
+ top: 0.833vh;
372
+ right: 0.833vw;
373
+ }
374
+
375
+ .increase{
376
+ color: #01F7E6;
377
+ }
378
+ .lower{
379
+ color: #FF7E00;
380
+ }
381
+ .view{
382
+ position: relative;
383
+ }
384
+ .percentText{
385
+ width: 3.4375vw;
386
+ height: 2.037vh;
387
+ font-size: 2.037vh;
388
+ font-weight: bold;
389
+ color: #FFFFFF;
390
+ position: absolute;
391
+ top: 12vh;
392
+ right: 2.917vw;
393
+ }
394
+ .blueArrows{
395
+ width: 1.146vw;
396
+ height: 2.037vh;
397
+ background: url('../../../../static/images/zhongyi/blueArrows.png') no-repeat;
398
+ background-size: cover;
399
+ position: absolute;
400
+ right: 5.365vw;
401
+ top: 1.389vh;
402
+ }
403
+ .yellowArrows{
404
+ width: 1.146vw;
405
+ height: 2.037vh;
406
+ background: url('../../../../static/images/zhongyi/yellowArrows.png') no-repeat;
407
+ background-size: cover;
408
+ position: absolute;
409
+ right: 5.365vw;
410
+ top: 1.389vh;
411
+ }
412
+ /* 完成率组件样式结束 */
413
+ </style>