|
|
@@ -9,7 +9,7 @@
|
|
9
|
9
|
<script src="../Script/Common/huayi.config.js"></script>
|
|
10
|
10
|
<link href="../css/Table/table1.css" rel="stylesheet" />
|
|
11
|
11
|
<link href="../css/init.css" rel="stylesheet" />
|
|
12
|
|
- <link rel="stylesheet" type="text/css" href="../css/lookMsg.css"/>
|
|
|
12
|
+ <link rel="stylesheet" type="text/css" href="../css/lookMsg.css" />
|
|
13
|
13
|
</head>
|
|
14
|
14
|
|
|
15
|
15
|
<body class="gray-bg">
|
|
|
@@ -131,7 +131,7 @@
|
|
131
|
131
|
});
|
|
132
|
132
|
});
|
|
133
|
133
|
//获取乡镇下拉
|
|
134
|
|
- function getCountry(){
|
|
|
134
|
+ function getCountry() {
|
|
135
|
135
|
$.ajax({
|
|
136
|
136
|
type: "get",
|
|
137
|
137
|
url: huayi.config.callcenter_url + "Dictionary/GetDicValueListByFlag",
|
|
|
@@ -144,7 +144,7 @@
|
|
144
|
144
|
success: function(data) {
|
|
145
|
145
|
var res = data.data;
|
|
146
|
146
|
for(var i = 0; i < res.length; i++) {
|
|
147
|
|
- $('<option value="'+ res[i].F_DictionaryValueId +'">'+ res[i].F_Name +'</option>').appendTo($("#country"));
|
|
|
147
|
+ $('<option value="' + res[i].F_DictionaryValueId + '">' + res[i].F_Name + '</option>').appendTo($("#country"));
|
|
148
|
148
|
}
|
|
149
|
149
|
}
|
|
150
|
150
|
});
|
|
|
@@ -172,7 +172,7 @@
|
|
172
|
172
|
top.obj.Header = result.data.fix;
|
|
173
|
173
|
top.obj.TaskType = "1"; //0:拨号外呼;1:问卷外呼;
|
|
174
|
174
|
top.obj.TaskPhoneID = $("#F_Id").val(); //回访的电话ID
|
|
175
|
|
- //top.obj.TaskID = guid; //回访记录编号
|
|
|
175
|
+ //top.obj.TaskID = guid; //回访记录编号
|
|
176
|
176
|
top.obj.TaskID = $("#F_TaskId").val()
|
|
177
|
177
|
top.Send();
|
|
178
|
178
|
}
|
|
|
@@ -212,7 +212,7 @@
|
|
212
|
212
|
}
|
|
213
|
213
|
});
|
|
214
|
214
|
}
|
|
215
|
|
-
|
|
|
215
|
+
|
|
216
|
216
|
//获取呼叫结果
|
|
217
|
217
|
function GetHJJG() {
|
|
218
|
218
|
$.ajax({
|
|
|
@@ -300,11 +300,11 @@
|
|
300
|
300
|
hjjgid: $('input[name="check"]:checked').val(), //呼叫结果ID
|
|
301
|
301
|
//yhfkid: $('input[name="checks"]:checked').val(), //用户反馈ID
|
|
302
|
302
|
yhfkid: 0, //用户反馈ID
|
|
303
|
|
- telphone: $('#Phone_').text(),//电话号码,
|
|
304
|
|
- name: $('#Name_').val(),//姓名,
|
|
305
|
|
- phone: $('#callNum').val(),//固定号码,
|
|
306
|
|
- countryid: $('#country').val(),//乡镇id,
|
|
307
|
|
- address: $('#address').val(),//地址
|
|
|
303
|
+ telphone: $('#Phone_').text(), //电话号码,
|
|
|
304
|
+ name: $('#Name_').val(), //姓名,
|
|
|
305
|
+ phone: $('#callNum').val(), //固定号码,
|
|
|
306
|
+ countryid: $('#country').val(), //乡镇id,
|
|
|
307
|
+ address: $('#address').val(), //地址
|
|
308
|
308
|
token: $.cookie("token")
|
|
309
|
309
|
},
|
|
310
|
310
|
async: true,
|
|
|
@@ -343,9 +343,15 @@
|
|
343
|
343
|
for(var i = 0; i < Questions.length; i++) {
|
|
344
|
344
|
var questype = Questions[i].questype;
|
|
345
|
345
|
var Quesid = Questions[i].quesid;
|
|
|
346
|
+ var quesremark = Questions[i].quesremark; //试题说明
|
|
|
347
|
+ if(quesremark) {
|
|
|
348
|
+ quesremark = ' 【' + quesremark + '】';
|
|
|
349
|
+ } else {
|
|
|
350
|
+ quesremark = "";
|
|
|
351
|
+ }
|
|
346
|
352
|
html += '<li class="" name="ltype' + Quesid + '" >';
|
|
347
|
353
|
html += '<div class="Back ">';
|
|
348
|
|
- html += '<h3 class="size-14 QuesTitle" indexs="' + Questions[i].quesid + '">' + Questions[i].questitle + ' </h3>';
|
|
|
354
|
+ html += '<h3 class="size-14 QuesTitle" indexs="' + Questions[i].quesid + '">' + Questions[i].questitle + quesremark + ' </h3>';
|
|
349
|
355
|
html += '</div>';
|
|
350
|
356
|
//判断类型
|
|
351
|
357
|
if(questype == 2) {
|