Browse Source

Merge branch 'master' of http://192.168.1.222:3000/lihai/Synear_UI

miaofuhao 7 years ago
parent
commit
276067f25b

+ 1 - 39
CallCenterWeb.UI/OnDuty/Duty.html

@@ -1,4 +1,4 @@
1
-<!DOCTYPE html>
1
+<!DOCTYPE html>
2 2
 <html>
3 3
 
4 4
 	<head>
@@ -58,10 +58,6 @@
58 58
 									<input class="form-control" type="text" id="settime">
59 59
 								</div>
60 60
 							</li>
61
-							<li>
62
-								坐席组:
63
-								<select id="s_department" class="photo x-color"></select>
64
-							</li>
65 61
 
66 62
 							<li>电话号码:<input class="photo x-color" type="text" id="tel" /></li>
67 63
 							<!--<li>添加时间:<input class="laydate-icon photo x-color " type="text" id="settime" />
@@ -80,9 +76,7 @@
80 76
 						<tr>
81 77
 							<th data-field="state" data-checkbox="true"></th>
82 78
 							<th data-field="F_ZBDH" data-align="center">值班电话</th>
83
-							<th data-field="F_ZXZName" data-align="center">坐席组</th>
84 79
 							<th data-field="F_Remark" data-align="center">说明</th>
85
-							<th data-field="F_CreateBy" data-align="center">添加人</th>
86 80
 							<th data-field="F_CreateTime" data-align="center">添加时间</th>
87 81
 						</tr>
88 82
 					</thead>
@@ -103,12 +97,6 @@
103 97
 				'<input type="text" id="TelNum" class="photo"  />' +
104 98
 				'</div>' +
105 99
 				'<div class="add_time">' +
106
-				'<label for="t_department"><b class="text-danger">*</b>坐席组:</label>' +
107
-				'<select id="t_department" class="photo">' +
108
-				'<option value="">请选择</option>' +
109
-				'</select>' +
110
-				'</div>' +
111
-				'<div class="add_time">' +
112 100
 				'<label for="" class="Pb_sm">说明:</label>' +
113 101
 				'<textarea type="text" id="Pb"></textarea>' +
114 102
 				'</div>' +
@@ -127,7 +115,6 @@
127 115
 					//					min: 0,
128 116
 					theme: '#1ab394',
129 117
 				});
130
-				getDepts($('#s_department')); //坐席组下拉
131 118
 				/*搜索*/
132 119
 				$(".Block").click(function() {
133 120
 					initTable();
@@ -273,18 +260,10 @@
273 260
 					});
274 261
 					return;
275 262
 				}
276
-				if(!$.trim($("#t_department").val())) {
277
-					layer.confirm('请选择坐席组', {
278
-						icon: 2,
279
-						btn: ['确定'] //按钮
280
-					});
281
-					return;
282
-				}
283 263
 				/*发送请求*/
284 264
 				$.post(huayi.config.callcenter_url + "DutyPhone/AddDutyPhone", {
285 265
 					zbid: $("#ID").val(),
286 266
 					telphone: $("#TelNum").val(),
287
-					groupid: $('#t_department').val(),
288 267
 					des: $("#Pb").val(),
289 268
 					token: $.cookie("token")
290 269
 				}, function(result) {
@@ -301,23 +280,6 @@
301 280
 				})
302 281
 			}
303 282
 
304
-			//获取坐席组部门下拉
305
-			function getDepts(el) {
306
-				var dtd = $.Deferred(); //在函数内部,新建一个Deferred对象
307
-				$.getJSON(huayi.config.callcenter_url + "SeatGroup/GetList", {
308
-					token: $.cookie("token"),
309
-				}, function(data) {
310
-					if(data.rows && data.rows.length > 0) {
311
-						el.html('');
312
-						el.append('<option value="">请选择</option>');
313
-						$.each(data.rows, function(i, v) {
314
-							$('<option value="' + v.F_ZXZID + '">' + v.F_ZXZName + '</option>').appendTo(el);
315
-						});
316
-						dtd.resolve(); // 改变Deferred对象的执行状态
317
-					}
318
-				});
319
-				return dtd.promise(); // 返回promise对象
320
-			}
321 283
 		</script>
322 284
 
323 285
 	</body>

+ 4 - 2
CallCenterWeb.UI/Quality/qualityControl.html

@@ -357,7 +357,8 @@
357 357
 					dataType: 'json',
358 358
 					async: true,
359 359
 					data: {
360
-						id: zjID ///通话ID
360
+                        id: zjID,
361
+                        token: $.cookie("token")
361 362
 					},
362 363
 					success: function(data) {
363 364
 						var content = data.data;
@@ -447,7 +448,8 @@
447 448
 							usercode: Usercode,
448 449
 							calltype: Calltype,
449 450
 							starttime: Starttime,
450
-							endtime: Endtime,
451
+                            endtime: Endtime,
452
+                            token: $.cookie("token")
451 453
 						};
452 454
 						return param;
453 455
 					},

+ 167 - 170
CallCenterWeb.UI/Quality/zhibiaoguanli.html

@@ -26,180 +26,177 @@
26 26
 		</style>
27 27
 	</head>
28 28
 
29
-	<body>
30
-		<div class="daoHang clearfix">
31
-			<div class="dhLeft">
32
-				<sapn><i class="syIcon"></i>位置:
33
-					<a href="javaScript:;" id="ReIndex">首页</a>&gt;
34
-					<a href="javaScript:;">质检管理</a>&gt;
35
-					<a href="" style="color: #000;">指标管理</a>
36
-				</sapn>
37
-			</div>
38
-			<div class="dhRight">
39
-				<a href="#" title="刷新"><i class="fa fa-refresh"></i></a>
40
-			</div>
41
-		</div>
42
-		<div class="top clearfix">
43
-			<div class="topCon">
44
-				&nbsp;&nbsp;&nbsp;&nbsp;关键字:
45
-				<input type="text" id="Keys" placeholder="输入指标标题" /> &nbsp;&nbsp;&nbsp;&nbsp;
46
-				<button class="btn sear">搜索</button>
47
-			</div>
48
-		</div>
49
-		<div class='wrap'>
50
-			<div class="tbleft">
51
-				<h4 style="text-align: center;">指标分类</h4>
52
-				<div class="anniu" class="toolbar1">
53
-					<button class="leftAdd btn">增加</button>
54
-					<button class="leftChange btn">修改</button>
55
-					<button class="leftDelete btn">删除</button>
56
-				</div>
57
-				<table id="tb1">
58
-					<thead>
59
-						<tr>
60
-							<th data-field="checkbox" data-align="center" data-formatter="setCode"></th>
61
-							<th data-align="center" data-field="F_ParentId" data-formatter="Type">分类名称</th>
62
-							<th data-align="center" data-field="F_Expand1">分值</th>
63
-						</tr>
64
-					</thead>
65
-					<tbody>
66
-					</tbody>
67
-				</table>
68
-			</div>
69
-			<!--右边/-->
70
-			<div class="tbright">
71
-				<h4 style="text-align: center;">指标列表</h4>
72
-				<div class="anniu" class="toolbar2">
73
-					<button class="rightAdd btn">增加</button>
74
-					<button class="rightChange btn">修改</button>
75
-					<button class="rightDelete btn">删除</button>
76
-					<button class="rightAll btn">所有指标</button>
77
-				</div>
78
-				<table id="tbr">
79
-					<thead>
80
-						<tr>
81
-							<th data-align="center" data-field="id" data-formatter="setCode">编号</th>
82
-							<th data-align="center" data-field="F_CategoryName" data-formatter="Type">指标分类</th>
83
-							<th data-align="center" data-field="F_Title">指标标题</th>
84
-							<th data-align="center" data-field="F_Score">分值</th>
85
-						</tr>
86
-					</thead>
87
-					<tbody>
88
-					</tbody>
89
-				</table>
90
-			</div>
91
-		</div>
92
-		<div class="model">
93
-			<!--右边弹框-->
94
-			<div class="rightBox">
95
-				<div class="btop clearfix">
96
-					<p class="rbtl">&nbsp;&nbsp;<span class="tps" style="color: red;"></span></p>
97
-					<p class="rbtr" title="关闭">X</p>
29
+    <body>
30
+        <div class="daoHang clearfix">
31
+            <div class="dhLeft">
32
+                <sapn>
33
+                    <i class="syIcon"></i>位置:
34
+                    <a href="javaScript:;" id="ReIndex">首页</a>&gt;
35
+                    <a href="javaScript:;">质检管理</a>&gt;
36
+                    <a href="" style="color: #000;">指标管理</a>
37
+                </sapn>
38
+            </div>
39
+            <div class="dhRight">
40
+                <a href="#" title="刷新"><i class="fa fa-refresh"></i></a>
41
+            </div>
42
+        </div>
43
+        <div class="top clearfix">
44
+            <div class="topCon">
45
+                &nbsp;&nbsp;&nbsp;&nbsp;关键字:
46
+                <input type="text" id="Keys" placeholder="输入指标标题" /> &nbsp;&nbsp;&nbsp;&nbsp;
47
+                <button class="btn sear">搜索</button>
48
+            </div>
49
+        </div>
50
+        <div class='wrap'>
51
+            <div class="tbleft">
52
+                <h4 style="text-align: center;">指标分类</h4>
53
+                <div class="anniu" class="toolbar1">
54
+                    <button class="leftAdd btn">增加</button>
55
+                    <button class="leftChange btn">修改</button>
56
+                    <button class="leftDelete btn">删除</button>
57
+                </div>
58
+                <table id="tb1">
59
+                    <thead>
60
+                        <tr>
61
+                            <th data-field="checkbox" data-align="center" data-formatter="setCode"></th>
62
+                            <th data-align="center" data-field="F_ParentId" data-formatter="Type">分类名称</th>
63
+                            <th data-align="center" data-field="F_Expand1">分值</th>
64
+                        </tr>
65
+                    </thead>
66
+                    <tbody></tbody>
67
+                </table>
68
+            </div>
69
+            <!--右边/-->
70
+            <div class="tbright">
71
+                <h4 style="text-align: center;">指标列表</h4>
72
+                <div class="anniu" class="toolbar2">
73
+                    <button class="rightAdd btn">增加</button>
74
+                    <button class="rightChange btn">修改</button>
75
+                    <button class="rightDelete btn">删除</button>
76
+                    <button class="rightAll btn">所有指标</button>
77
+                </div>
78
+                <table id="tbr">
79
+                    <thead>
80
+                        <tr>
81
+                            <th data-align="center" data-field="id" data-formatter="setCode">编号</th>
82
+                            <th data-align="center" data-field="F_CategoryName" data-formatter="Type">指标分类</th>
83
+                            <th data-align="center" data-field="F_Title">指标标题</th>
84
+                            <th data-align="center" data-field="F_Score">分值</th>
85
+                        </tr>
86
+                    </thead>
87
+                    <tbody></tbody>
88
+                </table>
89
+            </div>
90
+        </div>
91
+        <div class="model">
92
+            <!--右边弹框-->
93
+            <div class="rightBox">
94
+                <div class="btop clearfix">
95
+                    <p class="rbtl">&nbsp;&nbsp;<span class="tps" style="color: red;"></span></p>
96
+                    <p class="rbtr" title="关闭">X</p>
98 97
 
99
-				</div>
98
+                </div>
100 99
 
101
-				<div class="sqzx">
102
-					<table id="sqzx" style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
103
-						<tr>
104
-							<th>所属分类:</th>
105
-							<td>
106
-								<div class="inpBox">
107
-									<input type="text" class="inps  inps2 _CategoryName tree" id="clbmname" />
108
-									<input type="hidden" class="inps" id="zrbm" />
109
-									<i class="xl xl_two"></i>
110
-									<b class="de_icon">X</b>
111
-									<div class="addTree">
112
-										<ul id="clbmtree" class="ztree"></ul>
113
-									</div>
114
-								</div>
115
-							</td>
116
-						</tr>
117
-						<tr>
118
-							<th>指标标题:</th>
119
-							<td>
120
-								<div class="inpBox">
121
-									<input type="text" class="inps  inps2 F_Title" />
122
-								</div>
123
-							</td>
124
-						</tr>
125
-						<tr>
126
-							<th>指标描述:</th>
127
-							<td colspan="5">
100
+                <div class="sqzx">
101
+                    <table id="sqzx" style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
102
+                        <tr>
103
+                            <th>所属分类:</th>
104
+                            <td>
105
+                                <div class="inpBox">
106
+                                    <input type="text" class="inps  inps2 _CategoryName tree" id="clbmname" />
107
+                                    <input type="hidden" class="inps" id="zrbm" />
108
+                                    <i class="xl xl_two"></i>
109
+                                    <b class="de_icon">X</b>
110
+                                    <div class="addTree">
111
+                                        <ul id="clbmtree" class="ztree"></ul>
112
+                                    </div>
113
+                                </div>
114
+                            </td>
115
+                        </tr>
116
+                        <tr>
117
+                            <th>指标标题:</th>
118
+                            <td>
119
+                                <div class="inpBox">
120
+                                    <input type="text" class="inps  inps2 F_Title" />
121
+                                </div>
122
+                            </td>
123
+                        </tr>
124
+                        <tr>
125
+                            <th>指标描述:</th>
126
+                            <td colspan="5">
128 127
 
129
-								<textarea name="" rows="3" cols="20" class="F_Remark"></textarea>
128
+                                <textarea name="" rows="3" cols="20" class="F_Remark"></textarea>
130 129
 
131
-							</td>
132
-						</tr>
133
-						<tr>
134
-							<th>指标分值:</th>
135
-							<td>
136
-								<div class="inpBox">
137
-									<input type="text" class="inps  inps2 _Score" />
138
-								</div>
139
-							</td>
140
-						</tr>
141
-						<tr>
142
-							<th>排列序号:</th>
143
-							<td>
144
-								<div class="inpBox">
145
-									<input type="text" class="inps  inps2 _Sort" />
146
-								</div>
147
-							</td>
148
-						</tr>
149
-					</table>
150
-					<div class="btn_">
151
-						<input type="button" value="保存" class="btns" id="xg_btn" />
152
-						<input type="button" value="保存" class="btns" id="add" />
153
-					</div>
154
-				</div>
155
-			</div>
156
-			<!--左边弹框-->
157
-			<div class="leftBox">
158
-				<div class="btop clearfix">
159
-					<p class="rbtl">&nbsp;&nbsp;<span class="tps" style="color: red;"></span></p>
160
-					<p class="rbtr" title="关闭">X</p>
130
+                            </td>
131
+                        </tr>
132
+                        <tr>
133
+                            <th>指标分值:</th>
134
+                            <td>
135
+                                <div class="inpBox">
136
+                                    <input type="text" class="inps  inps2 _Score" />
137
+                                </div>
138
+                            </td>
139
+                        </tr>
140
+                        <tr>
141
+                            <th>排列序号:</th>
142
+                            <td>
143
+                                <div class="inpBox">
144
+                                    <input type="text" class="inps  inps2 _Sort" />
145
+                                </div>
146
+                            </td>
147
+                        </tr>
148
+                    </table>
149
+                    <div class="btn_">
150
+                        <input type="button" value="保存" class="btns" id="xg_btn" />
151
+                        <input type="button" value="保存" class="btns" id="add" />
152
+                    </div>
153
+                </div>
154
+            </div>
155
+            <!--左边弹框-->
156
+            <div class="leftBox">
157
+                <div class="btop clearfix">
158
+                    <p class="rbtl">&nbsp;&nbsp;<span class="tps" style="color: red;"></span></p>
159
+                    <p class="rbtr" title="关闭">X</p>
161 160
 
162
-				</div>
161
+                </div>
163 162
 
164
-				<div class="sqzx">
165
-					<table id="sqzx" style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
166
-						<tr>
167
-							<th>所属分类:</th>
168
-							<td>
169
-								<div class="inpBox">
170
-									<select name="" id="Left_ParentId">
171
-
172
-									</select>
173
-								</div>
174
-							</td>
175
-						</tr>
176
-						<tr>
177
-							<th>分类名称:</th>
178
-							<td>
179
-								<div class="inpBox">
180
-									<input type="text" class="inps  inps2 " id="Left_CategoryName" />
181
-								</div>
182
-							</td>
183
-						</tr>
184
-						<tr>
185
-							<th>排列序号:</th>
186
-							<td>
187
-								<div class="inpBox">
188
-									<input type="text" class="inps  inps2 " id="Left_Sort" />
189
-								</div>
190
-							</td>
191
-						</tr>
192
-					</table>
193
-					<div class="btn_">
194
-						<input type="button" value="保存" class="btns" id="Left_xgbtn" />
195
-						<input type="button" value="保存" class="btns" id="Left_add" />
196
-					</div>
197
-				</div>
198
-			</div>
199
-		</div>
200
-	</body>
201
-	<script src="../js/zTree/jquery.ztree.core.js"></script>
202
-	<script src="../css/laydate/laydate.js"></script>
203
-	<script src="../css/layer/layer.js"></script>
204
-	<script src="../js/Quality/zhibiaoguanli.js"></script>
163
+                <div class="sqzx">
164
+                    <table id="sqzx" style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
165
+                        <tr>
166
+                            <th>所属分类:</th>
167
+                            <td>
168
+                                <div class="inpBox">
169
+                                    <select name="" id="Left_ParentId"></select>
170
+                                </div>
171
+                            </td>
172
+                        </tr>
173
+                        <tr>
174
+                            <th>分类名称:</th>
175
+                            <td>
176
+                                <div class="inpBox">
177
+                                    <input type="text" class="inps  inps2 " id="Left_CategoryName" />
178
+                                </div>
179
+                            </td>
180
+                        </tr>
181
+                        <tr>
182
+                            <th>排列序号:</th>
183
+                            <td>
184
+                                <div class="inpBox">
185
+                                    <input type="text" class="inps  inps2 " id="Left_Sort" />
186
+                                </div>
187
+                            </td>
188
+                        </tr>
189
+                    </table>
190
+                    <div class="btn_">
191
+                        <input type="button" value="保存" class="btns" id="Left_xgbtn" />
192
+                        <input type="button" value="保存" class="btns" id="Left_add" />
193
+                    </div>
194
+                </div>
195
+            </div>
196
+        </div>
197
+        <script src="../js/zTree/jquery.ztree.core.js"></script>
198
+        <script src="../css/laydate/laydate.js"></script>
199
+        <script src="../css/layer/layer.js"></script>
200
+        <script src="../js/Quality/zhibiaoguanli.js"></script>
201
+    </body>
205 202
 </html>

+ 0 - 135
CallCenterWeb.UI/Quality/zj.json

@@ -1,135 +0,0 @@
1
-{
2
-	"state": "success",
3
-	"message": "已质检列表加载成功",
4
-	"total":5,
5
-	"rows": [
6
-	
7
-			{
8
-				"_callnumber": "86023",
9
-				"_filepath": "D:\\1\\0\\20150320\\8001\\1349224.V3",
10
-				"_f_qcstate": 1,
11
-				"_f_qcscore": 3.00,
12
-				"_f_qcquestion": null,
13
-				"_f_qcadvise": null,
14
-				"_calltype": 0,
15
-				"_callstate": 1,
16
-				"_usercode": "8000",
17
-				"_username": "周兰兰",
18
-				"_talkstarttime": "2015-03-20 13:49:23",
19
-				"_talkendtime": "2015-03-20 13:50:17",
20
-				"_talklongtime": 54,
21
-				"_businesstype": 2,
22
-				"_f_qclc": 0,
23
-				"_f_qcdc": 0,
24
-				"_callrecordsid": 4002
25
-			}, {
26
-				"_callnumber": "1004",
27
-				"_filepath": "2015-9-29\\1001_2015_9_29_17_44_47.wav",
28
-				"_f_qcstate": 1,
29
-				"_f_qcscore": 66.00,
30
-				"_f_qcquestion": null,
31
-				"_f_qcadvise": null,
32
-				"_calltype": 0,
33
-				"_callstate": 1,
34
-				"_usercode": "8000",
35
-				"_username": "系统管理",
36
-				"_talkstarttime": "2015-09-29 17:44:05",
37
-				"_talkendtime": "2015-09-29 17:44:23",
38
-				"_talklongtime": 18,
39
-				"_businesstype": null,
40
-				"_f_qclc": 0,
41
-				"_f_qcdc": 0,
42
-				"_callrecordsid": 4200
43
-			}, {
44
-				"_callnumber": "1004",
45
-				"_filepath": "2015-11-10\\1001_2015_11_10_9_46_23.wav",
46
-				"_f_qcstate": 1,
47
-				"_f_qcscore": 81.00,
48
-				"_f_qcquestion": null,
49
-				"_f_qcadvise": null,
50
-				"_calltype": 0,
51
-				"_callstate": 1,
52
-				"_usercode": "8000",
53
-				"_username": "系统管理",
54
-				"_talkstarttime": "2015-11-10 09:45:15",
55
-				"_talkendtime": "2015-11-10 09:45:31",
56
-				"_talklongtime": 16,
57
-				"_businesstype": null,
58
-				"_f_qclc": 0,
59
-				"_f_qcdc": 0,
60
-				"_callrecordsid": 4213
61
-			}, {
62
-				"_callnumber": "1004",
63
-				"_filepath": "2015-11-10\\1001_2015_11_10_9_49_11.wav",
64
-				"_f_qcstate": 1,
65
-				"_f_qcscore": 32.00,
66
-				"_f_qcquestion": null,
67
-				"_f_qcadvise": null,
68
-				"_calltype": 0,
69
-				"_callstate": 1,
70
-				"_usercode": "8000",
71
-				"_username": "系统管理",
72
-				"_talkstarttime": "2015-11-10 09:48:03",
73
-				"_talkendtime": "2015-11-10 09:48:21",
74
-				"_talklongtime": 18,
75
-				"_businesstype": null,
76
-				"_f_qclc": 0,
77
-				"_f_qcdc": 0,
78
-				"_callrecordsid": 4214
79
-			}, {
80
-				"_callnumber": "1004",
81
-				"_filepath": "2015-11-10\\1001_2015_11_10_10_28_18.wav",
82
-				"_f_qcstate": 1,
83
-				"_f_qcscore": 32.00,
84
-				"_f_qcquestion": null,
85
-				"_f_qcadvise": null,
86
-				"_calltype": 0,
87
-				"_callstate": 1,
88
-				"_usercode": "8000",
89
-				"_username": "系统管理",
90
-				"_talkstarttime": "2015-11-10 10:27:10",
91
-				"_talkendtime": "2015-11-10 10:31:35",
92
-				"_talklongtime": 265,
93
-				"_businesstype": null,
94
-				"_f_qclc": 0,
95
-				"_f_qcdc": 0,
96
-				"_callrecordsid": 4217
97
-			}, {
98
-				"_callnumber": "18530078167",
99
-				"_filepath": "D:\\midware\\record\\20170323\\1005\\1171_1005_162105.wav",
100
-				"_f_qcstate": 1,
101
-				"_f_qcscore": 61.00,
102
-				"_f_qcquestion": "问题问题问题问题问题2",
103
-				"_f_qcadvise": "建议建议建议建议1",
104
-				"_calltype": 0,
105
-				"_callstate": 1,
106
-				"_usercode": "8000",
107
-				"_username": null,
108
-				"_talkstarttime": null,
109
-				"_talkendtime": null,
110
-				"_talklongtime": null,
111
-				"_businesstype": null,
112
-				"_f_qclc": 0,
113
-				"_f_qcdc": 0,
114
-				"_callrecordsid": 5478
115
-			}, {
116
-				"_callnumber": "18530929885",
117
-				"_filepath": "D:\\midware\\record\\20170323\\1005\\1172_1005_162302.wav",
118
-				"_f_qcstate": 1,
119
-				"_f_qcscore": 19.00,
120
-				"_f_qcquestion": "问题问题问题问题4",
121
-				"_f_qcadvise": "建议建议建议建议3",
122
-				"_calltype": 0,
123
-				"_callstate": 1,
124
-				"_usercode": "8000",
125
-				"_username": null,
126
-				"_talkstarttime": null,
127
-				"_talkendtime": null,
128
-				"_talklongtime": null,
129
-				"_businesstype": null,
130
-				"_f_qclc": 0,
131
-				"_f_qcdc": 0,
132
-				"_callrecordsid": 5479
133
-			}
134
-		]
135
-}

+ 4 - 2
CallCenterWeb.UI/Quality/zjpf.html

@@ -381,7 +381,8 @@
381 381
 					dataType: 'json',
382 382
 					async: true,
383 383
 					data: {
384
-						id: zjID ///通话ID
384
+                        id: zjID,
385
+                        token: $.cookie("token")
385 386
 					},
386 387
 					success: function(data) {
387 388
 						var content = data.data;
@@ -505,7 +506,8 @@
505 506
 							usercode: Usercode,
506 507
 							calltype: Calltype,
507 508
 							starttime: Starttime,
508
-							endtime: Endtime,
509
+                            endtime: Endtime,
510
+                            token: $.cookie("token")
509 511
 						};
510 512
 						return param;
511 513
 					},

+ 0 - 93
CallCenterWeb.UI/Quality/zjxq.json

@@ -1,93 +0,0 @@
1
-{
2
-	"state": "success",
3
-	"message": "质检部分加载成功",
4
-	"data": {
5
-		"Qcid": "0",
6
-		"Qcname": "总计",
7
-		"Qcscore": "30",
8
-		"Qcpf": "23",
9
-		"Qclist": [
10
-			{
11
-				"Qcid": "9",
12
-				"Qcname": "在线处理",
13
-				"Qcscore": "30",
14
-				"Qcpf": "23",
15
-				"Qclist": [
16
-					{
17
-						"Qcid": "9-10",
18
-						"Qcname": "业务知识",
19
-						"Qcscore": null,
20
-						"Qcpf": null,
21
-						"Qclist": [
22
-							{
23
-								"Qcid": "9-10-20",
24
-								"Qcname": "业务熟练",
25
-								"Qcscore": "5",
26
-								"Qcpf": "5",
27
-								"Qclist": null,
28
-								"Rowspan": "0",
29
-								"Colspan": "0"
30
-							}, {
31
-								"Qcid": "9-10-10",
32
-								"Qcname": "业务熟练",
33
-								"Qcscore": "2",
34
-								"Qcpf": "3",
35
-								"Qclist": null,
36
-								"Rowspan": "0",
37
-								"Colspan": "0"
38
-							}, {
39
-								"Qcid": "9-10-21",
40
-								"Qcname": "处理问题灵活性",
41
-								"Qcscore": "5",
42
-								"Qcpf": "5",
43
-								"Qclist": null,
44
-								"Rowspan": "0",
45
-								"Colspan": "0"
46
-							}, {
47
-								"Qcid": "9-10-23",
48
-								"Qcname": "一次性处理",
49
-								"Qcscore": "5",
50
-								"Qcpf": "5",
51
-								"Qclist": null,
52
-								"Rowspan": "0",
53
-								"Colspan": "0"
54
-							}, {
55
-								"Qcid": "9-10-30",
56
-								"Qcname": "11",
57
-								"Qcscore": "11",
58
-								"Qcpf": "0",
59
-								"Qclist": null,
60
-								"Rowspan": "0",
61
-								"Colspan": "0"
62
-							}
63
-						],
64
-						"Rowspan": "5",
65
-						"Colspan": null
66
-					}, {
67
-						"Qcid": "9-11",
68
-						"Qcname": "业务流程",
69
-						"Qcscore": null,
70
-						"Qcpf": null,
71
-						"Qclist": [
72
-							{
73
-								"Qcid": "9-11-26",
74
-								"Qcname": "等待时长",
75
-								"Qcscore": "2",
76
-								"Qcpf": "5",
77
-								"Qclist": null,
78
-								"Rowspan": "0",
79
-								"Colspan": "0"
80
-							}
81
-						],
82
-						"Rowspan": "1",
83
-						"Colspan": null
84
-					}
85
-				],
86
-				"Rowspan": "6",
87
-				"Colspan": "2"
88
-			}
89
-		],
90
-		"Rowspan": null,
91
-		"Colspan": "3"
92
-	}
93
-}