d123 лет назад: 8
Родитель
Сommit
557c104866

+ 1 - 2
CallCenterWeb.UI/Questionnaire/QuestionSetting.html

@@ -59,7 +59,7 @@
59 59
 			#tbr td {
60 60
 				padding: 10px;
61 61
 				padding: 6px 0 5px 10px;
62
-				text-align: left;
62
+				
63 63
 				color: #717171;
64 64
 				line-height: 200%;
65 65
 				border-top: 1px dotted #cccccc;
@@ -223,7 +223,6 @@
223 223
 	 			arr.push(index+'_'+val);
224 224
 	 			
225 225
 	 		})
226
-	 		console.log(arr)
227 226
 	
228 227
 	 	})
229 228
 	 </script>

+ 0 - 7
CallCenterWeb.UI/Questionnaire/addSetting.html

@@ -11,14 +11,7 @@
11 11
 		<script src="../js/Questions/bootstrap-editable.js"></script>
12 12
 		<title></title>
13 13
 		<style>
14
-			table tr {
15
-				margin-bottom: 20px;
16
-			}
17 14
 			
18
-			table tr td {
19
-				text-align: left;
20
-				padding: 5px;
21
-			}
22 15
 			
23 16
 			.Content {
24 17
 				padding: 10px;

+ 1 - 24
CallCenterWeb.UI/js/Questions/QuestionSetting.js

@@ -15,7 +15,6 @@ var $tableLeft = $('#tbr');
15 15
 var $tableLeft1 = $('#tb1');
16 16
 var token = $.cookie("token");
17 17
 IndexCategoryGe();
18
-Select();
19 18
 //所有指标
20 19
 $(".rightAll").click(function() {
21 20
 	Finish();
@@ -171,28 +170,7 @@ $(".leftChange ").click(function() {
171 170
 	}
172 171
 })
173 172
 
174
-//下拉框
175
-function Select() {
176
-	$.ajax({
177
-		type: "get",
178
-		url: huayi.config.callcenter_url + "IndexCategory/GetList",
179
-		//	url:'//117.158.196.116:8878/IndexCategory/GetList',
180
-		dataType: 'json',
181
-		async: true,
182
-		data: {
183
-			token: token
184
-		},
185
-		success: function(data) {
186
-			console.log(data.rows);
187
-			var conent = data.rows;
188
-			for(var i = 0; i < conent.length; i++) {
189
-				if(conent[i].F_ParentId == 0) {
190
-					$('<option value="' + conent[i].F_ParentId + '">' + conent[i].F_CategoryName + '</option>').appendTo($("#Left_ParentId"))
191
-				}
192
-			}
193
-		}
194
-	});
195
-}
173
+
196 174
 
197 175
 
198 176
 //增加
@@ -223,7 +201,6 @@ function XQ(Left_Cids) {
223 201
 		},
224 202
 		success: function(data) {
225 203
 			if(data.state.toLowerCase() == 'success') {
226
-				console.log(data);
227 204
 				$('.Title').text(data.data.F_Title);
228 205
 				$(".F_Remark").text(data.data.F_Remark);
229 206
 				var Questions = data.data.F_Questions;