Procházet zdrojové kódy

安阳工单新增纪委模块

miaofuhao %!s(int64=2) %!d(string=před) roky
rodič
revize
18e432135f

+ 1 - 1
WebUI/CallCenterWeb.UI/CommonHtml/Timesq.html

@@ -18,7 +18,7 @@
18 18
 	                        <!--<option value="0">选择</option>-->
19 19
 	                        <option value="1">一天</option>
20 20
 	                        <option value="3">三天</option>
21
-	                        <option value="5">五天</option>
21
+	                        <option value="5" selected="true">五天</option>
22 22
 	                        <!-- <option value="7">七天</option> -->
23 23
 	                    </select>
24 24
                     </td>

+ 120 - 0
WebUI/CallCenterWeb.UI/ReportForm/css/reportCommon.css

@@ -0,0 +1,120 @@
1
+table td {
2
+	word-break: break-all;
3
+	word-wrap: break-word;
4
+}
5
+
6
+.Shows {
7
+	display: block !important;
8
+}
9
+
10
+.complain {
11
+	display: none;
12
+}
13
+
14
+.toolLeft input {
15
+	width: 200px;
16
+}
17
+
18
+th {
19
+	padding: 5px;
20
+	text-align: center;
21
+}
22
+
23
+td {
24
+	padding: 5px;
25
+}
26
+
27
+.Borders {
28
+	border: 1px solid #d7d7d7;
29
+}
30
+
31
+.daoHang {
32
+	margin-bottom: 15px;
33
+}
34
+
35
+
36
+/*树形下拉样式开始*/
37
+
38
+.inpBox {
39
+	border: 1px solid #e5e6e7;
40
+	height: 32px;
41
+	width: 200px;
42
+	display: inline-block;
43
+	position: relative;
44
+	vertical-align: middle;
45
+}
46
+
47
+.inpBox .inps1 {
48
+	width: 100%;
49
+	height: 30px;
50
+	outline: none;
51
+	border: 0;
52
+	border-image-width: 0;
53
+	padding: 0;
54
+	padding-left: 3px;
55
+}
56
+
57
+.xl_two {
58
+	display: inline-block;
59
+	background: url(../../img/dropDown.png) no-repeat;
60
+	height: 100%;
61
+	background-position: center center;
62
+	width: 20px;
63
+	position: absolute;
64
+	right: 0;
65
+	top: 0px;
66
+	background-color: #f7bc8b;
67
+	cursor: pointer;
68
+}
69
+
70
+.xl_two:hover {
71
+	background-color: #e6d523;
72
+}
73
+
74
+.xlAdd_two {
75
+	background: #fff;
76
+	position: absolute;
77
+	width: 100%;
78
+	border: 1px solid darkgrey;
79
+	right: 0;
80
+	top: 30px;
81
+	display: none;
82
+	height: 350px;
83
+	overflow-y: auto;
84
+	z-index: 10;
85
+	text-align: center;
86
+}
87
+
88
+.xlAdd_two .list li:hover {
89
+	background: #ebebeb;
90
+	color: #717171;
91
+}
92
+
93
+
94
+/*树形下拉样式结束*/
95
+
96
+.Content_box .title {
97
+	font-size: 24px;
98
+	text-align: center;
99
+}
100
+
101
+.Content_box h5 {
102
+	font-size: 16px;
103
+	text-align: center;
104
+}
105
+
106
+.select {
107
+	width: 200px;
108
+	height: 32px;
109
+	border: 1px solid rgb(229, 230, 231);
110
+}
111
+
112
+.footerDataStatistics {
113
+	/* padding: 0 0 0 20px; */
114
+	margin: 10px 0 0 10px;
115
+	font-size: 18px;
116
+}
117
+
118
+.tables .th-inner {
119
+	white-space: normal !important;
120
+}

+ 114 - 0
WebUI/CallCenterWeb.UI/ReportForm/js/reportCommon.js

@@ -0,0 +1,114 @@
1
+var setting
2
+// 树形下拉开始
3
+function bindtree() {
4
+	$.getJSON(
5
+		huayi.config.callcenter_url + treeInputParam.treeApi, {
6
+			token: $.cookie("token")
7
+		},
8
+		function(result) {
9
+			if(result.state.toLowerCase() == "success") {
10
+				$.fn.zTree.init($(treeInputParam.treeId), setting, result.data);
11
+			}
12
+		}
13
+	);
14
+}
15
+$(document).ready(function () {
16
+	$(treeInputParam.classInps).focus(function() {
17
+		$(this).siblings(treeInputParam.classAddTree).css("display", "block");
18
+	});
19
+	
20
+	$(treeInputParam.classXl).click(function() {
21
+		var xl = $(this).siblings(treeInputParam.classXl);
22
+		if(xl.css("display") == "block") {
23
+			xl.css("display", "none");
24
+		} else {
25
+			xl.css("display", "block");
26
+		}
27
+	});
28
+	$(treeInputParam.classAddTree).mouseleave(function() {
29
+		$(this).css("display", "none");
30
+	});
31
+	//获取所属部门
32
+	setting = {
33
+		data: {
34
+			key: {
35
+				name: treeInputParam.treeObj.name,
36
+			},
37
+			simpleData: {
38
+				enable: true,
39
+				idKey: treeInputParam.treeObj.id,
40
+				pIdKey: treeInputParam.treeObj.pid,
41
+				rootPId: -1,
42
+			},
43
+		},
44
+		callback: {
45
+			onClick: treeInputParam.treeObj.onclick,
46
+		},
47
+	};
48
+	
49
+})
50
+
51
+function zTreeOnClick(event, treeId, treeNode) {
52
+	$(treeInputParam.classInps).val(treeNode[treeInputParam.treeObj.name]);
53
+	$(treeInputParam.classId).val(treeNode[treeInputParam.treeObj.id]);
54
+}
55
+
56
+//		树形下拉结束
57
+
58
+//		下拉框
59
+function selectCommon(obj) {
60
+	var resultParam
61
+	var dataParam = {
62
+		token: $.cookie("token")
63
+	}
64
+	if(obj.dataParam) {
65
+		resultParam = Object.assign(dataParam, obj.dataParam)
66
+	} else {
67
+		resultParam = dataParam
68
+	}
69
+	$(obj.id).empty();
70
+	$(obj.id).append(
71
+		'<option selected="selected" value="">请选择</option>'
72
+	);
73
+	$.getJSON(
74
+		huayi.config.callcenter_url +
75
+		obj.apiUrl, resultParam,
76
+		function(data) {
77
+			if(data.state.toLowerCase() == "success") {
78
+				var content = data.data;
79
+				$(content).each(function(i, n) {
80
+					$(
81
+						"<option value='" +
82
+						n.F_ValueId +
83
+						"'>" +
84
+						n.F_Value +
85
+						"</option>"
86
+					).appendTo($(obj.id));
87
+				});
88
+			}
89
+		}
90
+	);
91
+}
92
+//下拉框结束
93
+// 导出列表
94
+function exportFileFun(api, params) {
95
+	var url = huayi.config.callcenter_url + api;
96
+	if(typeof(params) !== "object") {
97
+		return
98
+	}
99
+	delete params.page
100
+	delete params.pagesize
101
+	delete params.pageindex
102
+	Object.keys(params).forEach(function(key, index) {
103
+		if(!params[key]) {
104
+			params[key] = ""
105
+		}
106
+		if(index === 0) {
107
+			url += `?${key}=${params[key]}`
108
+		} else {
109
+			url += `&${key}=${params[key]}`
110
+		}
111
+	})
112
+	window.location.href = url;
113
+}
114
+//导出列表结束

+ 166 - 0
WebUI/CallCenterWeb.UI/ReportForm/reportAnswer.html

@@ -0,0 +1,166 @@
1
+<!DOCTYPE html>
2
+<html>
3
+
4
+<head>
5
+    <meta charset="UTF-8">
6
+    <title>数据统计</title>
7
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
8
+    <script src="../Script/Common/huayi.load.js"></script>
9
+    <script src="../Script/Common/huayi.config.js"></script>
10
+    <link href="../css/WorkOrder/Search.css" rel="stylesheet">
11
+    <link href="../css/init.css" rel="stylesheet" />
12
+    <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
13
+    <link rel="stylesheet" href="./css/reportCommon.css" />
14
+    <script src="../js/laydate/laydate.js"></script>
15
+    <script src="../js/zTree/jquery.ztree.core.js"></script>
16
+    
17
+</head>
18
+
19
+<body class="gray-bg">
20
+    <div class="wrapper wrapper-content animated fadeInRight">
21
+        <div class="daoHang clearfix">
22
+            <div class="dhLeft">
23
+                <sapn>
24
+                    <i class="syIcon"></i>位置:
25
+                    <a href="javaScript:;" id="ReIndex">首页</a>&gt;
26
+                    <a href="javaScript:;">报表管理</a>&gt;
27
+                    <a href="" class="nowPosition">有效来电接听情况统计表</a>
28
+                </sapn>
29
+            </div>
30
+            <div class="dhRight">
31
+                <a href="" title="刷新"><i class="fa fa-refresh"></i></a>
32
+            </div>
33
+        </div>
34
+
35
+        <div class="Content_box">
36
+            <div class="complain Shows">
37
+                <div class="toolBar clearfix">
38
+                    <div class="toolLeft">
39
+                   		 开始日期:
40
+                        <input class="photo x-color inputs laydate-icon" type="text" id="squeryTime" autocomplete="off" />
41
+                        	结束时间:
42
+                        <input class="photo x-color inputs laydate-icon" type="text" id="equeryTime" autocomplete="off" />
43
+                        	部门:
44
+                        <div class="inpBox">
45
+                            <input class="inps inps1">
46
+                            <input type="hidden" id="deptid" />
47
+                            <i class="xl xl_two"></i>
48
+                            <div class="addTree xlAdd_two">
49
+                                <ul id="deptTree" class="ztree"></ul>
50
+                            </div>
51
+                        </div>
52
+                        	来源:
53
+                        <select class="select" id="source"></select>
54
+                        <button class="btns search_1">查询</button>
55
+                        <a class="btns" id="exportPublicSentiments">导出</a>
56
+                    </div>
57
+                </div>
58
+                <div style="width: 100%;padding: 10px;">
59
+                    <table id="reportlist" class="tables" data-row-style="rowStyle" data-query-params="queryParams">
60
+                    </table>
61
+                </div>
62
+                <div class="footerDataStatistics">统计时段:00:00—23:59:59</div>
63
+            </div>
64
+        </div>
65
+    </div>
66
+    <script src="./js/reportCommon.js"></script>
67
+    <script>
68
+    	var exportParams = {}
69
+    	var tableColumns = [
70
+    		{ title: '序号', align: 'center',
71
+			  formatter: function(value, row, index) {
72
+				return index+1
73
+			  }
74
+			},
75
+			{ field: 'deptname', title: '联动单位', align: 'center'},
76
+			{ field: 'Undertakers', title: '承办件', align: 'center'},
77
+			{ field: 'Undertakersrate', title: '承办率', align: 'center'},
78
+			{ field: 'Undertakersscore', title: '得分(5分)', align: 'center'},
79
+			{ field: 'signfor', title: '及时签收件', align: 'center'},
80
+			{ field: 'signforrate', title: '及时签收率', align: 'center'},
81
+		 	
82
+		]
83
+    	var treeInputParam = {
84
+    		classInps:'.inps',
85
+    		classId:'#deptid',
86
+    		treeApi:'Department/GetDeptList',
87
+    		classAddTree:'.addTree',
88
+    		classXl:'.xl',
89
+    		treeId:'#deptTree',
90
+    		treeObj:{
91
+    			name:'F_DeptName', 
92
+    			id:'F_DeptId',
93
+    			pid:'F_PartentId',
94
+    			onclick:zTreeOnClick
95
+    		}
96
+    	}
97
+    	var selectParam = {
98
+    		id:"#source",
99
+    		apiUrl:"Dictionary/GetDicValueListById",
100
+    		dataParam:{
101
+    			id:1
102
+    		}
103
+    	}
104
+        $(document).ready(function () {
105
+            laydate.render({
106
+                elem: '#squeryTime',
107
+                theme: '#00a1cb',
108
+                type: 'datetime',
109
+            });
110
+            laydate.render({
111
+                elem: '#equeryTime',
112
+                theme: '#00a1cb',
113
+                type: 'datetime',
114
+            });
115
+            initTable();
116
+            bindtree();
117
+        	selectCommon(selectParam);
118
+        });
119
+        //搜索
120
+        $(".search_1").click(function () {
121
+            initTable();
122
+        });
123
+        //导出
124
+        $('#exportPublicSentiments').click(function () {
125
+            exportParams.isdc = true
126
+        	exportFileFun('DataAssessment/GetExamine',exportParams)
127
+        });
128
+        
129
+        //表格
130
+        function initTable() {
131
+        	var dataParams = {
132
+                starttime: $('#squeryTime').val(),
133
+                endtime: $('#equeryTime').val(),
134
+                deptid: $("#deptid").val(),
135
+                source: $("#source").val(),
136
+                token: $.cookie("token")
137
+            }
138
+        	exportParams = dataParams
139
+            $.ajax({
140
+                url: huayi.config.callcenter_url + 'DataAssessment/GetExamine',
141
+                type: 'get',
142
+                data: dataParams,
143
+                dataType: "json",
144
+                async: true,
145
+                success: function (returnValue) {
146
+                    //异步获取数据
147
+                    //debugger;
148
+                    var resultData = returnValue.rows;
149
+
150
+                    $('#reportlist').bootstrapTable('load', resultData);
151
+                }
152
+            });
153
+
154
+            $('#reportlist').bootstrapTable('destroy').bootstrapTable({
155
+                striped: true,
156
+                pagination: false,
157
+                columns:tableColumns
158
+            });
159
+        }
160
+        
161
+        
162
+    </script>
163
+    
164
+</body>
165
+
166
+</html>

+ 166 - 0
WebUI/CallCenterWeb.UI/ReportForm/reportApplication.html

@@ -0,0 +1,166 @@
1
+<!DOCTYPE html>
2
+<html>
3
+
4
+<head>
5
+    <meta charset="UTF-8">
6
+    <title>数据统计</title>
7
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
8
+    <script src="../Script/Common/huayi.load.js"></script>
9
+    <script src="../Script/Common/huayi.config.js"></script>
10
+    <link href="../css/WorkOrder/Search.css" rel="stylesheet">
11
+    <link href="../css/init.css" rel="stylesheet" />
12
+    <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
13
+    <link rel="stylesheet" href="./css/reportCommon.css" />
14
+    <script src="../js/laydate/laydate.js"></script>
15
+    <script src="../js/zTree/jquery.ztree.core.js"></script>
16
+    
17
+</head>
18
+
19
+<body class="gray-bg">
20
+    <div class="wrapper wrapper-content animated fadeInRight">
21
+        <div class="daoHang clearfix">
22
+            <div class="dhLeft">
23
+                <sapn>
24
+                    <i class="syIcon"></i>位置:
25
+                    <a href="javaScript:;" id="ReIndex">首页</a>&gt;
26
+                    <a href="javaScript:;">报表管理</a>&gt;
27
+                    <a href="" class="nowPosition">工单办理情况统计表</a>
28
+                </sapn>
29
+            </div>
30
+            <div class="dhRight">
31
+                <a href="" title="刷新"><i class="fa fa-refresh"></i></a>
32
+            </div>
33
+        </div>
34
+
35
+        <div class="Content_box">
36
+            <div class="complain Shows">
37
+                <div class="toolBar clearfix">
38
+                    <div class="toolLeft">
39
+                   		 开始日期:
40
+                        <input class="photo x-color inputs laydate-icon" type="text" id="squeryTime" autocomplete="off" />
41
+                        	结束时间:
42
+                        <input class="photo x-color inputs laydate-icon" type="text" id="equeryTime" autocomplete="off" />
43
+                        	部门:
44
+                        <div class="inpBox">
45
+                            <input class="inps inps1">
46
+                            <input type="hidden" id="deptid" />
47
+                            <i class="xl xl_two"></i>
48
+                            <div class="addTree xlAdd_two">
49
+                                <ul id="deptTree" class="ztree"></ul>
50
+                            </div>
51
+                        </div>
52
+                        	来源:
53
+                        <select class="select" id="source"></select>
54
+                        <button class="btns search_1">查询</button>
55
+                        <a class="btns" id="exportPublicSentiments">导出</a>
56
+                    </div>
57
+                </div>
58
+                <div style="width: 100%;padding: 10px;">
59
+                    <table id="reportlist" class="tables" data-row-style="rowStyle" data-query-params="queryParams">
60
+                    </table>
61
+                </div>
62
+                <div class="footerDataStatistics">统计时段:00:00—23:59:59</div>
63
+            </div>
64
+        </div>
65
+    </div>
66
+    <script src="./js/reportCommon.js"></script>
67
+    <script>
68
+    	var exportParams = {}
69
+    	var tableColumns = [
70
+    		{ title: '序号', align: 'center',
71
+			  formatter: function(value, row, index) {
72
+				return index+1
73
+			  }
74
+			},
75
+			{ field: 'deptname', title: '联动单位', align: 'center'},
76
+			{ field: 'Undertakers', title: '承办件', align: 'center'},
77
+			{ field: 'Undertakersrate', title: '承办率', align: 'center'},
78
+			{ field: 'Undertakersscore', title: '得分(5分)', align: 'center'},
79
+			{ field: 'signfor', title: '及时签收件', align: 'center'},
80
+			{ field: 'signforrate', title: '及时签收率', align: 'center'},
81
+		 	
82
+		]
83
+    	var treeInputParam = {
84
+    		classInps:'.inps',
85
+    		classId:'#deptid',
86
+    		treeApi:'Department/GetDeptList',
87
+    		classAddTree:'.addTree',
88
+    		classXl:'.xl',
89
+    		treeId:'#deptTree',
90
+    		treeObj:{
91
+    			name:'F_DeptName', 
92
+    			id:'F_DeptId',
93
+    			pid:'F_PartentId',
94
+    			onclick:zTreeOnClick
95
+    		}
96
+    	}
97
+    	var selectParam = {
98
+    		id:"#source",
99
+    		apiUrl:"Dictionary/GetDicValueListById",
100
+    		dataParam:{
101
+    			id:1
102
+    		}
103
+    	}
104
+        $(document).ready(function () {
105
+            laydate.render({
106
+                elem: '#squeryTime',
107
+                theme: '#00a1cb',
108
+                type: 'datetime',
109
+            });
110
+            laydate.render({
111
+                elem: '#equeryTime',
112
+                theme: '#00a1cb',
113
+                type: 'datetime',
114
+            });
115
+            initTable();
116
+            bindtree();
117
+        	selectCommon(selectParam);
118
+        });
119
+        //搜索
120
+        $(".search_1").click(function () {
121
+            initTable();
122
+        });
123
+        //导出
124
+        $('#exportPublicSentiments').click(function () {
125
+            exportParams.isdc = true
126
+        	exportFileFun('DataAssessment/GetExamine',exportParams)
127
+        });
128
+        
129
+        //表格
130
+        function initTable() {
131
+        	var dataParams = {
132
+                starttime: $('#squeryTime').val(),
133
+                endtime: $('#equeryTime').val(),
134
+                deptid: $("#deptid").val(),
135
+                source: $("#source").val(),
136
+                token: $.cookie("token")
137
+            }
138
+        	exportParams = dataParams
139
+            $.ajax({
140
+                url: huayi.config.callcenter_url + 'DataAssessment/GetExamine',
141
+                type: 'get',
142
+                data: dataParams,
143
+                dataType: "json",
144
+                async: true,
145
+                success: function (returnValue) {
146
+                    //异步获取数据
147
+                    //debugger;
148
+                    var resultData = returnValue.rows;
149
+
150
+                    $('#reportlist').bootstrapTable('load', resultData);
151
+                }
152
+            });
153
+
154
+            $('#reportlist').bootstrapTable('destroy').bootstrapTable({
155
+                striped: true,
156
+                pagination: false,
157
+                columns:tableColumns
158
+            });
159
+        }
160
+        
161
+        
162
+    </script>
163
+    
164
+</body>
165
+
166
+</html>

+ 166 - 0
WebUI/CallCenterWeb.UI/ReportForm/reportComprehensive.html

@@ -0,0 +1,166 @@
1
+<!DOCTYPE html>
2
+<html>
3
+
4
+<head>
5
+    <meta charset="UTF-8">
6
+    <title>数据统计</title>
7
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
8
+    <script src="../Script/Common/huayi.load.js"></script>
9
+    <script src="../Script/Common/huayi.config.js"></script>
10
+    <link href="../css/WorkOrder/Search.css" rel="stylesheet">
11
+    <link href="../css/init.css" rel="stylesheet" />
12
+    <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
13
+    <link rel="stylesheet" href="./css/reportCommon.css" />
14
+    <script src="../js/laydate/laydate.js"></script>
15
+    <script src="../js/zTree/jquery.ztree.core.js"></script>
16
+    
17
+</head>
18
+
19
+<body class="gray-bg">
20
+    <div class="wrapper wrapper-content animated fadeInRight">
21
+        <div class="daoHang clearfix">
22
+            <div class="dhLeft">
23
+                <sapn>
24
+                    <i class="syIcon"></i>位置:
25
+                    <a href="javaScript:;" id="ReIndex">首页</a>&gt;
26
+                    <a href="javaScript:;">报表管理</a>&gt;
27
+                    <a href="" class="nowPosition">综合统计简报</a>
28
+                </sapn>
29
+            </div>
30
+            <div class="dhRight">
31
+                <a href="" title="刷新"><i class="fa fa-refresh"></i></a>
32
+            </div>
33
+        </div>
34
+
35
+        <div class="Content_box">
36
+            <div class="complain Shows">
37
+                <div class="toolBar clearfix">
38
+                    <div class="toolLeft">
39
+                   		 开始日期:
40
+                        <input class="photo x-color inputs laydate-icon" type="text" id="squeryTime" autocomplete="off" />
41
+                        	结束时间:
42
+                        <input class="photo x-color inputs laydate-icon" type="text" id="equeryTime" autocomplete="off" />
43
+                        	部门:
44
+                        <div class="inpBox">
45
+                            <input class="inps inps1">
46
+                            <input type="hidden" id="deptid" />
47
+                            <i class="xl xl_two"></i>
48
+                            <div class="addTree xlAdd_two">
49
+                                <ul id="deptTree" class="ztree"></ul>
50
+                            </div>
51
+                        </div>
52
+                        	来源:
53
+                        <select class="select" id="source"></select>
54
+                        <button class="btns search_1">查询</button>
55
+                        <a class="btns" id="exportPublicSentiments">导出</a>
56
+                    </div>
57
+                </div>
58
+                <div style="width: 100%;padding: 10px;">
59
+                    <table id="reportlist" class="tables" data-row-style="rowStyle" data-query-params="queryParams">
60
+                    </table>
61
+                </div>
62
+                <div class="footerDataStatistics">统计时段:00:00—23:59:59</div>
63
+            </div>
64
+        </div>
65
+    </div>
66
+    <script src="./js/reportCommon.js"></script>
67
+    <script>
68
+    	var exportParams = {}
69
+    	var tableColumns = [
70
+    		{ title: '序号', align: 'center',
71
+			  formatter: function(value, row, index) {
72
+				return index+1
73
+			  }
74
+			},
75
+			{ field: 'deptname', title: '联动单位', align: 'center'},
76
+			{ field: 'Undertakers', title: '承办件', align: 'center'},
77
+			{ field: 'Undertakersrate', title: '承办率', align: 'center'},
78
+			{ field: 'Undertakersscore', title: '得分(5分)', align: 'center'},
79
+			{ field: 'signfor', title: '及时签收件', align: 'center'},
80
+			{ field: 'signforrate', title: '及时签收率', align: 'center'},
81
+		 	
82
+		]
83
+    	var treeInputParam = {
84
+    		classInps:'.inps',
85
+    		classId:'#deptid',
86
+    		treeApi:'Department/GetDeptList',
87
+    		classAddTree:'.addTree',
88
+    		classXl:'.xl',
89
+    		treeId:'#deptTree',
90
+    		treeObj:{
91
+    			name:'F_DeptName', 
92
+    			id:'F_DeptId',
93
+    			pid:'F_PartentId',
94
+    			onclick:zTreeOnClick
95
+    		}
96
+    	}
97
+    	var selectParam = {
98
+    		id:"#source",
99
+    		apiUrl:"Dictionary/GetDicValueListById",
100
+    		dataParam:{
101
+    			id:1
102
+    		}
103
+    	}
104
+        $(document).ready(function () {
105
+            laydate.render({
106
+                elem: '#squeryTime',
107
+                theme: '#00a1cb',
108
+                type: 'datetime',
109
+            });
110
+            laydate.render({
111
+                elem: '#equeryTime',
112
+                theme: '#00a1cb',
113
+                type: 'datetime',
114
+            });
115
+            initTable();
116
+            bindtree();
117
+        	selectCommon(selectParam);
118
+        });
119
+        //搜索
120
+        $(".search_1").click(function () {
121
+            initTable();
122
+        });
123
+        //导出
124
+        $('#exportPublicSentiments').click(function () {
125
+            exportParams.isdc = true
126
+        	exportFileFun('DataAssessment/GetExamine',exportParams)
127
+        });
128
+        
129
+        //表格
130
+        function initTable() {
131
+        	var dataParams = {
132
+                starttime: $('#squeryTime').val(),
133
+                endtime: $('#equeryTime').val(),
134
+                deptid: $("#deptid").val(),
135
+                source: $("#source").val(),
136
+                token: $.cookie("token")
137
+            }
138
+        	exportParams = dataParams
139
+            $.ajax({
140
+                url: huayi.config.callcenter_url + 'DataAssessment/GetExamine',
141
+                type: 'get',
142
+                data: dataParams,
143
+                dataType: "json",
144
+                async: true,
145
+                success: function (returnValue) {
146
+                    //异步获取数据
147
+                    //debugger;
148
+                    var resultData = returnValue.rows;
149
+
150
+                    $('#reportlist').bootstrapTable('load', resultData);
151
+                }
152
+            });
153
+
154
+            $('#reportlist').bootstrapTable('destroy').bootstrapTable({
155
+                striped: true,
156
+                pagination: false,
157
+                columns:tableColumns
158
+            });
159
+        }
160
+        
161
+        
162
+    </script>
163
+    
164
+</body>
165
+
166
+</html>

+ 166 - 0
WebUI/CallCenterWeb.UI/ReportForm/reportDropCall.html

@@ -0,0 +1,166 @@
1
+<!DOCTYPE html>
2
+<html>
3
+
4
+<head>
5
+    <meta charset="UTF-8">
6
+    <title>数据统计</title>
7
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
8
+    <script src="../Script/Common/huayi.load.js"></script>
9
+    <script src="../Script/Common/huayi.config.js"></script>
10
+    <link href="../css/WorkOrder/Search.css" rel="stylesheet">
11
+    <link href="../css/init.css" rel="stylesheet" />
12
+    <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
13
+    <link rel="stylesheet" href="./css/reportCommon.css" />
14
+    <script src="../js/laydate/laydate.js"></script>
15
+    <script src="../js/zTree/jquery.ztree.core.js"></script>
16
+    
17
+</head>
18
+
19
+<body class="gray-bg">
20
+    <div class="wrapper wrapper-content animated fadeInRight">
21
+        <div class="daoHang clearfix">
22
+            <div class="dhLeft">
23
+                <sapn>
24
+                    <i class="syIcon"></i>位置:
25
+                    <a href="javaScript:;" id="ReIndex">首页</a>&gt;
26
+                    <a href="javaScript:;">报表管理</a>&gt;
27
+                    <a href="" class="nowPosition">主动放弃来电统计报表</a>
28
+                </sapn>
29
+            </div>
30
+            <div class="dhRight">
31
+                <a href="" title="刷新"><i class="fa fa-refresh"></i></a>
32
+            </div>
33
+        </div>
34
+
35
+        <div class="Content_box">
36
+            <div class="complain Shows">
37
+                <div class="toolBar clearfix">
38
+                    <div class="toolLeft">
39
+                   		 开始日期:
40
+                        <input class="photo x-color inputs laydate-icon" type="text" id="squeryTime" autocomplete="off" />
41
+                        	结束时间:
42
+                        <input class="photo x-color inputs laydate-icon" type="text" id="equeryTime" autocomplete="off" />
43
+                        	部门:
44
+                        <div class="inpBox">
45
+                            <input class="inps inps1">
46
+                            <input type="hidden" id="deptid" />
47
+                            <i class="xl xl_two"></i>
48
+                            <div class="addTree xlAdd_two">
49
+                                <ul id="deptTree" class="ztree"></ul>
50
+                            </div>
51
+                        </div>
52
+                        	来源:
53
+                        <select class="select" id="source"></select>
54
+                        <button class="btns search_1">查询</button>
55
+                        <a class="btns" id="exportPublicSentiments">导出</a>
56
+                    </div>
57
+                </div>
58
+                <div style="width: 100%;padding: 10px;">
59
+                    <table id="reportlist" class="tables" data-row-style="rowStyle" data-query-params="queryParams">
60
+                    </table>
61
+                </div>
62
+                <div class="footerDataStatistics">统计时段:00:00—23:59:59</div>
63
+            </div>
64
+        </div>
65
+    </div>
66
+    <script src="./js/reportCommon.js"></script>
67
+    <script>
68
+    	var exportParams = {}
69
+    	var tableColumns = [
70
+    		{ title: '序号', align: 'center',
71
+			  formatter: function(value, row, index) {
72
+				return index+1
73
+			  }
74
+			},
75
+			{ field: 'deptname', title: '联动单位', align: 'center'},
76
+			{ field: 'Undertakers', title: '承办件', align: 'center'},
77
+			{ field: 'Undertakersrate', title: '承办率', align: 'center'},
78
+			{ field: 'Undertakersscore', title: '得分(5分)', align: 'center'},
79
+			{ field: 'signfor', title: '及时签收件', align: 'center'},
80
+			{ field: 'signforrate', title: '及时签收率', align: 'center'},
81
+		 	
82
+		]
83
+    	var treeInputParam = {
84
+    		classInps:'.inps',
85
+    		classId:'#deptid',
86
+    		treeApi:'Department/GetDeptList',
87
+    		classAddTree:'.addTree',
88
+    		classXl:'.xl',
89
+    		treeId:'#deptTree',
90
+    		treeObj:{
91
+    			name:'F_DeptName', 
92
+    			id:'F_DeptId',
93
+    			pid:'F_PartentId',
94
+    			onclick:zTreeOnClick
95
+    		}
96
+    	}
97
+    	var selectParam = {
98
+    		id:"#source",
99
+    		apiUrl:"Dictionary/GetDicValueListById",
100
+    		dataParam:{
101
+    			id:1
102
+    		}
103
+    	}
104
+        $(document).ready(function () {
105
+            laydate.render({
106
+                elem: '#squeryTime',
107
+                theme: '#00a1cb',
108
+                type: 'datetime',
109
+            });
110
+            laydate.render({
111
+                elem: '#equeryTime',
112
+                theme: '#00a1cb',
113
+                type: 'datetime',
114
+            });
115
+            initTable();
116
+            bindtree();
117
+        	selectCommon(selectParam);
118
+        });
119
+        //搜索
120
+        $(".search_1").click(function () {
121
+            initTable();
122
+        });
123
+        //导出
124
+        $('#exportPublicSentiments').click(function () {
125
+            exportParams.isdc = true
126
+        	exportFileFun('DataAssessment/GetExamine',exportParams)
127
+        });
128
+        
129
+        //表格
130
+        function initTable() {
131
+        	var dataParams = {
132
+                starttime: $('#squeryTime').val(),
133
+                endtime: $('#equeryTime').val(),
134
+                deptid: $("#deptid").val(),
135
+                source: $("#source").val(),
136
+                token: $.cookie("token")
137
+            }
138
+        	exportParams = dataParams
139
+            $.ajax({
140
+                url: huayi.config.callcenter_url + 'DataAssessment/GetExamine',
141
+                type: 'get',
142
+                data: dataParams,
143
+                dataType: "json",
144
+                async: true,
145
+                success: function (returnValue) {
146
+                    //异步获取数据
147
+                    //debugger;
148
+                    var resultData = returnValue.rows;
149
+
150
+                    $('#reportlist').bootstrapTable('load', resultData);
151
+                }
152
+            });
153
+
154
+            $('#reportlist').bootstrapTable('destroy').bootstrapTable({
155
+                striped: true,
156
+                pagination: false,
157
+                columns:tableColumns
158
+            });
159
+        }
160
+        
161
+        
162
+    </script>
163
+    
164
+</body>
165
+
166
+</html>

+ 167 - 0
WebUI/CallCenterWeb.UI/ReportForm/reportEmergency.html

@@ -0,0 +1,167 @@
1
+<!DOCTYPE html>
2
+<html>
3
+
4
+<head>
5
+    <meta charset="UTF-8">
6
+    <title>数据统计</title>
7
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
8
+    <script src="../Script/Common/huayi.load.js"></script>
9
+    <script src="../Script/Common/huayi.config.js"></script>
10
+    <link href="../css/WorkOrder/Search.css" rel="stylesheet">
11
+    <link href="../css/init.css" rel="stylesheet" />
12
+    <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
13
+    <link rel="stylesheet" href="./css/reportCommon.css" />
14
+    <script src="../js/laydate/laydate.js"></script>
15
+    <script src="../js/zTree/jquery.ztree.core.js"></script>
16
+    
17
+</head>
18
+
19
+<body class="gray-bg">
20
+    <div class="wrapper wrapper-content animated fadeInRight">
21
+        <div class="daoHang clearfix">
22
+            <div class="dhLeft">
23
+                <sapn>
24
+                    <i class="syIcon"></i>位置:
25
+                    <a href="javaScript:;" id="ReIndex">首页</a>&gt;
26
+                    <a href="javaScript:;">报表管理</a>&gt;
27
+                    <a href="" class="nowPosition">紧急事项报表</a>
28
+                </sapn>
29
+            </div>
30
+            <div class="dhRight">
31
+                <a href="" title="刷新"><i class="fa fa-refresh"></i></a>
32
+            </div>
33
+        </div>
34
+
35
+        <div class="Content_box">
36
+            <div class="complain Shows">
37
+                <div class="toolBar clearfix">
38
+                    <div class="toolLeft">
39
+                   		 开始日期:
40
+                        <input class="photo x-color inputs laydate-icon" type="text" id="squeryTime" autocomplete="off" />
41
+                        	结束时间:
42
+                        <input class="photo x-color inputs laydate-icon" type="text" id="equeryTime" autocomplete="off" />
43
+                        	部门:
44
+                        <div class="inpBox">
45
+                            <input class="inps inps1">
46
+                            <input type="hidden" id="deptid" />
47
+                            <i class="xl xl_two"></i>
48
+                            <div class="addTree xlAdd_two">
49
+                                <ul id="deptTree" class="ztree"></ul>
50
+                            </div>
51
+                        </div>
52
+                        	来源:
53
+                        <select class="select" id="source"></select>
54
+                        <button class="btns search_1">查询</button>
55
+                        <a class="btns" id="exportPublicSentiments">导出</a>
56
+                    </div>
57
+                </div>
58
+                <div style="width: 100%;padding: 10px;">
59
+                    <table id="reportlist" class="tables" data-row-style="rowStyle" data-query-params="queryParams">
60
+                    </table>
61
+                </div>
62
+                <div class="footerDataStatistics">统计时段:00:00—23:59:59</div>
63
+            </div>
64
+        </div>
65
+    </div>
66
+    <script src="./js/reportCommon.js"></script>
67
+    <script>
68
+    	var exportParams = {}
69
+    	var tableColumns = [
70
+    		{ title: '序号', align: 'center',
71
+			  formatter: function(value, row, index) {
72
+				return index+1
73
+			  }
74
+			},
75
+			{ field: 'deptname', title: '联动单位', align: 'center'},
76
+			{ field: 'Undertakers', title: '承办件', align: 'center'},
77
+			{ field: 'Undertakersrate', title: '承办率', align: 'center'},
78
+			{ field: 'Undertakersscore', title: '得分(5分)', align: 'center'},
79
+			{ field: 'signfor', title: '及时签收件', align: 'center'},
80
+			{ field: 'signforrate', title: '及时签收率', align: 'center'},
81
+		 	
82
+		]
83
+    	var treeInputParam = {
84
+    		classInps:'.inps',
85
+    		classId:'#deptid',
86
+    		treeApi:'Department/GetDeptList',
87
+    		classAddTree:'.addTree',
88
+    		classXl:'.xl',
89
+    		treeId:'#deptTree',
90
+    		treeObj:{
91
+    			name:'F_DeptName', 
92
+    			id:'F_DeptId',
93
+    			pid:'F_PartentId',
94
+    			onclick:zTreeOnClick
95
+    		}
96
+    	}
97
+    	var selectParam = {
98
+    		id:"#source",
99
+    		apiUrl:"Dictionary/GetDicValueListById",
100
+    		dataParam:{
101
+    			id:1
102
+    		}
103
+    	}
104
+        $(document).ready(function () {
105
+            laydate.render({
106
+                elem: '#squeryTime',
107
+                theme: '#00a1cb',
108
+                type: 'datetime',
109
+            });
110
+            laydate.render({
111
+                elem: '#equeryTime',
112
+                theme: '#00a1cb',
113
+                type: 'datetime',
114
+            });
115
+            initTable();
116
+            bindtree();
117
+        	selectCommon(selectParam);
118
+        });
119
+        //搜索
120
+        $(".search_1").click(function () {
121
+            initTable();
122
+        });
123
+        //导出
124
+        $('#exportPublicSentiments').click(function () {
125
+            exportParams.isdc = true
126
+        	exportFileFun('DataAssessment/GetExamine',exportParams)
127
+        });
128
+        
129
+        //表格
130
+        function initTable() {
131
+        	var dataParams = {
132
+                stime: $('#squeryTime').val(),
133
+                etime: $('#equeryTime').val(),
134
+                token: $.cookie("token")
135
+            }
136
+        	exportParams = dataParams
137
+            $.ajax({
138
+                url: huayi.config.callcenter_url + 'WorkOrderReport/GetAreaLevel',
139
+                type: 'get',
140
+                data: dataParams,
141
+                dataType: "json",
142
+                async: true,
143
+                success: function (returnValue) {
144
+                    //异步获取数据
145
+                    if (returnValue.state == "success") {
146
+                    	var resultData = returnValue.rows;
147
+	                    if (resultData.length>0) {
148
+	                    	$('#reportlist').bootstrapTable('load', resultData);
149
+	                    }
150
+                    }
151
+                    
152
+                   
153
+                }
154
+            });
155
+
156
+            $('#reportlist').bootstrapTable('destroy').bootstrapTable({
157
+                striped: true,
158
+                pagination: false,
159
+                columns:tableColumns
160
+            });
161
+        }
162
+        
163
+        
164
+    </script>
165
+</body>
166
+
167
+</html>

+ 166 - 0
WebUI/CallCenterWeb.UI/ReportForm/reportSatisfaction.html

@@ -0,0 +1,166 @@
1
+<!DOCTYPE html>
2
+<html>
3
+
4
+<head>
5
+    <meta charset="UTF-8">
6
+    <title>数据统计</title>
7
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
8
+    <script src="../Script/Common/huayi.load.js"></script>
9
+    <script src="../Script/Common/huayi.config.js"></script>
10
+    <link href="../css/WorkOrder/Search.css" rel="stylesheet">
11
+    <link href="../css/init.css" rel="stylesheet" />
12
+    <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
13
+    <link rel="stylesheet" href="./css/reportCommon.css" />
14
+    <script src="../js/laydate/laydate.js"></script>
15
+    <script src="../js/zTree/jquery.ztree.core.js"></script>
16
+    
17
+</head>
18
+
19
+<body class="gray-bg">
20
+    <div class="wrapper wrapper-content animated fadeInRight">
21
+        <div class="daoHang clearfix">
22
+            <div class="dhLeft">
23
+                <sapn>
24
+                    <i class="syIcon"></i>位置:
25
+                    <a href="javaScript:;" id="ReIndex">首页</a>&gt;
26
+                    <a href="javaScript:;">报表管理</a>&gt;
27
+                    <a href="" class="nowPosition">满意度报表</a>
28
+                </sapn>
29
+            </div>
30
+            <div class="dhRight">
31
+                <a href="" title="刷新"><i class="fa fa-refresh"></i></a>
32
+            </div>
33
+        </div>
34
+
35
+        <div class="Content_box">
36
+            <div class="complain Shows">
37
+                <div class="toolBar clearfix">
38
+                    <div class="toolLeft">
39
+                   		 开始日期:
40
+                        <input class="photo x-color inputs laydate-icon" type="text" id="squeryTime" autocomplete="off" />
41
+                        	结束时间:
42
+                        <input class="photo x-color inputs laydate-icon" type="text" id="equeryTime" autocomplete="off" />
43
+                        	部门:
44
+                        <div class="inpBox">
45
+                            <input class="inps inps1">
46
+                            <input type="hidden" id="deptid" />
47
+                            <i class="xl xl_two"></i>
48
+                            <div class="addTree xlAdd_two">
49
+                                <ul id="deptTree" class="ztree"></ul>
50
+                            </div>
51
+                        </div>
52
+                        	来源:
53
+                        <select class="select" id="source"></select>
54
+                        <button class="btns search_1">查询</button>
55
+                        <a class="btns" id="exportPublicSentiments">导出</a>
56
+                    </div>
57
+                </div>
58
+                <div style="width: 100%;padding: 10px;">
59
+                    <table id="reportlist" class="tables" data-row-style="rowStyle" data-query-params="queryParams">
60
+                    </table>
61
+                </div>
62
+                <div class="footerDataStatistics">统计时段:00:00—23:59:59</div>
63
+            </div>
64
+        </div>
65
+    </div>
66
+    <script src="./js/reportCommon.js"></script>
67
+    <script>
68
+    	var exportParams = {}
69
+    	var tableColumns = [
70
+    		{ title: '序号', align: 'center',
71
+			  formatter: function(value, row, index) {
72
+				return index+1
73
+			  }
74
+			},
75
+			{ field: 'deptname', title: '联动单位', align: 'center'},
76
+			{ field: 'Undertakers', title: '承办件', align: 'center'},
77
+			{ field: 'Undertakersrate', title: '承办率', align: 'center'},
78
+			{ field: 'Undertakersscore', title: '得分(5分)', align: 'center'},
79
+			{ field: 'signfor', title: '及时签收件', align: 'center'},
80
+			{ field: 'signforrate', title: '及时签收率', align: 'center'},
81
+		 	
82
+		]
83
+    	var treeInputParam = {
84
+    		classInps:'.inps',
85
+    		classId:'#deptid',
86
+    		treeApi:'Department/GetDeptList',
87
+    		classAddTree:'.addTree',
88
+    		classXl:'.xl',
89
+    		treeId:'#deptTree',
90
+    		treeObj:{
91
+    			name:'F_DeptName', 
92
+    			id:'F_DeptId',
93
+    			pid:'F_PartentId',
94
+    			onclick:zTreeOnClick
95
+    		}
96
+    	}
97
+    	var selectParam = {
98
+    		id:"#source",
99
+    		apiUrl:"Dictionary/GetDicValueListById",
100
+    		dataParam:{
101
+    			id:1
102
+    		}
103
+    	}
104
+        $(document).ready(function () {
105
+            laydate.render({
106
+                elem: '#squeryTime',
107
+                theme: '#00a1cb',
108
+                type: 'datetime',
109
+            });
110
+            laydate.render({
111
+                elem: '#equeryTime',
112
+                theme: '#00a1cb',
113
+                type: 'datetime',
114
+            });
115
+            initTable();
116
+            bindtree();
117
+        	selectCommon(selectParam);
118
+        });
119
+        //搜索
120
+        $(".search_1").click(function () {
121
+            initTable();
122
+        });
123
+        //导出
124
+        $('#exportPublicSentiments').click(function () {
125
+            exportParams.isdc = true
126
+        	exportFileFun('DataAssessment/GetExamine',exportParams)
127
+        });
128
+        
129
+        //表格
130
+        function initTable() {
131
+        	var dataParams = {
132
+                starttime: $('#squeryTime').val(),
133
+                endtime: $('#equeryTime').val(),
134
+                deptid: $("#deptid").val(),
135
+                source: $("#source").val(),
136
+                token: $.cookie("token")
137
+            }
138
+        	exportParams = dataParams
139
+            $.ajax({
140
+                url: huayi.config.callcenter_url + 'DataAssessment/GetExamine',
141
+                type: 'get',
142
+                data: dataParams,
143
+                dataType: "json",
144
+                async: true,
145
+                success: function (returnValue) {
146
+                    //异步获取数据
147
+                    //debugger;
148
+                    var resultData = returnValue.rows;
149
+
150
+                    $('#reportlist').bootstrapTable('load', resultData);
151
+                }
152
+            });
153
+
154
+            $('#reportlist').bootstrapTable('destroy').bootstrapTable({
155
+                striped: true,
156
+                pagination: false,
157
+                columns:tableColumns
158
+            });
159
+        }
160
+        
161
+        
162
+    </script>
163
+    
164
+</body>
165
+
166
+</html>

+ 32 - 9
WebUI/CallCenterWeb.UI/commonWorderList/js/orderListCommon.js

@@ -12,18 +12,41 @@ function load() {
12 12
         name: $("#name").val(), //来电人
13 13
         dealstarttime: $("#dealstarttime").val(), //办理开始时间
14 14
         dealstrendtime: $("#dealstrendtime").val(), //办理结束时间
15
-        usercode: selectMultiple($("#ZX")), //=坐席工号
16
-        ddusercode: selectMultiple($("#yardman")),
15
+        ComTitle: $("#workOrderTitle").val().replace(/\s+/g, ""), // 工单标题
16
+        usercode: selectMultiple($("#ZX")), //受话坐席
17 17
         sourcearea: $("#sourceAreas").val(), //反映区域
18
-        deptid: $("#PID").val(),
19
-        type: $("#type").val(), //=来电类型
20
-        key: $("#key").val(), //=关键字                       
21
-        tobereply: 1,
22
-        tab: 0,
23
-        phoneType: 2, // 12345来电
24
-        db: db, // 热线件(db=0),督办件(db=1)
18
+        deptid: $("#PID").val(),	//承办单位
19
+        keyid: $("#keyid").val(), //反映类别
20
+        type: $("#type").val(), //来电类型
21
+        
22
+        //以下为工单查询搜索参数开始
23
+        ComContent: $("#workOrderContent").val().replace(/\s+/g, ""), // 工单内容
24
+        ddusercode: selectMultiple($("#yardman")),	//审核员
25
+        dealtype: $("#dealtype").val(), //处理类型
26
+        Result: $("#workOrderProcessingResult").val().replace(/\s+/g, ""), // 办理结果
27
+        state: $("#state").val(), //	工单状态
28
+        isopen: $("#isopen").val(), // 是否公开
29
+        business: $("#threeWayCall").val(), // 三方通话
30
+        splituser: $("#leaderCharge").val(), // 分管领导
31
+        islike: $("#islike").val(), // 查询类型
32
+        dbgd: $("#whetherSupervisor").val(), // 是否督办
33
+        edituser: $("#edituser").val(), // 供暖工单
34
+        workordertype: $("#workordertype").val(), // 添加方式
35
+        IsRelease: $("#IsRelease").val(),	//关联工单
36
+        myd: $("#satisfaction").val(), //满意度
37
+        phoneTypes:$("#phoneType").val(),	//电话类别
38
+        isbusiness: $("#isbusiness").val(),	//是否营商
39
+        closeuser:$("#closeuser").val(),	//结案人
40
+        overtime:$("#overtime").val(),	//是否超期
41
+        conphone: $("#contel").val().replace(/\s+/g, ""), //客户电话	
42
+        //以下为工单查询的附加搜索参数结束
25 43
         token: $.cookie("token"),
26 44
 	}
45
+//	if(paramsObj.tabSecondText){
46
+//		var searchParam = {
47
+//			
48
+//		}
49
+//	}
27 50
 	if(paramsObj.params !== '{}') {
28 51
 		if(paramsObj.hasOwnProperty("state")) {
29 52
 			delete dataParam.state

+ 150 - 7
WebUI/CallCenterWeb.UI/commonWorderList/js/orderListHeader.js

@@ -42,17 +42,27 @@ $(function() {
42 42
 		ele:"#type",
43 43
 		id: 2
44 44
 	}
45
+	phoneTypeObj = {
46
+		ele:"#phoneType",
47
+		id: 2498
48
+	}
45 49
     //工单来源
46 50
     selectCommonFn(getDicObjFn(sourceObj))
51
+    //电话类别
52
+    selectCommonFn(getDicObjFn(phoneTypeObj))
47 53
     //受话坐席
48 54
     personSelect($("#ZX"),"ZXLD,MTDD","UserAccount/GetSeatList");
49 55
     //审核员
50 56
     personSelect($("#yardman"),"ZXLD,MTDD","UserAccount/GetUsersList");
57
+    //受话坐席
58
+    personSelect($("#closeuser"),"ZXLD,MTDD","UserAccount/GetUsersList");
51 59
     //精准地域
52 60
     selectCommonFn(sourceareaObj)
53 61
     
54 62
     tree();
55
-    //舆情类型
63
+    //反应类别
64
+    getReactionCategory();
65
+    //类型
56 66
     selectCommonFn(getDicObjFn(typeObj))
57 67
 
58 68
     $(".Seach").click(function() {
@@ -70,11 +80,12 @@ $(function() {
70 80
 $('.ul_tab li').click(function () {
71 81
     $(this).addClass("active").siblings().removeClass("active");
72 82
     var index = $(this).index();
73
-    if (index === 0) {
74
-        db = 0;
75
-    } else if (index === 1) {
76
-        db = 1
77
-    }
83
+    if (getParam.tabSecondText ==='待审转办') {
84
+		getParam.params.issh = index;
85
+	}
86
+	if (getParam.tabSecondText ==='已办待审核'||getParam.tabSecondText ==='已办待回访') {
87
+		getParam.params.db = index;
88
+	}
78 89
     load();
79 90
 })
80 91
 function Close() {
@@ -83,7 +94,22 @@ function Close() {
83 94
         $("audio")[0].pause();
84 95
     }
85 96
 }
86
-
97
+// 反映类别搜索
98
+$("#reflectCategory").bind("input propertychange", function () {
99
+    $(".layui-dropdown").hide();
100
+    $(".CleansReactionCategory").show();
101
+    if ($("#reflectCategory").val() == "") {
102
+        $(".reflectCategoryList-wrapper").hide();
103
+        return;
104
+    }
105
+    $(".reflectCategoryList-wrapper").show();
106
+    var debounceGetSearchReactionCategory = debounce(
107
+        getSearchReactionCategory,
108
+        500
109
+    );
110
+    debounceGetSearchReactionCategory($("#reflectCategory").val());
111
+});
112
+ // 反映类别搜索结束
87 113
 //承办单位下拉事件开始
88 114
 $(".inps").focus(function() {
89 115
 	$(".xlAdd").css("display", "block");
@@ -142,6 +168,123 @@ function zTreeOnClick(event, treeId, treeNode) {
142 168
 	}
143 169
 }
144 170
 //树形下拉结束
171
+// 获取反映类别数据,多级下拉选项
172
+function getReactionCategory(pid = 38) {
173
+    $.get(
174
+        huayi.config.callcenter_url + "Dictionary/GetZTreeNew",
175
+        {
176
+            token: $.cookie("token"),
177
+            pid: pid,
178
+        },
179
+        function (result) {
180
+            result = $.parseJSON(result);
181
+            var content = JSON.parse(result.data);
182
+            layui.use("dropdown", function () {
183
+                var dropdown = layui.dropdown;
184
+                dropdown.render({
185
+                    elem: "#reflectCategory", //可绑定在任意元素中,此处以上述按钮为例
186
+                    data: content,
187
+                    id: "reflectCategory",
188
+                    isclickparent: true,
189
+                    //菜单被点击的事件
190
+                    click: function (obj) {
191
+                        $("#reflectCategory").val(obj.title);
192
+                        $("#keyid").val(obj.id);
193
+                        $(".CleansReactionCategory").show();
194
+                    },
195
+                });
196
+            });
197
+        }
198
+    );
199
+}
200
+
201
+// 搜索获取反映类别数据开始
202
+function getSearchReactionCategory(key) {
203
+    $("#reflectCategoryList").empty();
204
+    $.get(
205
+        huayi.config.callcenter_url + "Dictionary/GetKeyListNew",
206
+        {
207
+            token: $.cookie("token"),
208
+            key: key,
209
+        },
210
+        function (result) {
211
+            result = $.parseJSON(result);
212
+            if (result.state.toLowerCase() === "success") {
213
+                var content = result.data;
214
+                if (content.length > 0) {
215
+                    content.forEach(function (e, i) {
216
+                        $(
217
+                            "<li index='" +
218
+                                e.id +
219
+                                "' indexName='" +
220
+                                e.name +
221
+                                "'>" +
222
+                                e.names +
223
+                                "</li>"
224
+                        ).appendTo("#reflectCategoryList");
225
+                    });
226
+                } else {
227
+                    $("<li index='' indexName=''>没有相关数据</li>").appendTo(
228
+                        "#reflectCategoryList"
229
+                    );
230
+                }
231
+            }
232
+        }
233
+    );
234
+}
235
+
236
+// 防抖函数
237
+function debounce(fun, delay) {
238
+    return function (args) {
239
+        var that = this;
240
+        var _args = args;
241
+        clearTimeout(fun.id);
242
+        fun.id = setTimeout(function () {
243
+            fun.call(that, _args);
244
+        }, delay);
245
+    };
246
+}
247
+
248
+$(".CleansReactionCategory").click(function () {
249
+    $("#reflectCategory").val("");
250
+    $("#keyid").val("");
251
+    $(".CleansReactionCategory").hide();
252
+});
253
+
254
+$("#sponsor").on("click", "li", function () {
255
+    $(".selDpart1").css("display", "none");
256
+    $(".inps").val($(this).html());
257
+    $("#PID").val($(this).attr("index"));
258
+    $("#Dpment").val($(this).attr("index"));
259
+    $(".Cleans").show();
260
+});
261
+
262
+///部门
263
+function depart(dept) {
264
+    $("#sponsor").empty();
265
+    $.getJSON(
266
+        huayi.config.callcenter_url + "Department/GetDeptListByDept",
267
+        {
268
+            token: $.cookie("token"),
269
+            dept: dept,
270
+        },
271
+        function (data) {
272
+            if (data.state.toLowerCase() == "success") {
273
+                var content = data.data;
274
+                $(content).each(function (i, n) {
275
+                    $(
276
+                        "<li index='" +
277
+                            n.F_DeptId +
278
+                            "'>" +
279
+                            n.F_DeptName +
280
+                            "</li>"
281
+                    ).appendTo("#sponsor");
282
+                });
283
+            }
284
+        }
285
+    );
286
+}
287
+//	搜索获取反映类别数据结束
145 288
 // 导出列表
146 289
 function exportFileFun(api, params) {
147 290
     var url = huayi.config.callcenter_url + api;

+ 522 - 95
WebUI/CallCenterWeb.UI/commonWorderList/orderList.html

@@ -20,7 +20,7 @@
20 20
                 <sapn>
21 21
                     <i class="syIcon"></i>位置:
22 22
                     <a href="javaScript:;" id="ReIndex">首页</a>&gt;
23
-                    <a href="" class="nowPosition">已办待回访</a>
23
+                    <a href="" class="nowPosition"></a>
24 24
                 </sapn>
25 25
             </div>
26 26
             <div class="dhRight">
@@ -32,96 +32,298 @@
32 32
                 <div>
33 33
                     <span>【搜索信息】</span>
34 34
                     <div class="box_content">
35
-                        <table id="sqzx" style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
36
-                            <tr>
37
-                                <th>工单来源:</th>
38
-                                <td>
39
-                                    <select class="form-control" id="source"></select>
40
-                                </td>
41
-                                <th>来电号码:</th>
42
-                                <td>
43
-                                    <input type="text" id="tel" class="form-control" />
44
-                                </td>
45
-                                <th>录入时间:</th>
46
-                                <td colspan="3">
47
-                                    <input type="text" id="starttime" class="photo x-color laydate-icon" autocomplete="off" style="height: 35px;" />&nbsp;——&nbsp;<input type="text" id="endtime" class="photo x-color laydate-icon" autocomplete="off" style="height: 35px;" />
48
-                                </td>
49
-                            </tr>
50
-                            <tr>
51
-                                <th>事项编号:</th>
52
-                                <td>
53
-                                    <input type="text" placeholder="输入工单号" id="wids" class="form-control" />
54
-                                </td>
55
-                                <th><span class="nameJustified">来电人:</span></th>
56
-                                <td>
57
-                                    <input type="text" id="name" class="form-control" />
58
-                                </td>
59
-                                <th>办理时间:</th>
60
-                                <td colspan="3">
61
-                                    <input id="dealstarttime" class="photo x-color laydate-icon" type="text" autocomplete="off" style="height: 35px;" />
62
-                                    ——
63
-                                    <input id="dealstrendtime" class="photo x-color laydate-icon" type="text" autocomplete="off" style="height: 35px;" />
64
-                                </td>
65
-                            </tr>
66
-                            <tr>
67
-                                <th>受话坐席:</th>
35
+                        <table id="sqzx" style="width: 100%" border="0" cellspacing="0" cellpadding="0">
36
+							<tr>
37
+								<th>工单来源:</th>
38
+								<td>
39
+									<select class="form-control" id="source"></select>
40
+								</td>
41
+								<th>来电号码:</th>
42
+								<td>
43
+									<input type="text" id="tel" class="form-control" placeholder="请输入来电号码" />
44
+								</td>
45
+								<th>录入时间:</th>
46
+								<td colspan="3">
47
+									<input id="starttime" class="photo x-color laydate-icon" type="text" autocomplete="off" style="height: 35px;" />-<input id="endtime" class="photo x-color laydate-icon" type="text" autocomplete="off" style="height: 35px;" />
48
+								</td>
49
+							</tr>
50
+							<tr>
51
+								<th>事项编号:</th>
52
+								<td>
53
+									<input type="text" placeholder="输入工单号" id="wids" class="form-control" />
54
+								</td>
55
+								<th><span class="nameJustified">来电人:</span></th>
56
+								<td>
57
+									<input type="text" id="name" class="form-control" autocomplete="off" />
58
+								</td>
59
+								<th>办理时间:</th>
60
+								<td colspan="3">
61
+									<input id="dealstarttime" class="photo x-color laydate-icon" type="text" autocomplete="off" style="height: 35px;" /> -
62
+									<input id="dealstrendtime" class="photo x-color laydate-icon" type="text" autocomplete="off" style="height: 35px;" />
63
+								</td>
64
+							</tr>
65
+							<tr>
66
+								<th>工单标题:</th>
67
+								<td>
68
+									<input type="text" placeholder="输入工单标题" id="workOrderTitle" class="form-control" />
69
+								</td>
70
+								<th>受话坐席:</th>
71
+								<td class="maxWidthSelect">
72
+									<select id="ZX" name="select" class="selectpicker show-tick form-control" multiple data-live-search="true">
73
+										<option value="">请选择坐席</option>
74
+									</select>
75
+								</td>
76
+								<th>反映区域:</th>
77
+								<td>
78
+									<select class="form-control Min-width" id="sourceAreas"></select>
79
+									<botton class="btns Seach">搜索</botton>
80
+								</td>
81
+							</tr>
82
+							<tr>
83
+								<th>承办单位:</th>
84
+								
85
+								<td style="position: relative">
86
+									<div class="inpBox">
87
+										<input type="text" class="inps" id="organizer" autocomplete="off" />
88
+										<i class="Cleans fa fa-close"></i>
89
+										<i class="xl xl_one"></i>
90
+										<div class="addTree xlAdd">
91
+											<ul id="addTreeDemo" class="ztree"></ul>
92
+										</div>
93
+									</div>
94
+									<div class="selDpart1">
95
+										<ul id="sponsor"></ul>
96
+									</div>
97
+								</td>
98
+								<th>反映类别:</th>
99
+								<td class="reflectCategory-wrapper">
100
+									<input type="text" id="reflectCategory" class="form-control" autocomplete="off" />
101
+									<i class="CleansReactionCategory fa fa-close"></i>
102
+									<input type="hidden" id="keyid" />
103
+									<div class="reflectCategoryList-wrapper">
104
+										<ul id="reflectCategoryList">
105
+										</ul>
106
+									</div>
107
+								</td>
108
+								<th>来电类型:</th>
109
+								<td>
110
+									<select class="form-control Min-width" id="type"></select>
111
+									<botton class="btns exportFile">导出</botton>
112
+								</td>
113
+							</tr>
114
+							
115
+							<tr class="orderSearch" style="display: none;">
116
+								<th>来电内容:</th>
117
+								<td>
118
+									<input type="text" placeholder="输入来电内容" id="workOrderContent" class="form-control" />
119
+								</td>
120
+								<th><span class="nameJustified">审核员:</span></th>
121
+								<td class="maxWidthSelect">
122
+									<select id="yardman" name="select" class="selectpicker show-tick form-control" multiple data-live-search="true">
123
+										<option value="">请选择调度员</option>
124
+									</select>
125
+								</td>
126
+								<th>处理类型:</th>
127
+								<td>
128
+									<select class="form-control Min-width" id="dealtype">
129
+										<option value="">请选择</option>
130
+										<option value="0">网络转派</option>
131
+										<option value="1">当即办理</option>
132
+									</select>
133
+								</td>
134
+							</tr>
135
+							
136
+							<tr class="orderSearch" style="display: none;">
137
+								<th>办理结果:</th>
138
+								<td>
139
+									<input type="text" placeholder="输入办理结果" id="workOrderProcessingResult" class="form-control" />
140
+								</td>
141
+								<th>工单状态:</th>
142
+								<td>
143
+									<select name="" id="state" class="form-control">
144
+										<option selected="selected" value="">
145
+											请选择
146
+										</option>
147
+										<option value="0">新工单</option>
148
+										<option value="1">待交办</option>
149
+										<option value="2">待查收</option>
150
+										<option value="3">
151
+											退回审核中
152
+										</option>
153
+										<option value="4">办理中</option>
154
+										<option value="5">
155
+											延时审核中
156
+										</option>
157
+										<option value="6">已办理</option>
158
+										<option value="11">
159
+											重办待交办
160
+										</option>
161
+										<option value="13">重办驳回</option>
162
+										<option value="8">重办中</option>
163
+										<option value="9">已结案</option>
164
+									</select>
165
+								</td>
166
+								<th>是否公开:</th>
167
+								<td>
168
+									<select id="isopen" class="form-control Min-width" name="select">
169
+										<option value="">
170
+											请选择是否公开
171
+										</option>
172
+										<option value="0">
173
+											未公开
174
+										</option>
175
+										<option value="1">
176
+											已公开
177
+										</option>
178
+									</select>
179
+									
180
+								</td>
181
+								
182
+							</tr>
183
+							
184
+							<tr class="orderSearch" style="display: none;">
185
+								<th>三方通话:</th>
186
+								<td>
187
+									<select id="threeWayCall" class="form-control" name="select">
188
+										<option value="">
189
+											请选择是否三方通话
190
+										</option>
191
+										<option value="1">
192
+											是
193
+										</option>
194
+										<option value="0">
195
+											否
196
+										</option>
197
+									</select>
198
+								</td>
199
+								<th>分管领导:</th>
200
+								<td>
201
+									<select id="leaderCharge" class="form-control" name="select">
202
+										<option value="">
203
+											请选择
204
+										</option>
205
+										<option value="省长">
206
+											省长
207
+										</option>
208
+										<option value="市长">
209
+											市长
210
+										</option>
211
+									</select>
212
+								</td>
213
+								<th>查询类型:</th>
214
+								<td>
215
+									<select id="islike" class="form-control Min-width" name="select">
216
+										<option value="1">
217
+											模糊查询
218
+										</option>
219
+										<option value="0">
220
+											精确查询
221
+										</option>
222
+									</select>
223
+								</td>
224
+							</tr>
225
+							
226
+							<tr class="orderSearch" style="display: none;">
227
+								<th>是否督办:</th>
228
+								<td>
229
+									<select id="whetherSupervisor" class="form-control" name="select">
230
+										<option value="">请选择</option>
231
+										<option value="1">是</option>
232
+										<option value="0">否</option>
233
+									</select>
234
+								</td>
235
+								<th>专席编辑:</th>
236
+								<td>
237
+									<select id="edituser" class="form-control" name="select">
238
+										<option value="">请选择</option>
239
+										<option value="1">供暖工单</option>
240
+									</select>
241
+								</td>
242
+								<th>添加方式:</th>
243
+								<td>
244
+									<select id="workordertype" class="form-control Min-width" name="select">
245
+										<option value="">请选择</option>
246
+										<option value="0">来电弹屏</option>
247
+										<option value="1">手动添加</option>
248
+									</select>
249
+								</td>
250
+							</tr>
251
+							
252
+							<tr class="orderSearch" style="display: none;">
253
+								<th>关联工单:</th>
254
+								<td>
255
+									<select id="IsRelease" class="form-control" name="select">
256
+										<option value="">请选择</option>
257
+										<option value="1">主工单</option>
258
+										<option value="2">子工单</option>
259
+									</select>
260
+								</td>
261
+
262
+								<th>满意度:</th>
263
+								<td>
264
+									<select id="satisfaction" class="form-control" name="select">
265
+										<option value="">请选择</option>
266
+										<option value="基本满意">基本满意</option>
267
+										<option value="满意">满意</option>
268
+										<option value="非常满意">非常满意</option>
269
+										<option value="不满意">不满意</option>
270
+										<option value="非常不满意">非常不满意</option>
271
+									</select>
272
+								</td>
273
+								<th>电话类别:</th>
274
+								<td>
275
+									<select class="form-control Min-width" id="phoneType">
276
+	                                    <option value="">请选择</option>
277
+	                                </select>
278
+									
279
+								</td>
280
+							</tr>
281
+							
282
+							<tr class="orderSearch" style="display: none;">
283
+								<th>是否营商:</th>
284
+	                            <td>
285
+	                                <select id="isbusiness" class="form-control" name="select">
286
+										<option value="">请选择</option>
287
+										<option value="0">否</option>
288
+										<option value="1">是</option>
289
+									</select>
290
+	                            </td>
291
+	                            <th>结案人:</th>
68 292
                                 <td>
69
-                                    <select id="ZX" name="select" class="selectpicker show-tick form-control" multiple
293
+                                    <select id="closeuser" name="select" class="selectpicker show-tick form-control"
70 294
                                         data-live-search="true">
71
-                                        <option value="">请选择坐席</option>
295
+                                        <option value="">
296
+                                           		 请选择结案人
297
+                                        </option>
72 298
                                     </select>
73 299
                                 </td>
74
-                                <th><span class="nameJustified">审核员:</span></th>
75
-                                <td>
76
-                                    <select id="yardman" name="select" class="selectpicker show-tick form-control"
77
-                                        multiple data-live-search="true">
78
-                                        <option value="">请选择调度员</option>
79
-                                    </select>
80
-                                </td>
81
-                                <th>反映区域:</th>
82
-                                <td>
83
-                                    <select name="" id="sourceAreas" class="form-control Min-width"></select>
84
-                                    <botton class="btns Seach">搜索</botton>
85
-                                </td>
86
-                            </tr>
87
-                            <tr>
88
-                                <th>承办单位:</th>
89
-                                <td style="position: relative;">
90
-                                    <div class="inpBox">
91
-                                        <input type="text" class="inps" />
92
-                                        <i class="Cleans  fa fa-close"></i>
93
-                                        <i class="xl xl_one"></i>
94
-                                        <div class="addTree xlAdd">
95
-                                            <ul id="addTreeDemo" class="ztree"></ul>
96
-                                        </div>
97
-                                    </div>
98
-                                    <div class="selDpart1">
99
-                                        <ul id="sponsor">
100
-                                        </ul>
101
-                                    </div>
102
-                                </td>
103
-                                <th>来电类型:</th>
104
-                                <td>
105
-                                    <select class="form-control" id="type">
106
-                                    </select>
107
-                                </td>
108
-                                <th><span class="nameJustified">关键字:</span></th>
109
-                                <td>
110
-                                    <input type="text" placeholder="输入关键字" id="key" class="form-control Min-width" />
111
-                                    <botton class="btns exportFile">导出</botton>
112
-                                </td>
113
-                            </tr>
114
-                            
115
-                        </table>
300
+	                            <th>是否超期:</th>
301
+	                            <td>
302
+	                                <select id="overtime" class="form-control Min-width" name="select">
303
+										<option value="">请选择</option>
304
+										<option value="1">即将超期</option>
305
+										<option value="2">已超期</option>
306
+									</select>
307
+	                            </td>
308
+							</tr>
309
+							
310
+							<tr class="orderSearch" style="display: none;">
311
+								<th>联系电话:</th>
312
+								<td>
313
+									<input type="text" id="contel" class="form-control" placeholder="请输入联系电话" />
314
+								</td>
315
+							</tr>
316
+						</table>
317
+						
116 318
                     </div>
117 319
                 </div>
118 320
                 <div>
119
-                    <ul class="nav nav-tabs ul_tab" role="tablist" style="position: relative;">
321
+                    <ul class="nav nav-tabs ul_tab" role="tablist" style="position: relative; display: none;">
120 322
                         <li class="active">
121
-                            <a>热线件</a>
323
+                            <a class="tabText1">热线件</a>
122 324
                         </li>
123 325
                         <li>
124
-                            <a>督办件</a>
326
+                            <a class="tabText2">督办件</a>
125 327
                         </li>
126 328
                         <botton class="btns hfIntelligenceBox" onclick="hfIntelligence()" style="position: absolute; right: 15px; top: 5px; display: none;">智能回访</botton>
127 329
                     </ul>
@@ -173,7 +375,17 @@
173 375
             getParam = getLoadParams(urlState)
174 376
             if(getParam.tabSecondText === '已办待回访'){
175 377
             	$(".hfIntelligenceBox").show()
378
+            } else  if(getParam.tabSecondText === '工单查询'){
379
+            	$(".orderSearch").show()
380
+            }
381
+            if(getParam.tabText1){
382
+            	$(".ul_tab").show()
383
+            	getParam.tabText1 &&$(".tabText1").text(getParam.tabText1)
384
+            	getParam.tabText2 &&$(".tabText2").text(getParam.tabText2)
176 385
             }
386
+            
387
+            
388
+            $(".nowPosition").text(getParam.tabSecondText)
177 389
             load();
178 390
         });
179 391
         function getLoadParams(state){
@@ -181,93 +393,308 @@
181 393
       			params:{}
182 394
       		}
183 395
         	switch (state){
184
-        		case "hwyDhf": //话务员
396
+        		case "hwyDhf": //话务员-已办待回访
185 397
         			paramsObj.tabSecondText = "已办待回访"
398
+        			paramsObj.tabText1 = "热线件"
399
+        			paramsObj.tabText2 = "督办件"
186 400
         			paramsObj.params.jianhang = 0
187 401
         			paramsObj.params.state = 7
402
+        			paramsObj.params.tab = 0
403
+        			paramsObj.params.db = 0
404
+        			paramsObj.params.tobereply = 1
188 405
         			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
189 406
         			break;
190
-        		case "shyDhf": //审核员
407
+        		case "shyDhf": //审核员-已办待回访
191 408
         			debugger
192 409
         			paramsObj.tabSecondText = "已办待回访"
410
+        			paramsObj.tabText1 = "热线件"
411
+        			paramsObj.tabText2 = "督办件"
193 412
         			paramsObj.params.jianhang = 0
194 413
         			paramsObj.params.state = 7
414
+        			paramsObj.params.tab = 0
415
+        			paramsObj.params.db = 0
416
+        			paramsObj.params.tobereply = 1
195 417
         			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
196 418
         			break;
197
-        		case "110ybDhf": //110工单
419
+        		case "110ybDhf": //110工单-已办待回访
198 420
         			paramsObj.tabSecondText = "已办待回访"
421
+        			paramsObj.tabText1 = "热线件"
422
+        			paramsObj.tabText2 = "督办件"
199 423
         			paramsObj.params.jianhang = 6
200 424
         			paramsObj.params.state = 7
425
+        			paramsObj.params.tab = 0
426
+        			paramsObj.params.db = 0
427
+        			paramsObj.params.tobereply = 1
201 428
         			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
202 429
         			break;
203
-        		case "qzsqslDhf": //群众诉求受理
430
+        		case "qzsqslDhf": //群众诉求受理-已办待回访
204 431
         			paramsObj.tabSecondText = "已办待回访"
432
+        			paramsObj.tabText1 = "热线件"
433
+        			paramsObj.tabText2 = "督办件"
205 434
         			paramsObj.params.jianhang = 5
206 435
         			paramsObj.params.state = 7
436
+        			paramsObj.params.tab = 0
437
+        			paramsObj.params.db = 0
438
+        			paramsObj.params.tobereply = 1
207 439
         			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
208 440
         			break;
209
-        		case "ysjsjbDhf": //营商接诉即办
441
+        		case "ysjsjbDhf": //营商接诉即办-已办待回访
210 442
         			paramsObj.tabSecondText = "已办待回访"
443
+        			paramsObj.tabText1 = "热线件"
444
+        			paramsObj.tabText2 = "督办件"
211 445
         			paramsObj.params.jianhang = 3
212 446
         			paramsObj.params.state = 7
447
+        			paramsObj.params.tab = 0
448
+        			paramsObj.params.db = 0
449
+        			paramsObj.params.tobereply = 1
213 450
         			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
214 451
         			break;
215
-        		case "dmtDhf": //多媒体
452
+        		case "dmtDhf": //多媒体-已办待回访
216 453
         			paramsObj.tabSecondText = "已办待回访"
454
+        			paramsObj.tabText1 = "热线件"
455
+        			paramsObj.tabText2 = "督办件"
217 456
         			paramsObj.params.jianhang = 1
218 457
         			paramsObj.params.state = 7
458
+        			paramsObj.params.tab = 0
459
+        			paramsObj.params.db = 0
460
+        			paramsObj.params.tobereply = 1
219 461
         			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
220 462
         			break;
221
-        		case "sptDhf": //省平台
463
+        		case "sptDhf": //省平台-已办待回访
222 464
         			paramsObj.tabSecondText = "已办待回访"
465
+        			paramsObj.tabText1 = "热线件"
466
+        			paramsObj.tabText2 = "督办件"
223 467
         			paramsObj.params.jianhang = 4
224 468
         			paramsObj.params.state = 7
469
+        			paramsObj.params.tab = 0
470
+        			paramsObj.params.db = 0
471
+        			paramsObj.params.tobereply = 1
225 472
         			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
226 473
         			break;
227 474
         		
228
-        		case "hwyDsh": //话务员
475
+        		case "hwyDsh": //话务员-已办待审核
229 476
         			paramsObj.tabSecondText = "已办待审核"
477
+        			paramsObj.tabText1 = "热线件"
478
+        			paramsObj.tabText2 = "督办件"
230 479
         			paramsObj.params.jianhang = 0
231 480
         			paramsObj.params.state = 6
481
+        			paramsObj.params.tab = 0
482
+        			paramsObj.params.db = 0
483
+        			paramsObj.params.tobereply = 1
232 484
         			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
233 485
         			break;
234
-        		case "shyDsh": //审核员
486
+        		case "shyDsh": //审核员-已办待审核
235 487
         			debugger
236 488
         			paramsObj.tabSecondText = "已办待审核"
489
+        			paramsObj.tabText1 = "热线件"
490
+        			paramsObj.tabText2 = "督办件"
237 491
         			paramsObj.params.jianhang = 0
238 492
         			paramsObj.params.state = 6
493
+        			paramsObj.params.tab = 0
494
+        			paramsObj.params.db = 0
495
+        			paramsObj.params.tobereply = 1
239 496
         			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
240 497
         			break;
241
-        		case "110ybDsh": //110工单
498
+        		case "110ybDsh": //110工单-已办待审核
242 499
         			paramsObj.tabSecondText = "已办待审核"
500
+        			paramsObj.tabText1 = "热线件"
501
+        			paramsObj.tabText2 = "督办件"
243 502
         			paramsObj.params.jianhang = 6
244 503
         			paramsObj.params.state = 6
504
+        			paramsObj.params.tab = 0
505
+        			paramsObj.params.db = 0
506
+        			paramsObj.params.tobereply = 1
245 507
         			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
246 508
         			break;
247
-        		case "qzsqslDsh": //群众诉求受理
509
+        		case "qzsqslDsh": //群众诉求受理-已办待审核
248 510
         			paramsObj.tabSecondText = "已办待审核"
511
+        			paramsObj.tabText1 = "热线件"
512
+        			paramsObj.tabText2 = "督办件"
249 513
         			paramsObj.params.jianhang = 5
250 514
         			paramsObj.params.state = 6
515
+        			paramsObj.params.tab = 0
516
+        			paramsObj.params.db = 0
517
+        			paramsObj.params.tobereply = 1
251 518
         			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
252 519
         			break;
253
-        		case "ysjsjbDsh": //营商接诉即办
520
+        		case "ysjsjbDsh": //营商接诉即办-已办待审核
254 521
         			paramsObj.tabSecondText = "已办待审核"
522
+        			paramsObj.tabText1 = "热线件"
523
+        			paramsObj.tabText2 = "督办件"
255 524
         			paramsObj.params.jianhang = 3
256 525
         			paramsObj.params.state = 6
526
+        			paramsObj.params.tab = 0
527
+        			paramsObj.params.db = 0
528
+        			paramsObj.params.tobereply = 1
257 529
         			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
258 530
         			break;
259
-        		case "dmtDsh": //多媒体
531
+        		case "dmtDsh": //多媒体-已办待审核
260 532
         			paramsObj.tabSecondText = "已办待审核"
533
+        			paramsObj.tabText1 = "热线件"
534
+        			paramsObj.tabText2 = "督办件"
261 535
         			paramsObj.params.jianhang = 1
262 536
         			paramsObj.params.state = 6
537
+        			paramsObj.params.tab = 0
538
+        			paramsObj.params.db = 0
539
+        			paramsObj.params.tobereply = 1
263 540
         			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
264 541
         			break;
265
-        		case "sptDsh": //省平台
542
+        		case "sptDsh": //省平台-已办待审核
266 543
         			paramsObj.tabSecondText = "已办待审核"
544
+        			paramsObj.tabText1 = "热线件"
545
+        			paramsObj.tabText2 = "督办件"
267 546
         			paramsObj.params.jianhang = 4
268 547
         			paramsObj.params.state = 6
548
+        			paramsObj.params.tab = 0
549
+        			paramsObj.params.db = 0
550
+        			paramsObj.params.tobereply = 1
551
+        			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
552
+        			break;
553
+        		
554
+        		case "jwSearch": //纪委-工单查询
555
+        			paramsObj.tabSecondText = "工单查询"
556
+        			paramsObj.params.jianhang = 7
557
+        			paramsObj.apiUrl = 'WorkOrder/GetList'
558
+        			break;
559
+        		case "jwDszb": //纪委-待审转办
560
+        			paramsObj.tabSecondText = "待审转办"
561
+        			paramsObj.tabText1 = "待审核转办"
562
+        			paramsObj.tabText2 = "审核未通过"
563
+        			paramsObj.params.issh = 0
564
+        			paramsObj.params.tab = 0
565
+        			paramsObj.params.jianhang = 7
566
+        			paramsObj.apiUrl = 'WorkOrder/GetLDDealList'
567
+        			break;
568
+        		case "jwThdszb": //纪委-待审转办
569
+        			paramsObj.tabSecondText = "退回待审转办"
570
+        			paramsObj.params.jianhang = 7
571
+        			paramsObj.params.state = 10
572
+        			paramsObj.params.tab = 10
573
+        			paramsObj.apiUrl = 'WorkOrder/GetLDDealList'
574
+        			break;
575
+        		case "jwShydsh": //纪委-审核员待审核
576
+        			paramsObj.tabSecondText = "审核员待审核"
577
+        			paramsObj.params.issh = 2
578
+        			paramsObj.params.tab = 0
579
+        			paramsObj.params.jianhang = 7
580
+        			paramsObj.apiUrl = 'WorkOrder/GetLDDealList'
581
+        			break;
582
+        		case "jwSjdwyssh": //纪委-三级单位延时审核
583
+        			paramsObj.tabSecondText = "三级单位延时审核"
584
+        			paramsObj.params.tab = 9
585
+        			paramsObj.params.jianhang = 7
586
+        			paramsObj.params.distribute = 0
587
+        			paramsObj.apiUrl = 'WorkOrder/GetEJDWDealList'
588
+        			break;
589
+        		case "jwJwyssh": //纪委-居委延时审核
590
+        			paramsObj.tabSecondText = "居委延时审核"
591
+        			paramsObj.params.tab = 7
592
+        			paramsObj.params.jianhang = 7
593
+        			paramsObj.apiUrl = 'WorkOrder/GetDWDealList'
594
+        			break;
595
+        		case "jwJwthsh": //纪委-居委退回审核
596
+        			paramsObj.tabSecondText = "居委退回审核"
597
+        			paramsObj.params.tab = 0
598
+        			paramsObj.params.state = 10
599
+        			paramsObj.params.jianhang = 7
600
+        			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
601
+        			break;	
602
+        		case "jwZzbl": //纪委-正在办理
603
+        			paramsObj.tabSecondText = "正在办理"
604
+        			paramsObj.params.tab = 1
605
+        			paramsObj.params.jianhang = 7
606
+        			paramsObj.apiUrl = 'WorkOrder/GetLDDealList'
607
+        			break;	
608
+        		case "jwYbdsh": //纪委-已办待审核
609
+        			paramsObj.tabSecondText = "已办待审核"
610
+        			paramsObj.params.tab = 0
611
+        			paramsObj.params.db = 0
612
+        			paramsObj.params.state = 6
613
+        			paramsObj.params.jianhang = 7
614
+        			paramsObj.params.tobereply = 1
269 615
         			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
270 616
         			break;
617
+        		case "jwYbdhf": //纪委-已办待回访
618
+        			paramsObj.tabSecondText = "已办待回访"
619
+        			paramsObj.params.tab = 0
620
+        			paramsObj.params.db = 0
621
+        			paramsObj.params.state = 7
622
+        			paramsObj.params.jianhang = 7
623
+        			paramsObj.params.tobereply = 1
624
+        			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
625
+        			break;
626
+        		case "jwCqwg": //纪委-超期未果
627
+        			paramsObj.tabSecondText = "超期未果"
628
+        			paramsObj.params.tab = 1
629
+        			paramsObj.params.jianhang = 7
630
+        			paramsObj.apiUrl = 'WorkOrder/GetTimeOutList'
631
+        			break;
632
+        		case "jwYbwg": //纪委-已办未果
633
+        			paramsObj.tabSecondText = "已办未果"
634
+        			paramsObj.params.state = 6
635
+        			paramsObj.params.jianhang = 7
636
+        			paramsObj.params.isproresult = 1
637
+        			paramsObj.apiUrl = 'WorkOrder/GetList'
638
+        			break;
639
+        		case "jwYbj": //纪委-已办结
640
+        			paramsObj.tabSecondText = "已办结"
641
+        			paramsObj.params.tab = 5
642
+        			paramsObj.params.jianhang = 7
643
+        			paramsObj.apiUrl = 'WorkOrder/GetLDDealList'
644
+        			break;
645
+        		case "jwYzdb": //纪委-已转督办
646
+        			paramsObj.tabSecondText = "已转督办"
647
+        			paramsObj.params.jianhang = 7
648
+        			paramsObj.apiUrl = 'WorkOrder/GetSupervList'
649
+        			break;
650
+        		case "jwYthcb": //纪委-已退回重办
651
+        			paramsObj.tabSecondText = "已退回重办"
652
+        			paramsObj.params.tab = 4
653
+        			paramsObj.params.jianhang = 7
654
+        			paramsObj.apiUrl = 'WorkOrder/GetLDDealList'
655
+        			break;
656
+        			
657
+        		case "jwDxdpy": //纪委-短信待评议
658
+        			paramsObj.tabSecondText = "短信待评议"
659
+        			paramsObj.params.state = 7
660
+        			paramsObj.params.tobereply = 1
661
+        			paramsObj.params.tab = 0
662
+        			paramsObj.params.jianhang = 7
663
+        			paramsObj.params.db = 0
664
+        			paramsObj.params.smspy = 0
665
+        			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
666
+        			break;
667
+        		case "jwDxmrhp": //纪委-短信默认好评
668
+        			paramsObj.tabSecondText = "短信默认好评"
669
+        			paramsObj.params.state = 9
670
+        			paramsObj.params.tobereply = 1
671
+        			paramsObj.params.tab = 0
672
+        			paramsObj.params.jianhang = 7
673
+        			paramsObj.params.db = 0
674
+        			paramsObj.params.smspy = 1
675
+        			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
676
+        			break;
677
+        		case "jwDxrghp": //纪委-短信人工好评
678
+        			paramsObj.tabSecondText = "短信人工好评"
679
+        			paramsObj.params.state = 7
680
+        			paramsObj.params.tobereply = 1
681
+        			paramsObj.params.tab = 0
682
+        			paramsObj.params.jianhang = 7
683
+        			paramsObj.params.db = 0
684
+        			paramsObj.params.smspy = 2
685
+        			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
686
+        			break;
687
+        		case "jwDxrgcp": //纪委-短信人工差评
688
+        			paramsObj.tabSecondText = "短信人工差评"
689
+        			paramsObj.params.state = 7
690
+        			paramsObj.params.tobereply = 1
691
+        			paramsObj.params.tab = 0
692
+        			paramsObj.params.jianhang = 7
693
+        			paramsObj.params.db = 0
694
+        			paramsObj.params.smspy = 3
695
+        			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
696
+        			break;
697
+        		
271 698
         		default:	// 话务员 hwyDhf,审核员 shyDhf,默认0 
272 699
 //      			paramsObj.apiUrl = 'WorkOrder/GetZXDealList'
273 700
         			break;

+ 0 - 273
WebUI/CallCenterWeb.UI/commonWorderList/orderList1.html

@@ -1,273 +0,0 @@
1
-<!DOCTYPE html>
2
-<html>
3
-
4
-<head>
5
-    <meta charset="UTF-8">
6
-    <title>工单查询</title>
7
-    <script src="../Script/Common/huayi.load.js"></script>
8
-    <link rel="stylesheet" href="../css/bootstrap-select.css">
9
-    <script src="../Script/Common/huayi.config.js"></script>
10
-    <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
11
-    <link rel="stylesheet" href="../css/init.css" />
12
-    <link rel="stylesheet" href="../css/WorkOrder/workOrder.css" />
13
-</head>
14
-
15
-<body class="gray-bg">
16
-    <div class="wrapper wrapper-content animated fadeInRight">
17
-        <div class="daoHang clearfix">
18
-            <div class="dhLeft">
19
-                <sapn>
20
-                    <i class="syIcon"></i>位置:
21
-                    <a href="javaScript:;" id="ReIndex">首页</a>&gt;
22
-                    <a href="javaScript:;" class="nowPositionFirst">工单处理</a>&gt;
23
-                    <a href="" class="nowPosition">查询工单</a>
24
-                </sapn>
25
-            </div>
26
-            <div class="dhRight">
27
-                <a href="" title="刷新"><i class="fa fa-refresh"></i></a>
28
-            </div>
29
-        </div>
30
-        <div style="padding: 10px;" class="tj_content clearFix">
31
-            <div style="padding: 10px;" class="tj_content clearFix">
32
-                <div>
33
-                    <span>【搜索信息】</span>
34
-                    <div class="box_content">
35
-                        <table id="sqzx" style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
36
-                            <tr>
37
-                                <th>关键字:</th>
38
-                                <td>
39
-                                    <input type="text" class="Min-width" placeholder="输入关键字" id="keys"  />
40
-                                </td>
41
-                                <th>工单号:</th>
42
-                                <td>
43
-                                    <input type="text" class="Min-width" placeholder="输入工单号" id="workid" />
44
-                                </td>
45
-                                <th>时间:</th>
46
-                                <td>
47
-                                    <input type="text" class="Min-width" placeholder="请选择时间" id="starttime" />
48
-                                </td>
49
-                            </tr>
50
-                            <tr>
51
-                            	<th>精准地域:</th>
52
-                                <td>
53
-                                    <select class="select_" id="sourceAreas"></select>
54
-                                </td>
55
-                                <th>舆情类型:</th>
56
-                                <td>
57
-                                    <select class="select_" id="type"></select>
58
-                                </td>
59
-                                <th>舆情来源:</th>
60
-                                <td>
61
-                                	<input type="text" class="Min-width" placeholder="输入舆情来源" id="source"/>
62
-                                </td>
63
-                            </tr>
64
-                            <tr>
65
-                            	<th>承办单位:</th>
66
-                                <td style="position: relative;">
67
-                                    <div class="inpBox" style="width: 97%;">
68
-                                        <input type="text" class="inps  Min-width" onkeyup="darptSearch()" />
69
-                                        <i class="Cleans  fa fa-close"></i>
70
-                                        <i class="xl xl_one"></i>
71
-                                        <div class="addTree xlAdd">
72
-                                            <ul id="addTreeDemo" class="ztree"></ul>
73
-                                        </div>
74
-                                    </div>
75
-                                    <div class="selDpart1">
76
-                                        <ul id="sponsor">
77
-                                        </ul>
78
-                                    </div>
79
-                                </td>
80
-                                <th>信息属性:</th>
81
-		                        <td>
82
-		                            <select class="select_" id="infoproperty"></select>
83
-		                        </td>
84
-		                        <th>舆情等级:</th>
85
-		                        <td>
86
-		                            <select class="select_" id="level">
87
-		                                <option value="1">普通</option>
88
-		                                <option value="2">紧急</option>
89
-		                            </select>
90
-		                        </td>
91
-		                    </tr>
92
-		                    <tr>
93
-                                <th>处理方式:</th>
94
-                                <td>
95
-                                    <select class="select_" id="dealtype">
96
-                                        <option value="">请选择</option>
97
-                                        <option value="0">网络转派</option>
98
-                                        <option value="1">当即办理</option>
99
-                                    </select>
100
-                                </td>
101
-                                <th class="orderStateFlag">工单状态:</th>
102
-                                <td class="orderStateFlag">
103
-                                    <select name="" id="state" class="select_">
104
-                                        <option selected="selected" value="">请选择</option>
105
-                                        <option value="1">待交办</option>
106
-                                        <option value="2">待查收</option>
107
-                                        <option value="3">退回审核中</option>
108
-                                        <option value="4">办理中</option>
109
-                                        <option value="5">延时审核中</option>
110
-                                        <option value="11">重办待交办</option>
111
-                                        <option value="8">重办中</option>
112
-                                        <option value="14">已结案</option>
113
-                                    </select>
114
-                                </td>
115
-                                <td colspan="4" style="text-align: center;">
116
-                                    <botton class="btns Seach">搜索</botton>
117
-                                    <botton class="btns Export">导出</botton>
118
-                                </td>
119
-                            </tr>
120
-                        </table>
121
-                    </div>
122
-                </div>
123
-                <div>
124
-                    <div style="width: 100%;padding: 10px;">
125
-                        <table id="orderlist" data-row-style="rowStyle" data-query-params="queryParams"
126
-                            data-pagination="true">
127
-                            <thead>
128
-                                <tr>
129
-                                    <th data-field="F_WorkOrderId" data-align="center" data-formatter="Print">案件编号</th>
130
-                                    <th data-field="F_IsResult" data-align="center" data-formatter="isResultFormatter">处理类型</th>
131
-                                    <th data-field="F_ComTitle" data-align="center" data-formatter="GetCont">题目</th>   
132
-                                    <th data-field="F_Event" data-align="center">来源</th>
133
-                                    <th data-field="DeptName" data-align="center">承办单位</th>
134
-                                    <th data-field="F_WorkState" data-align="center" data-formatter="States">办理状态</th>
135
-                                    <th data-field="OverState" data-formatter="OverTime" data-align="center">办理时限</th>
136
-                                    <th data-field="F_WorkOrderId" data-formatter="Dispose" data-align="center">操作</th>
137
-                                </tr>
138
-                            </thead>
139
-                            <tbody class="list"></tbody>
140
-                        </table>
141
-                    </div>
142
-                </div>
143
-            </div>
144
-        </div>
145
-        <input type="hidden" id="PID" />
146
-        <input type="hidden" id="Dpment" />
147
-    </div>
148
-    <script src="../js/bootstrap-select.js"></script>
149
-    <script src="../js/laydate/laydate.js"></script>
150
-    <script src="../My97DatePicker/WdatePicker.js"></script>
151
-    <script src="../js/zTree/jquery.ztree.core.js"></script>
152
-    
153
-    <script src="./js/common.js"></script>
154
-    <script src="./js/orderListHeader.js"></script>
155
-    <script src="./js/orderListCommon.js"></script>
156
-    <script src="./js/orderListOperation.js"></script>
157
-    
158
-    <script>
159
-    	var getParam = {}
160
-    	var state = helper.request.queryString("state");
161
-        $(document).ready(function () {
162
-        	if (!state) {
163
-        		$(".orderStateFlag").show()
164
-        	}
165
-        	getParam = getLoadParams(state)
166
-        	$(".nowPositionFirst").text(getParam.tabFirstText)
167
-        	$(".nowPosition").text(getParam.tabSecondText)
168
-        	load(getParam)
169
-        });
170
-        
171
-        function getLoadParams(state){
172
-      		var paramsObj = {
173
-      			params:{}
174
-      		}
175
-        	switch (state){
176
-        		case "djb":
177
-        			paramsObj.apiUrl = "WorkOrder/GetLDDealList"
178
-        			paramsObj.tabSecondText = "待交办"
179
-        			paramsObj.params.tab = 0
180
-        			paramsObj.params.timesort = 1
181
-        			break;
182
-        		case "ycb":
183
-        			paramsObj.apiUrl = "WorkOrder/GetDWDealList"
184
-        			paramsObj.tabSecondText = "已催办列表"
185
-        			paramsObj.params.tab = 13
186
-        			break;
187
-        		case "cq":
188
-        			paramsObj.apiUrl = "WorkOrder/GetListTimeOut"
189
-        			paramsObj.tabSecondText = "超期列表"
190
-        			break;
191
-        		case "yssh":
192
-        			paramsObj.apiUrl = "WorkOrder/GetDWDealList"
193
-        			paramsObj.tabSecondText = "延时审核"
194
-        			paramsObj.params.isaudit = 0
195
-        			paramsObj.params.tab = 7
196
-        			break
197
-        		case "shth":
198
-        			paramsObj.apiUrl = "WorkOrder/GetList"
199
-        			paramsObj.tabSecondText = "审核退回"
200
-        			paramsObj.params.isaudit = 0
201
-        			paramsObj.params.tab = 2
202
-        			paramsObj.params.state = 3
203
-        			break
204
-				case "dja":
205
-        			paramsObj.apiUrl = "WorkOrder/GetList"
206
-        			paramsObj.tabSecondText = "待结案"
207
-        			paramsObj.params.state = 7
208
-        			break
209
-        		case "yja":
210
-        			paramsObj.apiUrl = "WorkOrder/GetList"
211
-        			paramsObj.tabSecondText = "已结案"
212
-        			paramsObj.params.state = 9
213
-//      			files: 1
214
-//					IsExport: 1
215
-        			break	
216
-        		case "ycb":
217
-        			paramsObj.apiUrl = "WorkOrder/GetLDDealList"
218
-        			paramsObj.tabSecondText = "已重办"
219
-        			paramsObj.params.tab = 4
220
-        			break	
221
-        		case "ldgz":
222
-        			paramsObj.apiUrl = "WorkOrder/GetDWDealList"
223
-        			paramsObj.tabSecondText = "领导关注"
224
-        			paramsObj.params.tab = 12
225
-        			break
226
-        		
227
-        		case "secondDcl":	//二级单位待处理 
228
-        			paramsObj.apiUrl = "WorkOrder/GetDWDealList"
229
-        			paramsObj.tabFirstText = "业务协同"
230
-        			paramsObj.tabSecondText = "待处理"
231
-        			paramsObj.params.tab = 0
232
-        			break;	
233
-        		case "secondCb":	//二级单位待处理  
234
-        			paramsObj.apiUrl = "WorkOrder/GetDWDealList"
235
-        			paramsObj.tabFirstText = "业务协同"
236
-        			paramsObj.tabSecondText = "催办工单"
237
-        			paramsObj.params.tab = 13
238
-        			break;
239
-        		case "secondYbl":	//二级单位
240
-        			paramsObj.apiUrl = "WorkOrder/GetDWDealList"
241
-        			paramsObj.tabFirstText = "业务协同"
242
-        			paramsObj.tabSecondText = "已办理"
243
-        			paramsObj.params.tab = 4
244
-        			break;
245
-        		case "secondYcs":	//二级单位已查收
246
-        			paramsObj.apiUrl = "WorkOrder/GetDWDealList"
247
-        			paramsObj.tabFirstText = "业务协同"
248
-        			paramsObj.tabSecondText = "已查收"
249
-        			paramsObj.params.tab = 1
250
-        			break;	
251
-        		case "secondYsqth":	//二级单位已申请退回
252
-        			paramsObj.apiUrl = "WorkOrder/GetDWDealList"
253
-        			paramsObj.tabFirstText = "业务协同"
254
-        			paramsObj.tabSecondText = "已申请退回"
255
-        			paramsObj.params.tab = 2
256
-        			break;
257
-        		case "secondYsqys":	//二级单位已申请延时
258
-        			paramsObj.apiUrl = "WorkOrder/GetDWDealList"
259
-        			paramsObj.tabFirstText = "业务协同"
260
-        			paramsObj.tabSecondText = "已申请延时"
261
-        			paramsObj.params.tab = 3
262
-        			break;
263
-        		default:	// 查询工单 
264
-        			paramsObj.apiUrl = "WorkOrder/GetList"
265
-        			paramsObj.tabSecondText = "查询工单"
266
-        			break;
267
-        	}
268
-        	return paramsObj
269
-        }
270
-    </script>
271
-</body>
272
-
273
-</html>

File diff suppressed because it is too large
+ 322 - 804
WebUI/CallCenterWeb.UI/commonWorderList/orderListBF.html