portal html css js resource

consultSure.js 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. $(function(){
  2. $(".onlogin .headnavbtn li").eq(0).addClass("navcurrent");
  3. $(".workmenu>ul>li").eq(1).addClass("nowLi");
  4. loginStatus();//判断个人是否登录
  5. valUser();
  6. })
  7. //咨询确认
  8. $(function() {
  9. $(".onlogin .headnavbtn li").eq(0).addClass("navcurrent");
  10. var consultId = GetQueryString('consultId');
  11. var sendId = $.cookie("userid");
  12. var professorId = "professorId";
  13. var newtemp;
  14. consucentfun(consultId);
  15. /*点击确认接受咨询*/
  16. $("#consuOk").on("click", function() {
  17. $.MsgBox.Confirm("消息提醒", "确认回复此需求?", function() {
  18. okconsufun(consultId, sendId, professorId);
  19. });
  20. })
  21. //点击谢绝理由按钮
  22. $(".rejectTo").on("click", function() {
  23. $(this).parent(".basicBtn").hide();
  24. $(".demandBox").slideDown();
  25. })
  26. //谢绝理由选择
  27. $(".mutChecked").on('click', 'li', function() {
  28. if($(this).is('.checkedLi')) {
  29. $(this).removeClass('checkedLi');
  30. } else {
  31. $(this).addClass('checkedLi');
  32. }
  33. });
  34. //拒绝字数限制
  35. $(".frmtype").on('keyup', function() {
  36. var obj = $(this);
  37. checkLen(obj);
  38. });
  39. //谢绝理由提交
  40. $("#consuNo").on('click', function() {
  41. var frmtype = $(".frmtype").val();
  42. var arr = $(".mutChecked li.checkedLi span"),
  43. temp = [];
  44. for(var i = 0; i < arr.length; i++) {
  45. temp.push(arr[i].innerHTML);
  46. }
  47. if(frmtype == "") {
  48. newtemp = temp;
  49. } else {
  50. newtemp = temp.concat([frmtype]);
  51. }
  52. //console.log(JSON.stringify(newtemp))
  53. if(newtemp == "") {
  54. $.MsgBox.Alert('提示', "至少选择一个或输入谢绝缘由");
  55. } else {
  56. submtbut(consultId, sendId, newtemp);
  57. }
  58. });
  59. })
  60. /*确认接受咨询*/
  61. function okconsufun(consultId, sendId, professorId) {
  62. $.ajax({
  63. url: "/ajax/consult/agree",
  64. data: {
  65. "consultId": consultId
  66. }, //咨询ID
  67. dataType: 'json', //服务器返回json格式数据
  68. type: 'POST', //HTTP请求类型
  69. timeout: 10000, //超时时间设置为10秒;
  70. async: false,
  71. success: function(data) {
  72. if(data.success) {
  73. //console.log(JSON.stringify(data.success));
  74. window.location.href = "diloags.html?sendId=" + sendId + "&attrParams=" + professorId + "&consultId=" + consultId;
  75. }
  76. },
  77. error: function() {
  78. $.MsgBox.Alert('提示', "服务器链接超时");
  79. }
  80. });
  81. }
  82. /*获取咨询内容*/
  83. function consucentfun(consultId) {
  84. $.ajax({
  85. url: "/ajax/consult/qapro",
  86. data: {
  87. "consultId": consultId
  88. }, //咨询ID
  89. dataType: 'json', //服务器返回json格式数据
  90. type: 'GET', //HTTP请求类型
  91. timeout: 10000, //超时时间设置为10秒;
  92. async: false,
  93. success: function(data) {
  94. if(data.success) {
  95. //console.log(JSON.stringify(data.success));
  96. id = data.data.professor.id;
  97. var createTime = data.data.createTime.substr(0, 4) + "年" + data.data.createTime.substr(4, 2) + "月" + data.data.createTime.substr(6, 2) + "日 " + data.data.createTime.substr(8, 2) + ":" + data.data.createTime.substr(10, 2);
  98. $("#dialog_consultTitle").text(data.data.consultTitle);
  99. $("#dialog_consultTime").text(createTime);
  100. $("#dialog_consultType").text(data.data.consultType);
  101. $("#dialog_consultContent").text(data.data.consultContant);
  102. consufun(id);
  103. }
  104. },
  105. error: function() {
  106. $.MsgBox.Alert('提示', "服务器链接超时");
  107. }
  108. });
  109. }
  110. /*获取咨询者内容*/
  111. function consufun(id) {
  112. $.ajax({
  113. url: "/ajax/professor/editBaseInfo/" + id,
  114. dataType: 'json', //服务器返回json格式数据
  115. timeout: 10000, //超时时间设置为10秒 ;
  116. async: false,
  117. type: 'GET', //HTTP请求类型
  118. success: function(data) {
  119. if(data.success && data.data) {
  120. //console.log(JSON.stringify(data));
  121. var $info = data.data || {};
  122. $("#nameS").text($info.name);
  123. if($info.hasHeadImage == 1) {
  124. $(".imgProfess").attr("src", "/images/head/" + $info.id + "_l.jpg");
  125. } else {
  126. $(".imgProfess").attr("src", "/images/default-photo.jpg");
  127. }
  128. //认证
  129. var oSty=autho($info.authType,$info.orgAuth,$info.authStatus);
  130. $("#usermark").addClass(oSty.sty);
  131. $("#usermark").attr("title",oSty.title);
  132. if($info.title) {
  133. if($info.office) {
  134. $("#title").text($info.title + ",")
  135. } else {
  136. $("#title").text($info.title)
  137. }
  138. }
  139. if($info.office) {
  140. if($info.orgName) {
  141. $("#office").text($info.office + ",")
  142. } else {
  143. $("#office").text($info.office)
  144. }
  145. }
  146. $("#organization").text($info.orgName);
  147. }
  148. },
  149. error: function() {
  150. $.MsgBox.Alert('提示', "服务器链接超时");
  151. }
  152. });
  153. }
  154. /*拒绝字数限制*/
  155. function checkLen(obj) {
  156. var maxChars = 300; //最多字符数
  157. if(obj.val().length > maxChars) {
  158. obj.val() = obj.val().substring(0, maxChars);
  159. }
  160. var curr = maxChars - obj.val().length;
  161. $(".countNum").text(curr.toString());
  162. };
  163. /*谢绝理由提交*/
  164. function submtbut(consultId, sendId, newtemp) {
  165. $.ajax({
  166. url: "/ajax/consult/reject",
  167. data: {
  168. "consultId": consultId,
  169. "professorId": sendId,
  170. "reasons": newtemp
  171. }, //咨询ID
  172. dataType: 'json', //服务器返回json格式数据
  173. type: 'POST', //HTTP请求类型
  174. timeout: 10000, //超时时间设置为10秒;
  175. traditional: true, //传数组必须加这个
  176. success: function(data) {
  177. if(data.success) {
  178. $.MsgBox.Alert('提示', "已谢绝对方的咨询——您可以再看看其他需求。");
  179. setInterval (function(){
  180. window.location.href = "index.html";
  181. },1000);
  182. }
  183. },
  184. error: function() {
  185. $.MsgBox.Alert('提示', "服务器链接超时");
  186. }
  187. });
  188. }