liuzhihui лет назад: 2
Родитель
Сommit
a109bf677f

+ 23 - 20
CallCenterWeb.UI/RMYY/src/views/leadConcernNew/qualityControl/index.vue

82
         cardData: [{
82
         cardData: [{
83
             text: "工单超时接单",
83
             text: "工单超时接单",
84
             value: 0,
84
             value: 0,
85
-            per: 0
85
+            per: "0%"
86
           },
86
           },
87
           {
87
           {
88
             text: "工单超时提交",
88
             text: "工单超时提交",
89
             value: 0,
89
             value: 0,
90
-            per: 0
90
+            per: "0%"
91
           },
91
           },
92
           {
92
           {
93
             text: "紧急工单超时接单",
93
             text: "紧急工单超时接单",
94
             value: 0,
94
             value: 0,
95
-            per: 0
95
+            per: "0%"
96
           },
96
           },
97
           {
97
           {
98
             text: "紧急工单超时提交",
98
             text: "紧急工单超时提交",
99
             value: 0,
99
             value: 0,
100
-            per: 0
100
+            per: "0%"
101
           },
101
           },
102
           {
102
           {
103
             text: "工单返修",
103
             text: "工单返修",
104
             value: 0,
104
             value: 0,
105
-            per: 0
105
+            per: "0%"
106
           },
106
           },
107
           {
107
           {
108
             text: "工单不满意",
108
             text: "工单不满意",
109
             value: 0,
109
             value: 0,
110
-            per: 0
110
+            per: "0%"
111
           },
111
           },
112
         ],
112
         ],
113
         startTime: getPreDate(3600 * 1000 * 24),
113
         startTime: getPreDate(3600 * 1000 * 24),
217
             this.cardData = [{
217
             this.cardData = [{
218
                 text: "工单超时接单",
218
                 text: "工单超时接单",
219
                 value: data.overtime_num,
219
                 value: data.overtime_num,
220
-                per: 0
220
+                per: data.overtime_numrate || 0
221
               },
221
               },
222
               {
222
               {
223
                 text: "工单超时提交",
223
                 text: "工单超时提交",
224
                 value: data.overtime_complete_num,
224
                 value: data.overtime_complete_num,
225
-                per: 0
225
+                per: data.overtime_complete_numrate || 0
226
               },
226
               },
227
               {
227
               {
228
                 text: "紧急工单超时接单",
228
                 text: "紧急工单超时接单",
229
                 value: data.emergency_overtime_num,
229
                 value: data.emergency_overtime_num,
230
-                per: 0
230
+                per: data.emergency_overtime_numrate
231
               },
231
               },
232
               {
232
               {
233
                 text: "紧急工单超时提交",
233
                 text: "紧急工单超时提交",
234
                 value: data.emergency_overtime_complete_num,
234
                 value: data.emergency_overtime_complete_num,
235
-                per: 0
235
+                per: data.emergency_overtime_complete_numrate
236
               },
236
               },
237
               {
237
               {
238
                 text: "工单返修",
238
                 text: "工单返修",
239
                 value: data.return_num,
239
                 value: data.return_num,
240
-                per: 0
240
+                per: data.return_numrate
241
               },
241
               },
242
               {
242
               {
243
                 text: "工单不满意",
243
                 text: "工单不满意",
244
-                value: data.unsatisfactory_num || 0,
245
-                per: 0
244
+                value: data.bmy_num || 0,
245
+                per: data.bmy_numrate
246
               },
246
               },
247
             ]
247
             ]
248
           }
248
           }
253
             const echatRow = []
253
             const echatRow = []
254
             const val1 = []
254
             const val1 = []
255
             const val2 = []
255
             const val2 = []
256
+            if(res.data.length == 0){
257
+              return
258
+            }
256
             res.data.forEach(ele => {
259
             res.data.forEach(ele => {
257
               echatRow.push(ele.incident_date.split(" ")[0].substr(5, 6))
260
               echatRow.push(ele.incident_date.split(" ")[0].substr(5, 6))
258
               // 搜索切换
261
               // 搜索切换
259
               if (this.selectVal == '0') {
262
               if (this.selectVal == '0') {
260
                 val1.push(ele.overtime_num)
263
                 val1.push(ele.overtime_num)
261
-                val2.push(0)
264
+                val2.push(ele.overtime_numrate.split('%')[0])
262
                 legendData = ['工单超时接单量', '工单超时接单率']
265
                 legendData = ['工单超时接单量', '工单超时接单率']
263
               }
266
               }
264
               if (this.selectVal == '1') {
267
               if (this.selectVal == '1') {
265
                 val1.push(ele.overtime_complete_num)
268
                 val1.push(ele.overtime_complete_num)
266
-                val2.push(0)
269
+                val2.push(ele.overtime_complete_numrate.split('%')[0])
267
                 legendData = ['工单超时提交量', '工单超时提交率']
270
                 legendData = ['工单超时提交量', '工单超时提交率']
268
               }
271
               }
269
               if (this.selectVal == '2') {
272
               if (this.selectVal == '2') {
270
                 val1.push(ele.emergency_overtime_num)
273
                 val1.push(ele.emergency_overtime_num)
271
-                val2.push(0)
274
+                val2.push(ele.emergency_overtime_numrate.split('%')[0])
272
                 legendData = ['紧急工单超时接单量', '紧急工单超时接单率']
275
                 legendData = ['紧急工单超时接单量', '紧急工单超时接单率']
273
               }
276
               }
274
               if (this.selectVal == '3') {
277
               if (this.selectVal == '3') {
275
                 val1.push(ele.emergency_overtime_complete_num)
278
                 val1.push(ele.emergency_overtime_complete_num)
276
-                val2.push(0)
279
+                val2.push(ele.emergency_overtime_complete_numrate.split('%')[0])
277
                 legendData = ['紧急工单超时提交量', '紧急工单超时提交率']
280
                 legendData = ['紧急工单超时提交量', '紧急工单超时提交率']
278
               }
281
               }
279
               if (this.selectVal == '4') {
282
               if (this.selectVal == '4') {
280
                 val1.push(ele.return_num)
283
                 val1.push(ele.return_num)
281
-                val2.push(0)
284
+                val2.push(ele.return_numrate.split('%')[0])
282
                 legendData = ['工单返修量', '工单返修率']
285
                 legendData = ['工单返修量', '工单返修率']
283
               }
286
               }
284
               if (this.selectVal == '5') {
287
               if (this.selectVal == '5') {
285
-                val1.push(ele.unsatisfactory_num)
286
-                val2.push(0)
288
+                val1.push(ele.bmy_num || 0)
289
+                val2.push(ele.bmy_numrate.split('%')[0])
287
                 legendData = ['工单不满意量', '工单不满意率']
290
                 legendData = ['工单不满意量', '工单不满意率']
288
               }
291
               }
289
             })
292
             })

+ 4 - 4
CallCenterWeb.UI/RMYYAPP/config/index.config.js

3
     development: {
3
     development: {
4
         assetsPath: '/static', // 静态资源路径
4
         assetsPath: '/static', // 静态资源路径
5
 				// baseUrl: 'http://192.168.8.10:8033/',
5
 				// baseUrl: 'http://192.168.8.10:8033/',
6
-				// baseUrl: 'https://zyfb.zzrmyy.com/', // 本地外网地址
7
-				baseUrl: 'http://39.164.159.192:8000/', // 本地外网地址
6
+				baseUrl: 'https://zyfb.zzrmyy.com/', // 本地外网地址
7
+				// baseUrl: 'http://39.164.159.192:8000/', // 本地外网地址
8
 				// baseUrl: 'http://localhost:50973/', // 本地外网地址
8
 				// baseUrl: 'http://localhost:50973/', // 本地外网地址
9
 		// baseUrl: 'http://172.16.10.22:8000/',	
9
 		// baseUrl: 'http://172.16.10.22:8000/',	
10
         hostUrl: '', // H5地址(前端运行地址)
10
         hostUrl: '', // H5地址(前端运行地址)
15
     production: {
15
     production: {
16
         assetsPath: '/static', // 静态资源路径
16
         assetsPath: '/static', // 静态资源路径
17
 				// baseUrl: 'http://192.168.8.10:8033/',
17
 				// baseUrl: 'http://192.168.8.10:8033/',
18
-				baseUrl: 'http://39.164.159.192:8000/',
19
-				// baseUrl: 'https://zyfb.zzrmyy.com/', // 本地外网地址
18
+				// baseUrl: 'http://39.164.159.192:8000/',
19
+				baseUrl: 'https://zyfb.zzrmyy.com/', // 本地外网地址
20
 				// baseUrl: 'http://localhost:50973/', // 本地外网地址
20
 				// baseUrl: 'http://localhost:50973/', // 本地外网地址
21
 		// baseUrl: 'http://172.16.10.22:8000/',		
21
 		// baseUrl: 'http://172.16.10.22:8000/',		
22
         hostUrl: '', // H5地址(前端运行地址)
22
         hostUrl: '', // H5地址(前端运行地址)

+ 2 - 2
CallCenterWeb.UI/RMYYAPP/manifest.json

2
     "name" : "郑州人民医院综合服务保障调度平台",
2
     "name" : "郑州人民医院综合服务保障调度平台",
3
     "appid" : "__UNI__5A5207D",
3
     "appid" : "__UNI__5A5207D",
4
     "description" : "",
4
     "description" : "",
5
-    "versionName" : "1.2.76",
6
-    "versionCode" : 176,
5
+    "versionName" : "1.2.78",
6
+    "versionCode" : 178,
7
     "transformPx" : false,
7
     "transformPx" : false,
8
     /* 5+App特有相关 */
8
     /* 5+App特有相关 */
9
     "app-plus" : {
9
     "app-plus" : {

+ 9 - 0
CallCenterWeb.UI/RMYYAPP/pages.json

338
             }
338
             }
339
             
339
             
340
         }
340
         }
341
+        ,{
342
+            "path" : "pages/myTask/opertraget/opertraget",
343
+            "style" :                                                                                    
344
+            {
345
+                "navigationBarTitleText": "运维指标",
346
+                "enablePullDownRefresh": false
347
+            }
348
+            
349
+        }
341
     ],
350
     ],
342
     "globalStyle": {
351
     "globalStyle": {
343
         "navigationBarTextStyle": "white",
352
         "navigationBarTextStyle": "white",

+ 17 - 1
CallCenterWeb.UI/RMYYAPP/pages/myTask/myTask.vue

133
 						imageBg: "#00c3c3",
133
 						imageBg: "#00c3c3",
134
 						text: "实时数据", //WorkOrder/GetLDDealList
134
 						text: "实时数据", //WorkOrder/GetLDDealList
135
 						navigateToUrl: "/pages/myTask/reportForm/reportForm?reportType=2",
135
 						navigateToUrl: "/pages/myTask/reportForm/reportForm?reportType=2",
136
-					}
136
+					},
137
+					// {
138
+					// 	id: "18",
139
+					// 	imagePath: "../../static/data1.png",
140
+					// 	imageBg: "#62c7f5",
141
+					// 	text: "运维指标", //WorkOrder/GetLDDealList
142
+					// 	navigateToUrl: "/pages/myTask/opertraget/opertraget",
143
+					// },
137
 				],
144
 				],
138
 				noticListData: [],
145
 				noticListData: [],
139
 				departList: [],
146
 				departList: [],
430
 							if (response.data.length > 0) {
437
 							if (response.data.length > 0) {
431
 								this.orderListData = listUrl.getMenuData(response.data, code)
438
 								this.orderListData = listUrl.getMenuData(response.data, code)
432
 								console.log(this.orderListData)
439
 								console.log(this.orderListData)
440
+								if (uni.getStorageSync("roleCode") === "GLY" || uni.getStorageSync("roleCode") === "DDBZ" || uni.getStorageSync("roleCode") === "BMZG") {
441
+									this.orderListData.push({
442
+										id: "18",
443
+										imagePath: "../../static/data1.png",
444
+										imageBg: "#62c7f5",
445
+										text: "运维指标",
446
+										navigateToUrl: "/pages/myTask/opertraget/opertraget"
447
+									})
448
+								}																
433
 							}
449
 							}
434
 						}
450
 						}
435
 					})
451
 					})

+ 320 - 0
CallCenterWeb.UI/RMYYAPP/pages/myTask/opertraget/opertraget.vue

1
+<template>
2
+	<view class="wrapper">
3
+		<view style="float: right;">
4
+			<uni-datetime-picker placeholder="请选择日期" type="datetype" v-model="dayTime" :clear-icon="false"
5
+				class="timebox" @change="changeClick" />
6
+		</view>
7
+		<view class="tabtitle">工作量指标</view>
8
+		<view style="margin-top: 15px;">
9
+			<view class="tabonebox">
10
+				<view class="tabonecon">
11
+					<view class="tabonetext">工单接单量</view>
12
+					<view>
13
+						<view class="taboneconbox">
14
+							<view class="taboneconboxTiT">总接单量</view>
15
+							<view class="taboneconboxCon">{{ tableData.incident_num }}</view>
16
+						</view>
17
+						<view class="taboneconbox">
18
+							<view class="taboneconboxTiT">硬件接单量</view>
19
+							<view class="taboneconboxCon">{{ tableData.hardware_incident_num }}</view>
20
+						</view>
21
+						<view class="taboneconbox">
22
+							<view class="taboneconboxTiT">软件接单量</view>
23
+							<view class="taboneconboxCon">{{ tableData.software_incident_num }}</view>
24
+						</view>
25
+					</view>
26
+				</view>
27
+			</view>
28
+			<view class="tabonebox">
29
+				<view class="tabonecon">
30
+					<view class="tabonetext">工单提交完成量</view>
31
+					<view>
32
+						<view class="taboneconbox">
33
+							<view class="taboneconboxTiT">总工单提交完成量</view>
34
+							<view class="taboneconboxCon">{{ tableData.incident_done_num }}</view>
35
+						</view>
36
+						<view class="taboneconbox">
37
+							<view class="taboneconboxTiT">硬件提交完成量</view>
38
+							<view class="taboneconboxCon">{{ tableData.hardware_incident_done_num }}</view>
39
+						</view>
40
+						<view class="taboneconbox">
41
+							<view class="taboneconboxTiT">软件提交完成量</view>
42
+							<view class="taboneconboxCon">{{ tableData.software_incident_done_num }}</view>
43
+						</view>
44
+					</view>
45
+				</view>
46
+			</view>
47
+			<view class="tabonebox">
48
+				<view class="tabonecon">
49
+					<view class="tabonetext">工单未提交量</view>
50
+					<view>
51
+						<view class="taboneconbox">
52
+							<view class="taboneconboxTiT">总工单未提交量</view>
53
+							<view class="taboneconboxCon">{{ tableData.incident_undone_num }}</view>
54
+						</view>
55
+						<view class="taboneconbox">
56
+							<view class="taboneconboxTiT">硬件未提交量</view>
57
+							<view class="taboneconboxCon">{{ tableData.hardware_incident_undone_num }}</view>
58
+						</view>
59
+						<view class="taboneconbox">
60
+							<view class="taboneconboxTiT">软件未提交量</view>
61
+							<view class="taboneconboxCon">{{ tableData.software_incident_undone_num }}</view>
62
+						</view>
63
+					</view>
64
+				</view>
65
+			</view>
66
+			<view class="tabonebox taboneboxlast">
67
+				<view class="tabonecon">
68
+					<view class="tabonetext" style="background-color: #ee8869;">重点关注工单</view>
69
+					<view>
70
+						<view class="taboneconbox">
71
+							<view class="taboneconboxTiT">催单量</view>
72
+							<view class="taboneconboxCon">{{ tableData.urge_num }}</view>
73
+						</view>
74
+						<view class="taboneconbox">
75
+							<view class="taboneconboxTiT">紧急工单量</view>
76
+							<view class="taboneconboxCon">{{ tableData.emergency_num }}</view>
77
+						</view>
78
+						<view class="taboneconbox">
79
+							<view class="taboneconboxTiT">挂起量</view>
80
+							<view class="taboneconboxCon">{{ tableData.hangup_num }}</view>
81
+						</view>
82
+					</view>
83
+				</view>
84
+			</view>
85
+		</view>
86
+		<view class="tabtitle">效率指标</view>
87
+		<view style="margin-top: 15px;margin-bottom: 40px;">
88
+			<view class="tabtwobox">
89
+				<view class="tabonecon" style="padding-top: 20px;height: 100%;">
90
+					<view style="margin-bottom: 25px;">
91
+						<view class="taboneconbox">
92
+							<view class="taboneconboxTiT">工单接单及时率</view>
93
+							<view class="taboneconboxCon">-</view>
94
+						</view>
95
+						<view class="taboneconbox">
96
+							<view class="taboneconboxTiT">工单提交及时率</view>
97
+							<view class="taboneconboxCon">-</view>
98
+						</view>
99
+						<view class="taboneconbox">
100
+							<view class="taboneconboxTiT">无转派工单提交率</view>
101
+							<view class="taboneconboxCon" v-if="tableData.no_transfer_rate">{{ ((tableData.no_transfer_rate) * 100 ).toFixed(2) }}%</view>
102
+							<view class="taboneconboxCon" v-if="!tableData.no_transfer_rate">{{ "0" }}</view>
103
+						</view>
104
+					</view>
105
+					<view class="tabtwoconbox">
106
+						<view class="tabtwotit">普通工单平均接单时长(分)</view>
107
+						<view class="tabtwocon">{{ (tableData.avg_accept_time/60000).toFixed(2) }}</view>
108
+					</view>
109
+					<view class="tabtwoconbox">
110
+						<view class="tabtwotit">紧急工单平均接单时长(分)</view>
111
+						<view class="tabtwocon">{{ (tableData.avg_emergency_accept_time/60000).toFixed(2) }}</view>
112
+					</view>
113
+					<view class="tabtwoconbox">
114
+						<view class="tabtwotit">工单平均提交时长(软件)/分</view>
115
+						<view class="tabtwocon">{{ (tableData.avg_software_complete_time/60000).toFixed(2) }}</view>
116
+					</view>
117
+					<view class="tabtwoconbox">
118
+						<view class="tabtwotit">工单平均提交时长(硬件)/分</view>
119
+						<view class="tabtwocon">{{ (tableData.avg_hardware_complete_time/60000).toFixed(2) }}</view>
120
+					</view>
121
+					<view class="tabtwoconbox">
122
+						<view class="tabtwotit">紧急工单提交平均时长(分)</view>
123
+						<view class="tabtwocon">{{ (tableData.avg_emergency_time/60000).toFixed(2) }}</view>
124
+					</view>
125
+				</view>
126
+			</view>
127
+		</view>
128
+
129
+		<view class="tabtitle">质控指标</view>
130
+		<view style="margin-top: 15px;">
131
+			<view class="tabtwobox">
132
+				<view class="tabonecon" style="padding-top: 20px;height: 100%;">
133
+					<view class="tabtwoconbox">
134
+						<view class="tabtwotit">工单超时接单</view>
135
+						<view class="tabtwocon">{{ tableData.overtime_num }}({{ tableData.overtime_numrate || '0'}}%)</view>
136
+					</view>
137
+					<view class="tabtwoconbox">
138
+						<view class="tabtwotit">工单超时提交</view>
139
+						<view class="tabtwocon">{{ tableData.overtime_complete_num }}({{ tableData.overtime_complete_numrate || '0'}}%)</view>
140
+					</view>
141
+					<view class="tabtwoconbox">
142
+						<view class="tabtwotit">紧急工单超时接单</view>
143
+						<view class="tabtwocon">{{ tableData.emergency_overtime_num }}({{ tableData.emergency_overtime_numrate || '0'}}%)</view>
144
+					</view>
145
+					<view class="tabtwoconbox">
146
+						<view class="tabtwotit">紧急工单超时提交</view>
147
+						<view class="tabtwocon">{{ tableData.emergency_overtime_complete_num }}({{ tableData.emergency_overtime_complete_numrate || '0'}}%)</view>
148
+					</view>
149
+					<view class="tabtwoconbox">
150
+						<view class="tabtwotit">工单不满意</view>
151
+						<view class="tabtwocon">{{ tableData.bmy_num || '0'}}({{ tableData.bmy_numrate || '0'}}%)</view>
152
+					</view>
153
+				</view>
154
+			</view>
155
+		</view>
156
+	</view>
157
+</template>
158
+
159
+<script>
160
+	export default {
161
+		data() {
162
+			return {
163
+				dayTime: "",
164
+				tableData: {}
165
+			}
166
+		},
167
+		onLoad(option) {
168
+			this.getDateTime()
169
+			if(option.stime){
170
+				this.dayTime = option.stime
171
+			}
172
+			this.initReport() //工作量指标
173
+		},
174
+		methods: {
175
+			changeClick(){
176
+				this.initReport()
177
+			},
178
+			initReport(){
179
+				const params = {
180
+					starttime: this.dayTime,
181
+					isdc: 0
182
+				}
183
+				this.$http.get("ZDReport/GetList", params).then((response) => {
184
+					if(response.data && response.data.length>0){
185
+						this.tableData = response.data[0]
186
+					}
187
+				})
188
+			},
189
+			//获取当前日前一天
190
+			getDateTime() {
191
+				// 当前时间
192
+				const currentTime = new Date()
193
+				let y = currentTime.getFullYear()
194
+				let m = currentTime.getMonth() + 1
195
+				let d = currentTime.getDate()
196
+				if (d - 1 < 1) {
197
+					if (m - 1 < 1) {
198
+						y = y - 1
199
+						m = 12
200
+					} else {
201
+						m = m - 1
202
+					}
203
+					d = new Date(y, m, 0).getDate()
204
+				} else {
205
+					d = d - 1
206
+				}
207
+				// 前一天的时间
208
+				const theDayBeforeTime = new Date(y, m - 1, d)
209
+				this.newDate(theDayBeforeTime)
210
+			},
211
+			newDate(time) {
212
+				console.log(time,11)
213
+			    var date = new Date(time)
214
+			    var y = date.getFullYear()
215
+			    var m = date.getMonth() + 1
216
+			    m = m < 10 ? '0' + m : m
217
+			    var d = date.getDate()
218
+			    d = d < 10 ? '0' + d : d
219
+				var resdate = y + '-' + m + '-' + d
220
+				this.dayTime = resdate
221
+			}
222
+		}
223
+	}
224
+</script>
225
+
226
+<style scoped>
227
+	.wrapper {
228
+		padding: 10px 10px;
229
+		background-color: #fff;
230
+		height: 100%;
231
+	}
232
+
233
+	.timebox {
234
+		width: 35%;
235
+		position: absolute;
236
+		right: 10px;
237
+		top: 5px;
238
+	}
239
+
240
+	.tabtitle {
241
+		font-size: 20px;
242
+		font-weight: bold;
243
+	}
244
+
245
+	.tabonebox {
246
+		background-image: url("../../../static/baggreen.png");
247
+		width: 100%;
248
+		height: 140px;
249
+		padding-top: 15px;
250
+	}
251
+
252
+	.taboneboxlast {
253
+		background-image: url("../../../static/bagorange.png") !important;
254
+		width: 100%;
255
+		height: 140px;
256
+		padding-top: 15px;
257
+	}
258
+
259
+	.tabtwobox {
260
+		background-image: url("../../../static/bagbig.png");
261
+		width: 100%;
262
+		height: 300px;
263
+		padding-top: 15px;
264
+	}
265
+
266
+	.tabonecon {
267
+		width: 93%;
268
+		height: 120px;
269
+		margin: 0 auto;
270
+		background-color: #fff;
271
+		border-radius: 12px;
272
+	}
273
+
274
+	.tabonetext {
275
+		width: 35%;
276
+		text-align: center;
277
+		margin: 0 auto;
278
+		background-color: #2e8cf5;
279
+		color: #fffcff;
280
+		padding: 3px;
281
+		border-bottom-left-radius: 5px;
282
+		border-bottom-right-radius: 5px;
283
+		margin-bottom: 25px;
284
+	}
285
+
286
+	.taboneconbox {
287
+		display: inline-block;
288
+		width: 33%;
289
+		text-align: center;
290
+	}
291
+
292
+	.taboneconboxTiT {
293
+		font-size: 12px;
294
+		margin-bottom: 5px;
295
+		color: #333;
296
+	}
297
+
298
+	.taboneconboxCon {
299
+		font-size: 19px;
300
+		font-weight: bold;
301
+	}
302
+
303
+	.tabtwoconbox {
304
+		padding: 0 15px;
305
+		font-weight: bold;
306
+		font-size: 15px;
307
+	}
308
+
309
+	.tabtwotit {
310
+		display: inline-block;
311
+		width: 70%;
312
+		margin-bottom: 30px;
313
+	}
314
+
315
+	.tabtwocon {
316
+		display: inline-block;
317
+		width: 30%;
318
+		text-align: center;
319
+	}
320
+</style>

BIN
CallCenterWeb.UI/RMYYAPP/static/bagbig.png


BIN
CallCenterWeb.UI/RMYYAPP/static/baggreen.png


BIN
CallCenterWeb.UI/RMYYAPP/static/bagorange.png


BIN
CallCenterWeb.UI/RMYYAPP/static/data1.png


BIN
CallCenterWeb.UI/RMYYAPP/unpackage/cache/apk/__UNI__5A5207D_cm.apk


+ 1 - 1
CallCenterWeb.UI/RMYYAPP/unpackage/cache/apk/apkurl

1
-https://ide.dcloud.net.cn/build/download/6db1bbf0-5cff-11ee-b53a-eba4065edcc8
1
+https://ide.dcloud.net.cn/build/download/331a8200-6c91-11ee-a899-9d2438a0c6f8

Разница между файлами не показана из-за своего большого размера
+ 1 - 1
CallCenterWeb.UI/RMYYAPP/unpackage/cache/apk/cmManifestCache.json


Разница между файлами не показана из-за своего большого размера
+ 2 - 2
CallCenterWeb.UI/RMYYAPP/unpackage/cache/wgt/__UNI__5A5207D/app-config-service.js


Разница между файлами не показана из-за своего большого размера
+ 6 - 6
CallCenterWeb.UI/RMYYAPP/unpackage/cache/wgt/__UNI__5A5207D/app-service.js


Разница между файлами не показана из-за своего большого размера
+ 1 - 1
CallCenterWeb.UI/RMYYAPP/unpackage/cache/wgt/__UNI__5A5207D/app-view.js


Разница между файлами не показана из-за своего большого размера
+ 1 - 1
CallCenterWeb.UI/RMYYAPP/unpackage/cache/wgt/__UNI__5A5207D/manifest.json


+ 1 - 1
CallCenterWeb.UI/rmyyechartsNew/src/components/connectionRate.vue

142
 							label: {
142
 							label: {
143
 								show: true,
143
 								show: true,
144
 								color:'#fff',
144
 								color:'#fff',
145
-								formatter: '{b}:{c} ({d}%)'
145
+								formatter: '{b}:{c} \n ({d}%)'
146
 							},
146
 							},
147
 							labelLine: {
147
 							labelLine: {
148
 								normal: {
148
 								normal: {

+ 0 - 1
CallCenterWeb.UI/rmyyechartsNew/src/components/conversationByNow.vue

356
 							}
356
 							}
357
 						},
357
 						},
358
 						symbolSize: function(params) {
358
 						symbolSize: function(params) {
359
-							console.log(params)
360
 							if(params[0] == '113.7026' || params[0] == '113.77377' || params[0] == '113.741594'
359
 							if(params[0] == '113.7026' || params[0] == '113.77377' || params[0] == '113.741594'
361
 							|| params[0] == '113.7226' || params[0] == '113.69035' || params[0] == '113.7396') {
360
 							|| params[0] == '113.7226' || params[0] == '113.69035' || params[0] == '113.7396') {
362
 								return [35, 60]
361
 								return [35, 60]