manage-client 3.2.144 → 3.2.147
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 +2 -2
- package/package.json +1 -1
- package/src/App.vue +1 -0
- package/src/components/SellReport/BankManager.vue +102 -102
- package/src/components/SellReport/Test.vue +862 -0
- package/src/components/WebReport/EchartsBox.vue +1 -0
- package/src/components/sale/businessquery/ArrearsQuery.vue +8 -8
- package/src/filiale/kelai/UserQuery.vue +963 -0
- package/src/filiale/kelai/exportConfig.js +1062 -0
- package/src/filiale/kelai/sale.js +8 -0
- package/src/filiale/macheng/config/exportConfig.js +1 -1
- package/src/filiale/meihekou/CardHandplanQuery.vue +1 -1
- package/src/filiale/xinkang/ChargeQuery.vue +1308 -0
- package/src/filiale/xinkang/sale.js +10 -0
- package/src/filiale/zhongyi/CallReport/CallReportMainPage.vue +116 -0
- package/src/filiale/zhongyi/CallReport/IncomingTelegram.vue +162 -0
- package/src/filiale/zhongyi/CallReport/PercentageComplete.vue +291 -0
- package/src/filiale/zhongyi/CallReport/PercentageCompleteEchart.vue +140 -0
- package/src/filiale/zhongyi/CallReport/RateBottom.vue +143 -0
- package/src/filiale/zhongyi/CallReport/RateTop.vue +144 -0
- package/src/filiale/zhongyi/CallReport/ScrollContent.vue +143 -0
- package/src/filiale/zhongyi/CallReport/ServiceStatus.vue +385 -0
- package/src/filiale/zhongyi/CallReport/Time.vue +61 -0
- package/src/filiale/zhongyi/CallReport/Userinfo.vue +167 -0
- package/src/filiale/zhongyi/CallReport/WeatherData.vue +41 -0
- package/src/filiale/zhongyi/CallReport/WorkOrderPage.vue +181 -0
- package/src/filiale/zhongyi/sale.js +34 -1
- package/src/main.js +1 -1
- package/src/reportManage.js +4 -0
- package/static/images/zhongyi/Pigeon.png +0 -0
- package/static/images/zhongyi/background.png +0 -0
- package/static/images/zhongyi/blueBall.png +0 -0
- package/static/images/zhongyi/blueLadder.png +0 -0
- package/static/images/zhongyi/blueLine.png +0 -0
- package/static/images/zhongyi/bluebg.png +0 -0
- package/static/images/zhongyi/bulebg2.png +0 -0
- package/static/images/zhongyi/chart-2@2x.png +0 -0
- package/static/images/zhongyi/cloudy.png +0 -0
- package/static/images/zhongyi/exclamationPoint.png +0 -0
- package/static/images/zhongyi/netHall.png +0 -0
- package/static/images/zhongyi/orangebg.png +0 -0
- package/static/images/zhongyi/phone1.png +0 -0
- package/static/images/zhongyi/phone2.png +0 -0
- package/static/images/zhongyi/phone3.png +0 -0
- package/static/images/zhongyi/phone4.png +0 -0
- package/static/images/zhongyi/phone5.png +0 -0
- package/static/images/zhongyi/refresh.png +0 -0
- package/static/images/zhongyi/ring.png +0 -0
- package/static/images/zhongyi/service1.png +0 -0
- package/static/images/zhongyi/service2.png +0 -0
- package/static/images/zhongyi/telephone1.png +0 -0
- package/static/images/zhongyi/telephone2.png +0 -0
- package/static/images/zhongyi/trumpet.png +0 -0
- package/static/images/zhongyi/weChat.png +0 -0
- package/static/images/zhongyi/workOrder.png +0 -0
- package/static/images/zhongyi/yellowBall.png +0 -0
- package/static/images/zhongyi/yellowLadder.png +0 -0
- package/static/images/zhongyi/yellowbg.png +0 -0
- package/static/images/zhongyi//347/256/255/345/244/264 19 1 /346/213/267/350/264/235 2@2x.png +0 -0
- package/static/images/zhongyi//347/256/255/345/244/264 19 1 /346/213/267/350/264/235@2x.png +0 -0
- package/static/images/zhongyi//347/256/255/345/244/264 19 1.png +0 -0
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<!-- 工单模块 -->
|
|
3
|
+
<div class="left-1">
|
|
4
|
+
<p><i class="workOrder"></i><span>今日工单统计</span></p>
|
|
5
|
+
<i class="blueLine"></i>
|
|
6
|
+
<i class="blueLine blueLine2"></i>
|
|
7
|
+
<ul>
|
|
8
|
+
<li><span>工单量</span><span class="orderQuantity">{{ data.orderQuantity }}</span></li>
|
|
9
|
+
<li><span>在线处理</span><span class="onLineProcessing">{{ data.onLineProcessing }}</span></li>
|
|
10
|
+
<li><span>派单量</span><span class="sendOrders">{{ data.sendOrders }}</span></li>
|
|
11
|
+
|
|
12
|
+
<li><span>电话派单量</span><span class="orderByTelephone">{{ data.orderByTelephone }}</span></li>
|
|
13
|
+
<li><span>微信客服派单量</span><span class="orderByWechat">{{ data.orderByWechat }}</span></li>
|
|
14
|
+
<li><span>网厅预约派单量</span><span class="orderByNetHall">{{ data.orderByNetHall }}</span></li>
|
|
15
|
+
</ul>
|
|
16
|
+
</div>
|
|
17
|
+
</template>
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
<script>
|
|
21
|
+
import {HttpResetClass} from "vue-client";
|
|
22
|
+
|
|
23
|
+
export default {
|
|
24
|
+
name: "WorkOrderPage",
|
|
25
|
+
data(){
|
|
26
|
+
return{
|
|
27
|
+
data:{
|
|
28
|
+
orderQuantity:'8740',
|
|
29
|
+
onLineProcessing:'5487',
|
|
30
|
+
sendOrders:'8740',
|
|
31
|
+
orderByTelephone:'8740',
|
|
32
|
+
orderByWechat:'5487',
|
|
33
|
+
orderByNetHall:'4723',
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
methods:{
|
|
40
|
+
getInitData(){
|
|
41
|
+
let http = new HttpResetClass()
|
|
42
|
+
http.load('post','rs/sql/getCallSumData',{}).then((res)=>{
|
|
43
|
+
console.log(res.data)
|
|
44
|
+
// this.data = res.data[0]
|
|
45
|
+
})
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
ready(){
|
|
49
|
+
// this.getInitData()
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
</script>
|
|
53
|
+
|
|
54
|
+
<style scoped>
|
|
55
|
+
/* 工单组件样式 */
|
|
56
|
+
.left-1 {
|
|
57
|
+
width: 23.984375vw;
|
|
58
|
+
height: 39.815vh;
|
|
59
|
+
position: relative;
|
|
60
|
+
top: 6.667vw;
|
|
61
|
+
left: 1.354vw;
|
|
62
|
+
background: #0f136c;
|
|
63
|
+
}
|
|
64
|
+
.left-1 p {
|
|
65
|
+
height: 8.333vh;
|
|
66
|
+
}
|
|
67
|
+
.workOrder {
|
|
68
|
+
width: 1.51vw;
|
|
69
|
+
height: 2.778vh;
|
|
70
|
+
background-image: url("../../../../static/images/zhongyi/workOrder.png");
|
|
71
|
+
position: absolute;
|
|
72
|
+
background-repeat: no-repeat;
|
|
73
|
+
background-position: 0px 0px;
|
|
74
|
+
background-size: cover;
|
|
75
|
+
top: 2.5vh;
|
|
76
|
+
left: 1.458vw;
|
|
77
|
+
}
|
|
78
|
+
.blueLine {
|
|
79
|
+
width: 22.8125vw;
|
|
80
|
+
height: 0.093vh;
|
|
81
|
+
background-image: url("../../../../static/images/zhongyi/blueLine.png");
|
|
82
|
+
position: absolute;
|
|
83
|
+
background-repeat: no-repeat;
|
|
84
|
+
background-position: 0px 0px;
|
|
85
|
+
background-size: cover;
|
|
86
|
+
top: 6.667vh;
|
|
87
|
+
left: 0.573vw;
|
|
88
|
+
}
|
|
89
|
+
.blueLine2 {
|
|
90
|
+
top: 6.759vh;
|
|
91
|
+
}
|
|
92
|
+
.left-1 p span {
|
|
93
|
+
font-size: 27px;
|
|
94
|
+
color: #fff;
|
|
95
|
+
position: relative;
|
|
96
|
+
top: 2.222vh;
|
|
97
|
+
left: 3.59375vw;
|
|
98
|
+
}
|
|
99
|
+
.left-1 li {
|
|
100
|
+
list-style: none;
|
|
101
|
+
width: 22.76vw;
|
|
102
|
+
height: 4.722vh;
|
|
103
|
+
background-repeat: no-repeat;
|
|
104
|
+
background-position: 0px 0px;
|
|
105
|
+
background-size: cover;
|
|
106
|
+
position: relative;
|
|
107
|
+
border: 1px dashed #fff;
|
|
108
|
+
left: 1.09375vw;
|
|
109
|
+
}
|
|
110
|
+
.left-1 li:nth-of-type(1) {
|
|
111
|
+
background-image: url("../../../../static/images/zhongyi/telephone2.png");
|
|
112
|
+
}
|
|
113
|
+
.left-1 li:nth-of-type(2) {
|
|
114
|
+
background-image: url("../../../../static/images/zhongyi/phone3.png");
|
|
115
|
+
}
|
|
116
|
+
.left-1 li:nth-of-type(3) {
|
|
117
|
+
background-image: url("../../../../static/images/zhongyi/phone4.png");
|
|
118
|
+
}
|
|
119
|
+
.left-1 li:nth-of-type(4) {
|
|
120
|
+
top: 0.926vh;
|
|
121
|
+
background-image: url("../../../../static/images/zhongyi/weChat.png");
|
|
122
|
+
}
|
|
123
|
+
.left-1 li:nth-of-type(5) {
|
|
124
|
+
top: 0.833vh;
|
|
125
|
+
background-image: url("../../../../static/images/zhongyi/weChat.png");
|
|
126
|
+
}
|
|
127
|
+
.left-1 li:nth-of-type(6) {
|
|
128
|
+
top: 0.926vh;
|
|
129
|
+
background-image: url("../../../../static/images/zhongyi/netHall.png");
|
|
130
|
+
}
|
|
131
|
+
.left-1 li span:nth-of-type(1) {
|
|
132
|
+
font-size: 22px;
|
|
133
|
+
color: #fff;
|
|
134
|
+
position: relative;
|
|
135
|
+
top: 1.019vh;
|
|
136
|
+
left: 3.385vw;
|
|
137
|
+
}
|
|
138
|
+
.left-1 li span:nth-of-type(2) {
|
|
139
|
+
position: absolute;
|
|
140
|
+
top: 0.648vh;
|
|
141
|
+
left: 16.5625vw;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.orderQuantity {
|
|
145
|
+
color: #FFCD00;
|
|
146
|
+
font-size: 32px;
|
|
147
|
+
font-weight: bold;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.onLineProcessing {
|
|
151
|
+
font-size: 32px;
|
|
152
|
+
font-weight: bold;
|
|
153
|
+
color: #FF7E00;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.sendOrders {
|
|
157
|
+
font-size: 32px;
|
|
158
|
+
font-weight: bold;
|
|
159
|
+
color: #00FFEA;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.orderByTelephone {
|
|
163
|
+
font-size: 25px;
|
|
164
|
+
font-weight: bold;
|
|
165
|
+
color: #FFCB0D;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.orderByWechat {
|
|
169
|
+
font-size: 25px;
|
|
170
|
+
font-weight: bold;
|
|
171
|
+
color: #FF7E00;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.orderByNetHall {
|
|
175
|
+
font-size: 25px;
|
|
176
|
+
font-weight: bold;
|
|
177
|
+
color: #00FFEA;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
/* 工单模块样式结束 */
|
|
181
|
+
</style>
|
|
@@ -2,9 +2,42 @@
|
|
|
2
2
|
let specialComp = {
|
|
3
3
|
// 物联网表用气量统计表
|
|
4
4
|
'use-gas-statistics': (resolve) => { require(['./GasStatistics'], resolve) },
|
|
5
|
+
|
|
6
|
+
// 物联网表用气量统计表
|
|
7
|
+
'call-report-main-page': (resolve) => { require(['./CallReport/CallReportMainPage'], resolve) },
|
|
8
|
+
// // 物联网表用气量统计表
|
|
9
|
+
// 'call-report-main-page': (resolve) => { require(['./CallReport/CallReportMainPage'], resolve) },
|
|
10
|
+
// // 物联网表用气量统计表
|
|
11
|
+
// 'call-report-main-page': (resolve) => { require(['./CallReport/CallReportMainPage'], resolve) },
|
|
5
12
|
// 异常汇总分析
|
|
6
|
-
'meter-exception-list': (resolve) => { require(['./MeterExceptionList'], resolve) }
|
|
13
|
+
'meter-exception-list': (resolve) => { require(['./MeterExceptionList'], resolve) },
|
|
14
|
+
|
|
15
|
+
//天气
|
|
16
|
+
'weather-data': (resolve) => { require(['./CallReport/WeatherData'], resolve) },
|
|
17
|
+
//时间
|
|
18
|
+
'time': (resolve) => { require(['./CallReport/Time'], resolve) },
|
|
19
|
+
|
|
20
|
+
//工单统计
|
|
21
|
+
'work-order-page':(resolve) => { require(['./CallReport/WorkOrderPage'], resolve) },
|
|
22
|
+
|
|
23
|
+
//完成率
|
|
24
|
+
'percentage-complete':(resolve) => { require(['./CallReport/PercentageComplete'], resolve) },
|
|
25
|
+
|
|
26
|
+
'percentage-complete-echart':(resolve) => { require(['./CallReport/PercentageCompleteEchart'], resolve) },
|
|
27
|
+
//用户信息
|
|
28
|
+
'userinfo':(resolve) => { require(['./CallReport/Userinfo'], resolve) },
|
|
29
|
+
|
|
30
|
+
//来电统计
|
|
31
|
+
'incoming-telegram':(resolve) => { require(['./CallReport/IncomingTelegram'], resolve) },
|
|
32
|
+
//echart图1
|
|
33
|
+
'rate-top':(resolve) => { require(['./CallReport/RateTop'], resolve) },
|
|
34
|
+
//echart图2
|
|
35
|
+
'rate-bottom':(resolve) => { require(['./CallReport/RateBottom'], resolve) },
|
|
36
|
+
|
|
37
|
+
//客服状态
|
|
38
|
+
'service-status':(resolve) => { require(['./CallReport/ServiceStatus'], resolve) },
|
|
7
39
|
|
|
40
|
+
//
|
|
8
41
|
}
|
|
9
42
|
exports.specialComp = specialComp
|
|
10
43
|
|
package/src/main.js
CHANGED
package/src/reportManage.js
CHANGED
|
@@ -81,6 +81,9 @@ export default function (filiale) {
|
|
|
81
81
|
Vue.component('bank-manager', (resolve) => {
|
|
82
82
|
require(['./components/SellReport/BankManager'], resolve)
|
|
83
83
|
})
|
|
84
|
+
Vue.component('test', (resolve) => {
|
|
85
|
+
require(['./components/SellReport/Test'], resolve)
|
|
86
|
+
})
|
|
84
87
|
// 各管理站气量金额散列图
|
|
85
88
|
Vue.component('site-manager', (resolve) => {
|
|
86
89
|
require(['./components/SellReport/SiteManager'], resolve)
|
|
@@ -609,6 +612,7 @@ export default function (filiale) {
|
|
|
609
612
|
Vue.component('card-applys-gas', (resolve) => {
|
|
610
613
|
require(['./components/SellReport/Cardapplysgas'], resolve)
|
|
611
614
|
})
|
|
615
|
+
|
|
612
616
|
if (filiale) {
|
|
613
617
|
let filialeComp = require(`./filiale/${filiale}/reportManage`).specialComp
|
|
614
618
|
Vue.filialeInfo = Vue.prototype.$filialeInfo = filiale
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|