portal html css js resource

platTiding.js 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. $(document).ready(function () {
  2. var userid = $.cookie("userid");
  3. var objp = {};
  4. var imgUrl = "";
  5. var timerset;
  6. var oflag = false;
  7. var pd = false;
  8. loginStatus(); //判断个人是否登录
  9. $(".list_body").niceScroll({
  10. cursorcolor: "#999999"
  11. });
  12. $(".chat_body.clearfix").niceScroll({
  13. cursorcolor: "#999999"
  14. });
  15. messageList();
  16. setInterval(messageList,5000)
  17. function messageList() {
  18. $.ajax({
  19. "url": "/ajax/platform/msg/idx",
  20. "type": "get",
  21. "async": true,
  22. "data": {
  23. 'provider': userid
  24. },
  25. "success": function (data) {
  26. if (data.success) {
  27. getTotalMessage();
  28. unReadedCount(userid)
  29. $(".list_body").html("");
  30. var $data = data.data;
  31. for (var i = 0; i < $data.length; i++) {
  32. var num = "none"
  33. if ($data[i].unread) {
  34. num = "block";
  35. }
  36. var ostr = '<div class="list_item clearfix" data-id="' + $data[i].requestor + '">' +
  37. '<i class="close_icon"></i>' +
  38. '<div class="avatar fl">' +
  39. '<img src="images/default-photo.jpg">' +
  40. '<span class="tips_num" style="display:' + num + '">' + $data[i].unread + '</span>' +
  41. '</div>' +
  42. '<div class="list_item_info fl">' +
  43. '<div class="user_infos">' +
  44. '<span class="user_name"> </span><em class="authiconNew"></em>' +
  45. '</div>' +
  46. '<span class="time">' + commenTime($data[i].opTime) + '</span><span class="last_news">' + ($data[i].cnt).replace(/\n/g, "<br />") + '</span>' +
  47. '</div>' +
  48. '</div>'
  49. var $str = $(ostr);
  50. if(oflag) {
  51. if (objp.requestor === $data[i].requestor) {
  52. $str.addClass('active');
  53. }
  54. }
  55. $(".list_body").append($str);
  56. var oMess = {
  57. "provider": $data[i].provider,
  58. "pid": $data[i].pid,
  59. "requestor": $data[i].requestor
  60. }
  61. $str.attr("dataobj", JSON.stringify(oMess))
  62. personMess($data[i].requestor, $str.find('img'), $str.find(".user_name"), $str.find(".authiconNew"));
  63. }
  64. if ($data.length === 0) {
  65. $(".list_body").html('<div class="list_item clearfix" style="text-align:center;margin-top:15px;">暂无消息</div>');
  66. }
  67. }
  68. },
  69. "error": function () {
  70. $.MsgBox.Alert('提示', '服务器连接超时');
  71. }
  72. });
  73. }
  74. //专家信息
  75. function personMess(id, pImg, pName, pTitle) {
  76. $.ajax({
  77. "url": platUrl + "/ajax/sys/user/get",
  78. "data": {
  79. id: id
  80. },
  81. "type": "GET",
  82. "traditional": true,
  83. "dataType": "json",
  84. "success": function (data) {
  85. if (data.success) {
  86. var $data = data.data;
  87. var userType = autho($data.authType, $data.orgAuth, $data.authStatus);
  88. pTitle.attr("title", userType.title).addClass(userType.sty);
  89. pName.text($data.name || $data.account);
  90. var img="";
  91. if ($data.head) {
  92. pImg.attr("src", $data.head);
  93. img = $data.head;
  94. } else {
  95. pImg.attr("src", '/images/default-photo.jpg');
  96. img = '/images/default-photo.jpg';
  97. }
  98. var str = ''
  99. if ( $data.comp) {
  100. if ($data.job) {
  101. str = $data.comp+","+ $data.job;
  102. } else {
  103. str = $data.comp
  104. }
  105. } else {
  106. if ($data.job) {
  107. str = $data.job;
  108. }
  109. }
  110. var oMess = {
  111. "name": $data.name || $data.account,
  112. "idf": userType,
  113. "id": $data.id,
  114. "duties": str,
  115. "img":img
  116. }
  117. pImg.parents(".list_item").attr("data", JSON.stringify(oMess))
  118. }
  119. },
  120. "error": function (err) {
  121. $.MsgBox.Alert('提示', '服务器连接超时');
  122. }
  123. });
  124. }
  125. function ci(e) {
  126. var elem = e.target;
  127. if (elem.tagName.toLowerCase() === 'img') {
  128. var $this = $(elem);
  129. $this.attr("src", "/images/default-photo.jpg");
  130. }
  131. }
  132. document.addEventListener("error", ci, true /*指定事件处理函数在捕获阶段执行*/);
  133. /*切换*/
  134. $(".list_body").on("click", ".list_item", function () {
  135. oflag = true;
  136. pd = true;
  137. if(timerset) {
  138. clearInterval(timerset);
  139. }
  140. $(this).addClass("active").siblings().removeClass("active");
  141. if ($(this).find(".tips_num").css("display") == "block") {
  142. $('.mymessage .badge').text(Number($('.mymessage .badge').text()) - Number($(this).find(".tips_num").text()));
  143. if ($('.mymessage .badge').text() == 0) {
  144. $(".mymessage .badge").text("");
  145. }
  146. }
  147. $(this).find(".tips_num").text(0).hide();
  148. if ($(".usepro .user_name").css("display") == "block") {
  149. if ($(this).find(".user_name").text() == $(".usepro .user_name").text()) {
  150. return;
  151. }
  152. }
  153. $(".chat_content_nodata").hide();
  154. $(".chat_content").show();
  155. var pro = JSON.parse($(this).attr("data"));
  156. $(".usepro").find(".user_name").text(pro.name).siblings(".authiconNew").addClass(pro.idf.sty).attr("title", pro.idf.title).parent().siblings(".chating_resume_status").text(pro.duties);
  157. var dataobj = JSON.parse($(this).attr('dataobj'));
  158. objp = dataobj;
  159. imgUrl = JSON.parse($(this).attr('data')).img;
  160. if (Number($(this).find(".tips_num").text())) {
  161. angleMessageList(dataobj, true);
  162. } else {
  163. angleMessageList(dataobj);
  164. }
  165. getPlatName(objp.pid)
  166. timerset=setInterval(function() {
  167. angleMessageList(dataobj);
  168. },5000)
  169. });
  170. function getPlatName(pid) {
  171. $.ajax({
  172. url: "/ajax/platform/info",
  173. type: "GET",
  174. timeout: 10000,
  175. dataType: "json",
  176. traditional:true,
  177. data:{
  178. id: pid
  179. },
  180. success: function(data) {
  181. if(data.success) {
  182. $('#cUserPage').text('来自:'+data.data.name);
  183. }
  184. },
  185. error: function() {
  186. $.MsgBox.Alert('提示', '链接服务器超时')
  187. }
  188. })
  189. }
  190. getKexiuTotal()
  191. function getKexiuTotal() {
  192. $.ajax({
  193. url: "ajax/webMsg/unReadedCount",
  194. type: "GET",
  195. timeout: 10000,
  196. dataType: "json",
  197. traditional:true,
  198. data:{
  199. id: userid
  200. },
  201. success: function(data) {
  202. if(data.success) {
  203. if(data.data) {
  204. $('.kexiuTotal').text('('+data.data+')');
  205. } else {
  206. $('.kexiuTotal').text('');
  207. }
  208. }
  209. },
  210. error: function() {
  211. $.MsgBox.Alert('提示', '链接服务器超时')
  212. }
  213. })
  214. }
  215. function getTotalMessage() {
  216. $.ajax({
  217. url: "/ajax/platform/msg/unread",
  218. type: "GET",
  219. timeout: 10000,
  220. dataType: "json",
  221. traditional:true,
  222. data:{
  223. provider: userid
  224. },
  225. success: function(data) {
  226. if(data.success) {
  227. if(data.data) {
  228. $('.mesTotal').text('('+data.data+')');
  229. } else {
  230. $('.mesTotal').text('');
  231. }
  232. }
  233. },
  234. error: function() {
  235. $.MsgBox.Alert('提示', '链接服务器超时')
  236. }
  237. })
  238. }
  239. function angleMessageList(info) {
  240. $.ajax({
  241. "url": "/ajax/platform/msg/rec",
  242. "type": "get",
  243. "async": true,
  244. "data": info,
  245. "success": function (data) {
  246. if (data.success) {
  247. $(".chat_body_list").html("")
  248. var $data = data.data;
  249. if ($data.length) {
  250. if (arguments[1]) {
  251. setRead(info);
  252. }
  253. for (var i = $data.length - 1; i >= 0; i--) {
  254. var le = "";
  255. var flo = 'fl';
  256. var wei = "";
  257. var fCo = "C_end";
  258. var timeG = '';
  259. var headImg = '';
  260. if ($data[i].msgType) {
  261. le = "me";
  262. flo = "fr";
  263. if ($data[i].readed) {
  264. wei = '<em class="is_readed"></em>';
  265. } else {
  266. wei = '<em class="is_readed"></em>';
  267. }
  268. fCo = "B_end";
  269. headImg = '/images/head/' + userid + '_l.jpg';
  270. } else {
  271. headImg = imgUrl;
  272. }
  273. if (i == 0) {
  274. timeG = anTime($data[i].opTime);
  275. } else {
  276. timeG = compareTime($data[i].opTime, $data[i - 1].opTime)
  277. }
  278. var oStr = '<span class="time" data-createtime="' + $data[i].opTime + '">' + timeG + '</span>' +
  279. '<div class="chat_item ' + le + '">' +
  280. '<div class="clearfix">' +
  281. '<div class="item_avatar fl">' +
  282. '<img src="'+headImg+'">' +
  283. '</div>' +
  284. '<div class="item_content ' + flo + '">' +
  285. wei +
  286. '<div class="bubble message ' + fCo + '">' + ($data[i].cnt).replace(/\n/g, "<br />") + '</div>' +
  287. '</div>' +
  288. '</div>' +
  289. '</div>'
  290. $(".chat_body_list").append(oStr);
  291. }
  292. $(".chat_body.clearfix").getNiceScroll().hide().show().resize();
  293. if (pd) {
  294. $(".chat_body.clearfix").getNiceScroll(0).doScrollTop($(".chat_body_list").height(), 100);
  295. pd = false;
  296. }
  297. }
  298. }
  299. },
  300. "error": function () {
  301. $.MsgBox.Alert('提示', '服务器连接超时');
  302. }
  303. });
  304. }
  305. /*让消息置为已读*/
  306. function setRead(data) {
  307. $.ajax({
  308. "url": "/ajax/platform/msg/readed",
  309. "type": "POST",
  310. "traditional": true,
  311. "data": data,
  312. "dataType": "json",
  313. "success": function (data) {
  314. if (data.success) {
  315. }
  316. },
  317. "error": function () {
  318. $.MsgBox.Alert('提示', '服务器连接超时');
  319. }
  320. });
  321. }
  322. /*超过时间10min*/
  323. function timeC(startTime) {
  324. var startdate = new Date(); 20190124155759
  325. startdate.setFullYear(parseInt(startTime.substring(0, 4)));
  326. startdate.setMonth(parseInt(startTime.substring(4, 6)) - 1);
  327. startdate.setDate(parseInt(startTime.substring(6, 8)));
  328. startdate.setHours(parseInt(startTime.substring(8, 10)));
  329. startdate.setMinutes(parseInt(startTime.substring(10, 12)));
  330. startdate.setSeconds(parseInt(startTime.substring(12, 14)));
  331. return startdate.getTime();
  332. }
  333. function compareTime(startTime, secondTime) {
  334. var date3 = timeC(secondTime) - timeC(startTime); //时间差的毫秒数
  335. if (date3 >= 600000) {
  336. if (new Date().getFullYear() == secondTime.substring(0, 4)) {
  337. return secondTime.substring(4, 6).replace(/\b(0+)/gi, "") + "月" + secondTime.substring(6, 8).replace(/\b(0+)/gi, "") + "日 " + secondTime.substring(8, 10) + ":" + secondTime.substring(10, 12);
  338. } else {
  339. return secondTime.substring(0, 4) + "年" + secondTime.substring(4, 6).replace(/\b(0+)/gi, "") + "月" + secondTime.substring(6, 8).replace(/\b(0+)/gi, "") + "日 " + secondTime.substring(8, 10) + ":" + secondTime.substring(10, 12);
  340. }
  341. } else {
  342. return '';
  343. }
  344. }
  345. function anTime(secondTime) {
  346. if (new Date().getFullYear() == secondTime.substring(0, 4)) {
  347. return secondTime.substring(4, 6).replace(/\b(0+)/gi, "") + "月" + secondTime.substring(6, 8).replace(/\b(0+)/gi, "") + "日 " + secondTime.substring(8, 10) + ":" + secondTime.substring(10, 12);
  348. } else {
  349. return secondTime.substring(0, 4) + "年" + secondTime.substring(4, 6).replace(/\b(0+)/gi, "") + "月" + secondTime.substring(6, 8).replace(/\b(0+)/gi, "") + "日 " + secondTime.substring(8, 10) + ":" + secondTime.substring(10, 12);
  350. }
  351. }
  352. /*发送信息*/
  353. function sendMessage(par) {
  354. par.cnt = $('.messContent').val();
  355. $.ajax({
  356. "url": "/ajax/platform/msg/send",
  357. "type": "POST",
  358. "traditional": true,
  359. "data": par,
  360. "dataType": "json",
  361. "success": function (data) {
  362. if (data.success) {
  363. $(".btnModel").attr("disabled", "disabled");
  364. angleMessageList(objp)
  365. $(".messContent").val("");
  366. pd = true;
  367. }
  368. },
  369. "error": function () {
  370. $.MsgBox.Alert('提示', '服务器连接超时');
  371. }
  372. });
  373. }
  374. $(".btnModel").click(function () {
  375. sendMessage(objp);
  376. })
  377. $(".messContent").on("input", function () {
  378. if ($.trim($(this).val()) == "") {
  379. $('.btnModel').attr("disabled", "disabled");
  380. } else {
  381. $('.btnModel').removeAttr("disabled");
  382. }
  383. })
  384. /*删除会话*/
  385. var $that;
  386. $(".list_body").on("click", ".close_icon", function() {
  387. var dataobj = JSON.parse($(this).parents('.list_item').attr('dataobj'));
  388. objp = dataobj;
  389. if(timerset) {
  390. clearInterval(timerset);
  391. }
  392. oflag = false;
  393. $that = $(this)
  394. $.MsgBox.Confirm("提示", "确定删除?", deleChat);
  395. return false;
  396. })
  397. /*会话删除函数*/
  398. function deleChat() {
  399. $.ajax({
  400. "url": "/ajax/platform/msg/delete",
  401. "type": "POST",
  402. "traditional": true,
  403. "data": objp,
  404. "context": $that.parents(".list_item"),
  405. "dataType": "json",
  406. "success": function(data) {
  407. if(data.success) {
  408. $(this).remove();
  409. $(".chat_content_nodata").show();
  410. $(".chat_content").hide();
  411. getTotalMessage();
  412. unReadedCount(userid)
  413. }
  414. },
  415. "error": function() {
  416. $.MsgBox.Alert('提示', '服务器连接超时');
  417. }
  418. });
  419. }
  420. })