|
|
@@ -3,7 +3,6 @@ var id = helper.request.queryString("ids");
|
|
3
|
3
|
var phone = helper.request.queryString("phone");
|
|
4
|
4
|
var CallID = helper.request.queryString("CallID");
|
|
5
|
5
|
var cusid = 0;
|
|
6
|
|
-var seartGroup = '';
|
|
7
|
6
|
$(document).ready(function() {
|
|
8
|
7
|
if (phone) {
|
|
9
|
8
|
$("#formTel").val(phone)
|
|
|
@@ -98,7 +97,7 @@ $('.customerSubmit').click(function() {
|
|
98
|
97
|
CasePartyId: $("#formComplaintUndertaker").val(), //投诉案件承办人id
|
|
99
|
98
|
citizensType: $("#formCitizenClassification").val(), //市民分类
|
|
100
|
99
|
putRecord: $("#formPutRecord input[name='putRecord']:checked").val(), //是否立案
|
|
101
|
|
- zXZType: seartGroup, //坐席组类型
|
|
|
100
|
+ zXZType: $.cookie("seatGroupName"), //坐席组类型
|
|
102
|
101
|
problemType: $("#formQuestionLevel").val(), //问题类型
|
|
103
|
102
|
ProblemTypeB: $("#formQuestionType").val(), //二级问题类型B
|
|
104
|
103
|
}, function(result) {
|
|
|
@@ -319,23 +318,6 @@ $("#formCity").on('change',function(){
|
|
319
|
318
|
getProvinceCounty($("#formCounty"), $("#formCity").val(), "请选择县/区");
|
|
320
|
319
|
});
|
|
321
|
320
|
|
|
322
|
|
-//获取当前登陆人信息
|
|
323
|
|
-function getCurrentLoginInformation(){
|
|
324
|
|
- $.ajax({
|
|
325
|
|
- type: "get",
|
|
326
|
|
- url: huayi.config.callcenter_url + 'UserAccount/GetNowUser',
|
|
327
|
|
- async: true,
|
|
328
|
|
- dataType: 'json',
|
|
329
|
|
- data: {
|
|
330
|
|
- "token": $.cookie("token")
|
|
331
|
|
- },
|
|
332
|
|
- success: function(data) {
|
|
333
|
|
- seartGroup = data.data.user.F_SeartGroup;
|
|
334
|
|
- currentLogInAgentGroup();
|
|
335
|
|
- }
|
|
336
|
|
- });
|
|
337
|
|
-}
|
|
338
|
|
-
|
|
339
|
321
|
//当前登陆人判断字段
|
|
340
|
322
|
function currentLogInAgentGroup() {
|
|
341
|
323
|
var seatGroupCode = $.cookie("seatGroupCode")
|