$(function(){
$(".onlogin .headnavbtn li").eq(0).addClass("navcurrent");
loginStatus();//判断个人是否登录
})
//用户id
var userid = $.cookie("userid");
//getConsultData参数
var pageSize = 5;
var pageNo, isbind, status, timeType, sortType;
getMyData(pageSize, 1, true, 0, 1, 0);
myRequirePullDownMenu();
function getMyData(pageSize, pageNo, isbind, status, timeType, sortType) {
var params = {
"consultantId": userid, //专家ID
"status": status, //查询状态 0-全部,1-进行中,2-未感谢,3-未评价,4-已完成, 可以不传,默认为0
"timeType": timeType, //排序目的 0-按发起时间,1-按最后回复时间,2-按完成时间 默认为0
"sortType": sortType, //排序目的 0-倒序,1-正序 默认为0
"pageSize": pageSize, //每页记录数 默认为5
"pageNo": pageNo //当前页码 默认为1
};
$.ajax({
url: "/ajax/consult/pqCon", //收到回复接口
type: "get",
data: params,
dataType: "json",
contentType: "application/x-www-form-urlencoded",
success: function(response) {
//数据为空时
if(response["data"]["data"] == null || response["data"]["data"] == undefined || response["data"]["data"] == "") {
return;
} else {
//拿到收到回复数据
var replyStr;
var allData = response.data;
var myData = allData.data;
$("#workContainer2").html("");
if(myData.length != 0 && myData.length != null) {
replyStr = handleData(myData, "consultId", "lookBtn");
$("#workContainer2").append(replyStr);
} else {
return false;
};
//分页
if(isbind == true) {
$(".getReplyPage").createPage({
pageCount: Math.ceil(allData.total / pageSize),
current: allData.pageNo,
backFn: function(p) {
getMyData(pageSize, p, false, status, timeType, sortType);
}
});
}
}
},
error: function(response) {
//收到回复错误返回
$.MsgBox.Alert('提示', "收到回复数据请求失败");
},
});
};
//data:需要处理的数据,htmlStr:页面中需要的html字符串拼接,
//attrParams:数据中不同的参数比如:收到咨询是professorId,收到答复:consultantId
function handleData(data, attrParams, btnCls) {
var htmlStr = '';
var title,
office,
orgName,
department,
address;
for(var i = 0; i < data.length; i++) {
//text:回复/查看,state:进行中/已完成/未评价,photoUrl:头像地址,proModify:专家认证
var text, state, stateStyle, photoUrl, proModify;
var modifyclass = '';
if(data[i]["professor"]) { //过滤没有专家对象的数据
if(data[i]["consultStatus"] == 0) {
state = "进行中";
stateStyle = 'status-1';
text = '回复';
} else if(data[i]["consultStatus"] == 1) {
text = "查看";
state = "已完成";
stateStyle = 'status-3';
if(attrParams == 'consultId') {
if(data[i]["assessStatus"] == 0) {
state = "待评价";
stateStyle = 'status-2';
}
}
} else if(data[i]["consultStatus"] == 2) {
text = "查看";
state = "待回复";
stateStyle = 'status-4';
} else if(data[i]["consultStatus"] == 3) {
text = "查看";
state = "被谢绝";
stateStyle = 'status-5';
} else if(data[i]["consultStatus"] == undefined) {
text = "";
state = "";
}
//专家头像
if(data[i]["professor"]["hasHeadImage"] == 0) {
photoUrl = "images/default-photo.jpg"
} else {
photoUrl = "images/head/" + data[i]["professor"]["id"] + "_l.jpg"
};
//认证
var oSty=autho(data[i]["professor"].authType,data[i]["professor"].orgAuth,data[i]["professor"].authStatus);
modifyclass = oSty.sty;
//未读消息
var unread = unreadConsultFn(userid, data[i]["consultId"], i);
htmlStr += "
" +
"
" +
"" +
"" +
"" +
"" + unread.unreadCount + "" +
" | " +
"" +
"";
if(data[i]["professor"]["title"]) {
htmlStr += "" + data[i]["professor"]["title"] + ", ";
};
if(data[i]["professor"]["office"]) {
if(data[i]["professor"]["orgName"] || data[i]["professor"]["department"]) {
htmlStr += "" + data[i]["professor"]["office"] + ", ";
} else {
htmlStr += "" + data[i]["professor"]["office"] + "";
}
};
if(data[i]["professor"]["orgName"]) {
if(data[i]["professor"]["department"]) {
htmlStr += "" + data[i]["professor"]["orgName"] + ", ";
} else {
htmlStr += "" + data[i]["professor"]["orgName"] + "";
}
};
if(data[i]["professor"]["department"]) {
htmlStr += "" + data[i]["professor"]["department"] + "";
};
if(data[i]["professor"]["address"]) {
htmlStr += ' | ' + "" + data[i]["professor"]["address"] + "";
};
htmlStr += "" +
"咨询主题: " + data[i]["consultTitle"] + " " +
"" + lastReplyFn(userid, data[i]["consultId"])["lastReplyTime"] + "" +
"" + lastReplyFn(userid, data[i]["consultId"])["lastReplyCon"] + " " +
" " +
"" +
" " +
" " +
text +
"" +
" ..." +
" " +
" " +
" " +
"" + state + "" +
" " +
" " +
"" + data[i]["consultType"] + "" +
" " +
" " +
" | " +
"
" +
"
";
}
};
return htmlStr;
};
//未读信息接口
function unreadConsultFn(senderId, consultId, i) {
var unreadCount, style;
var params = {
"senderId": senderId, //发送者ID
"consultId": consultId //咨询ID
};
$.ajax({
url: "/ajax/tidings/qaNotReadTidings",
type: "get",
async: false,
data: params,
success: function(response) {
unreadCount = response["data"];
if(unreadCount == 0) {
style = "display:none;"
} else {
style = "display:block;"
}
},
error: function(error) {
$.MsgBox.Alert('提示', "未读消息请求失败");
}
});
return {
"unreadCount": unreadCount,
"style": style
}
};
//列表最后回复
function lastReplyFn(sendId, consultId) {
var lastReplyTimeData, lastReplyTime, lastReplyCon;
$.ajax({
url: "/ajax/tidings/qaLastRevovery",
async: false,
data: {
"consultId": consultId, //咨询ID
"senderId": sendId //登录者ID
},
success: function(response) {
// console.log(response)
if(response["data"] == null || response["data"] == "" || response["data"] == undefined) {
lastReplyTimeData = '';
lastReplyTime = '';
lastReplyCon = '';
} else {
lastReplyTimeData = response["data"]["createTime"];
lastReplyTime = lastReplyTimeData.substr(0, 4) + "-" + lastReplyTimeData.substr(4, 2) + "-" + lastReplyTimeData.substr(6, 2) + " " + lastReplyTimeData.substr(8, 2) + ":" + lastReplyTimeData.substr(10, 2)
lastReplyCon = response["data"]["tidingsContant"];
}
},
error: function(error) {
$.MsgBox.Alert('提示', "最后回复数据失败");
}
});
return {
"lastReplyTime": lastReplyTime,
"lastReplyCon": lastReplyCon
};
};
//我的咨询下拉菜单处理函数
function myRequirePullDownMenu() {
//点击下拉菜单
$(".replyOption ul").find("li").click(function() {
status = $(this).attr("tip");
timeType = $("#showTimeSort2").attr("tim");
sortType = $("#timeSortId2").val();
$("#workContainer2").remove();
$("#wode").append('')
$(".getReplyPage").remove();
$("#wode").append('');
//console.log(status + timeType + sortType);
getMyData(pageSize, 1, true, status, timeType, sortType);
});
$(".timeOption2 ul").find("li").click(function() {
status = $("#showStatus2").attr("tip");
timeType = $(this).attr("tim");
sortType = $("#timeSortId2").val();
$("#workContainer2").remove();
$("#wode").append('')
$(".getReplyPage").remove();
$("#wode").append('');
//console.log(status + timeType + sortType);
getMyData(pageSize, 1, true, status, timeType, sortType);
});
var sortFlag2 = true;
$("#replyArrow").click(function() {
if(sortFlag2 == true) {
$(this).find("div").css("background-position", "-20px 1px");
$("#timeSortId2").val("1");
sortFlag2 = false;
} else {
$(this).find("div").css("background-position", "0px 1px");
$("#timeSortId2").val("0");
sortFlag2 = true;
};
status = $("#showStatus2").attr("tip");
timeType = $("#showTimeSort2").attr("tim");
sortType = $("#timeSortId2").val();
$("#workContainer2").remove();
$("#wode").append('')
$(".getReplyPage").remove();
$("#wode").append('');
//console.log(status + timeType + sortType);
getMyData(pageSize, 1, true, status, timeType, sortType);
});
};
//咨询和回复中点击查看或者回复
function clickLookBtn2(sendId, attrParams, consultId, consultStatus, assessStatus, thanksStatus) {
window.location.href = "diloags.html?sendId=" + sendId + "&attrParams=" + attrParams + "&consultId=" + consultId + "&consultStatus=" + consultStatus + "&assessStatus=" + assessStatus + "&thanksStatus=" + thanksStatus;
}
/*点击需求跳转不同页面*/
$("#odemand").on("click",function(){
$.ajax({
url:"/ajax/professor/auth",
dataType: 'json', //数据格式类型
type: 'GET', //http请求类型
timeout: 10000, //超时设置
data: {
"id": userid
},
success: function(data) {
if(data.success) {
var $data = data.data;
if($data.authType){
location.href="needList.html"
}else{
location.href="myDemand.html"
}
}
},
error: function() {
plus.nativeUI.toast("服务器链接超时", toastStyle);
return;
}
});
})