浏览代码

修改 外呼任务报表

fanlongfei 7 年之前
父节点
当前提交
a649fe555f

+ 1 - 1
CallCenterWeb.UI/OutboundMessage/Dr.html

@@ -5,7 +5,7 @@
5 5
 		<meta charset="UTF-8">
6 6
 		<script src="../Script/Common/huayi.load.js"></script>
7 7
 		<script src="../Script/Common/huayi.config.js"></script>
8
-		<!--		<script src="../js/visit/ajaxfileupload.js"></script>-->
8
+		<!--<script src="../js/visit/ajaxfileupload.js"></script>-->
9 9
 		<title>导入号码</title>
10 10
 		<style>
11 11
 			.btn-success {

+ 4 - 4
CallCenterWeb.UI/Questionnaire/Tasks.html

@@ -66,13 +66,13 @@
66 66
 					<div class="seach-box fr">
67 67
 						<ul>
68 68
 							<li>任务列表:
69
-								<select name="" id="cljg" class="x-color select"></select>
69
+								<select id="cljg" class="x-color select"></select>
70 70
 							</li>
71 71
 							<li>问题列表:
72
-								<select name="" id="Wt" class="x-color select"></select>
72
+								<select id="Wt" class="x-color select"></select>
73 73
 							</li>
74 74
 							<li>乡镇:
75
-								<select name="" id="country" class="x-color select">
75
+								<select id="country" class="x-color select">
76 76
 									<option value="">--全部--</option>
77 77
 								</select>
78 78
 							</li>
@@ -182,7 +182,7 @@
182 182
 							var Count = data.data;
183 183
 //							$("<option value=''>--全部--</option>").appendTo($("#Wt"));
184 184
 							for(var i = 0; i < Count.length; i++) {
185
-								$("<option value='" + Count[i].F_CategoryId + "'>" + Count[i].F_Title + "</option>").appendTo($("#Wt"));
185
+								$("<option value='" + Count[i].F_QuestionId + "'>" + Count[i].F_Title + "</option>").appendTo($("#Wt"));
186 186
 							}
187 187
 						} else {
188 188
 							$("<option value=''>--暂无数据--</option>").appendTo($("#Wt"));

+ 1 - 1
CallCenterWeb.UI/js/WorkOrder/WorkDeal.js

@@ -100,7 +100,7 @@ function getDealDept() {
100 100
 		token: $.cookie("token")
101 101
 	}, function(result) {
102 102
 		if(result.state.toLowerCase() == "success") {
103
-			$('<option value="">请选择</option>').appendTo("#xl_box");
103
+			$('<option value="0">请选择</option>').appendTo("#xl_box");
104 104
 			for(var i = 0; i < result.data.length; i++) {
105 105
 				$('<option value="' + result.data[i].F_DictionaryValueId + '">' + result.data[i].F_Name + '</option>').appendTo("#xl_box");
106 106
 			}