portal html css js resource

leaveWord.js 9.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. (function(window) {
  2. function ajaxRequist(url, obj, type, fn) {
  3. $.ajax({
  4. url:url,
  5. data: obj,
  6. dataType: 'json', //服务器返回json格式数据
  7. type: type, //支持'GET'和'POST'
  8. traditional: true,
  9. success: function(data) {
  10. if(data.success) {
  11. fn(data.data)
  12. }
  13. },
  14. error: function(xhr, type, errorThrown) {
  15. $.MsgBox.Alert('提示', '服务器请求失败');
  16. }
  17. });
  18. }
  19. var LeaveWord = function() {
  20. var self = this;
  21. self.sid = module.sid;
  22. self.stype = module.stype;
  23. self.init( {
  24. sid: self.sid,
  25. stype: self.stype,
  26. rows: 5
  27. });
  28. self.bindEvent();
  29. self.LwordTotal();
  30. self.addHtml();
  31. }
  32. function lgin() {
  33. if($.cookie('userid') !="null") {
  34. return true;
  35. }
  36. quickLog();
  37. operatTab();
  38. closeLog();
  39. return false;
  40. }
  41. LeaveWord.prototype.addHtml=function() {
  42. $("body").append('<textarea class="txtArea" id="tt" style="position:absolute;top:0;left:-999px;"></textarea>')
  43. }
  44. LeaveWord.prototype.init = function(obj) {
  45. var id = $.cookie('userid');
  46. var self = this;
  47. ajaxRequist("/ajax/leavemsg/subject",obj, "GET", function(data) {
  48. (data.length>4)?$(".js-load-more").removeClass("displayNone"):$(".js-load-more").addClass("displayNone");
  49. if(!self.id) {
  50. $(".commentList").html("").append("<div class='con-kong displayNone'>暂无留言</div>");
  51. }
  52. if(data.length == 0) {
  53. return;
  54. }
  55. var oUrl=""
  56. if(location.href.indexOf("shtml")) {
  57. oUrl="../../../"
  58. }
  59. for(var i = 0; i < data.length; i++) {
  60. var reply="";
  61. if(data[i].reciver) {
  62. reply = '<span class="huifu">回复 </span><a href="'+oUrl+'userInforShow.html?professorId='+data[i].reciver+'" class="userhref"><span class="h2Font messageName">张某某</span><em class="authiconNew" title="科袖认证专家"></em></a>'
  63. }
  64. var itemlist = '<li class="li-item">';
  65. itemlist += '<a href="'+oUrl+'userInforShow.html?professorId='+data[i].sender+'" class="userhref"> <div class="madiaHead useHead useHeadMsg"></div></a>';
  66. itemlist += '<div class="madiaInfo">';
  67. itemlist += '<p><a href="'+oUrl+'userInforShow.html?professorId='+data[i].sender+'" class="userhref"><span class="h2Font messageName">张某某</span><em class="authiconNew" title="科袖认证专家"></em></a>'+reply+'<span class="commenttime" style="float:right;">'+commenTime(data[i].createTime)+'</span></p>';
  68. itemlist += '<p class="h2Font messageContent">'+data[i].cnt+'</p>';
  69. itemlist += '<div class="operateSpan">'
  70. itemlist += '<span class="dzthumb dzthumbCan"><em class="hold-icon icon-zan"></em><em class="agreeCount" style="margin-left: 6px;">'+data[i].agreeCount+'</em></span>'
  71. itemlist += '<span class="callBack">回复</span>'
  72. itemlist += '<span class="messageDel displayNone">删除</span></div>';
  73. itemlist += '<div class="displayNone replyLeword"><textarea class="txtArea"></textarea><p class="pTxt"><span class="qCancel">取消</span><button class="hReply btnModel" disabled>回复</button></p></div></div></li>';
  74. $itemlist = $(itemlist);
  75. $(".commentList").append($itemlist);
  76. $itemlist.attr('data-obj',JSON.stringify(data[i]));
  77. if(id == data[i].sender) {
  78. $itemlist.find(".dzthumb").removeClass("dzthumbCan");
  79. $itemlist.find(".messageDel").removeClass("displayNone").end().find(".callBack").hide();
  80. }
  81. if(data[i].reciver) {
  82. self.userInfo(data[i].sender, $itemlist, 0);
  83. self.userInfo(data[i].reciver, $itemlist, 1)
  84. } else {
  85. self.userInfo(data[i].sender, $itemlist, 0);
  86. }
  87. if(data[i].agreeCount)
  88. self.referThup(data[i].id, $itemlist);
  89. }
  90. self.time=data[data.length-1].createTime;
  91. self.id=data[data.length-1].id;
  92. })
  93. }
  94. LeaveWord.prototype.userInfo = function(uId, li, parNum) {
  95. ajaxRequist("/ajax/professor/editBaseInfo/" + uId, {}, "GET", function($data) {
  96. if(parNum == 0) {
  97. if($data.hasHeadImage == 1) {
  98. li.find(".useHead")[0].style.backgroundImage = "url(/images/head/" + $data.id + "_l.jpg" + ")";
  99. }
  100. li.find("textarea").attr("placeholder","回复 "+$data.name+":")
  101. }
  102. var userType = autho($data.authType, $data.orgAuth, $data.authStatus);
  103. li.find(".messageName").eq(parNum).html($data.name).end().end().find(".authiconNew").eq(parNum).addClass(userType.sty).attr("title",userType.title);
  104. })
  105. }
  106. LeaveWord.prototype.size = function() {
  107. if(this.val().length > 200) {
  108. $.MsgBox.Alert('提示', '留言不得超过200个字');
  109. return false;
  110. }
  111. return true;
  112. }
  113. LeaveWord.prototype.topLw = function() {
  114. var self = this;
  115. if(!self.size.call($(".msgCont")) ){
  116. return;
  117. }
  118. $.ajax({
  119. url:"/ajax/leavemsg",
  120. data: {
  121. cnt: $(".msgCont").val(),
  122. refId: self.sid,
  123. refType: self.stype,
  124. sender: $.cookie('userid'),
  125. uname: $.cookie('userName')
  126. },
  127. dataType: 'json',
  128. type: "POST",
  129. beforeSend: function() {
  130. $(".commentList").parent().siblings(".ifLogin").find(" .ifLoginOn input").attr("disabled","true");
  131. },
  132. traditional: true,
  133. success: function (data) {
  134. if (data.success) {
  135. $(".msgCont").val("");
  136. if (self.id) {
  137. delete self.id;
  138. delete self.time;
  139. }
  140. self.init({
  141. sid: self.sid,
  142. stype: self.stype,
  143. rows: 5
  144. });
  145. }
  146. }
  147. });
  148. }
  149. LeaveWord.prototype.autoGrow=function(){
  150. document.getElementById("tt").style.width=this.scrollWidth+"px";
  151. document.getElementById("tt").value=this.value;
  152. this.style.height=this.scrollHeight+"px";
  153. }
  154. LeaveWord.prototype.bindEvent = function() {
  155. var self = this;
  156. $("#meSendtt").click(function() {
  157. if(!lgin()) {
  158. return;
  159. }
  160. self.topLw();
  161. });
  162. $(".commentList").on("click", "li", function(e) {
  163. if(!lgin()) {
  164. return;
  165. }
  166. var obj=JSON.parse($(this).attr("data-obj")),
  167. target=e.target;
  168. switch (target.className){
  169. case "dzthumb dzthumbCan":self.thub.call(target, obj.id,obj.agreeCount);
  170. break;
  171. case "callBack":self.LwordBack(target, obj);
  172. break;
  173. case "messageDel":self.LwordDel(target, obj.id);
  174. break;
  175. case "hReply btnModel":self.replyLword(target,obj.id)
  176. break;
  177. case "qCancel": $(target).parent().siblings("textarea").val("").parents(".replyLeword").addClass("displayNone").siblings(".operateSpan").removeClass("displayNone")
  178. break;
  179. }
  180. });
  181. $(".msgCont").on("input",function(){
  182. if($.trim($(this).val()).length>0) {
  183. $("#meSendtt").removeAttr("disabled");
  184. }else{
  185. $("#meSendtt").attr("disabled","disabled");
  186. }
  187. })
  188. $(".commentList").on("input", "textarea", function(e) {
  189. if($.trim($(this).val()).length>0) {
  190. $(this).siblings().find(".btnModel").removeAttr("disabled");
  191. self.autoGrow.call(this);
  192. }else{
  193. $(this).siblings().find(".btnModel").attr("disabled","disabled");
  194. }
  195. })
  196. $(".js-load-more").click(function(){
  197. self.init({
  198. sid: self.sid,
  199. stype: self.stype,
  200. time: self.time,
  201. id: self.id,
  202. rows: 5
  203. });
  204. })
  205. }
  206. LeaveWord.prototype.referThup = function(lid, li, num) {
  207. ajaxRequist("/ajax/leavemsg/agree", {
  208. id: lid,
  209. uid: $.cookie('userid')
  210. }, "GET", function(data) {
  211. if(data) {
  212. li.find(".dzthumbCan").addClass("dzthumbed");
  213. }
  214. })
  215. }
  216. LeaveWord.prototype.thub = function(lid,num) {
  217. var self = this;
  218. ajaxRequist("/ajax/leavemsg/agree", {
  219. id: lid,
  220. uid: $.cookie('userid'),
  221. uname: $.cookie('userName')
  222. }, "POST", function(data) {
  223. $(self).addClass('dzthumbed').find(".agreeCount").html(num+1)
  224. })
  225. }
  226. LeaveWord.prototype.replyLword = function( $th,lid) {
  227. var self = this;
  228. if(!self.size.call($($th).parents(".pTxt").siblings("textarea")) ){
  229. return;
  230. }
  231. ajaxRequist("/ajax/leavemsg/reply", {
  232. cnt: $($th).parents(".pTxt").siblings("textarea").val(),
  233. id: lid,
  234. uid: $.cookie('userid'),
  235. uname: $.cookie('userName')
  236. }, "POST", function(data) {
  237. $($th).parents(".pTxt").siblings("textarea").val("").parents(".replyLeword").addClass("displayNone").siblings(".operateSpan").removeClass("displayNone")
  238. if(self.id) {
  239. delete self.id;
  240. delete self.time;
  241. }
  242. self.init({
  243. sid: self.sid,
  244. stype: self.stype,
  245. rows: 5
  246. });
  247. self.LwordTotal();
  248. })
  249. }
  250. LeaveWord.prototype.LwordDel = function($this, lid) {
  251. var self = this;
  252. ajaxRequist("/ajax/leavemsg/del", {
  253. id: lid
  254. }, "GET", function(data) {
  255. $($this).parents(".li-item").remove();
  256. self.LwordTotal();
  257. })
  258. }
  259. LeaveWord.prototype.LwordBack = function($this, lid) {
  260. $(".replyLeword").each(function(item){
  261. $(".replyLeword").eq(item).addClass("displayNone").siblings(".operateSpan").removeClass("displayNone");
  262. })
  263. $($this).parents(".operateSpan").addClass("displayNone").siblings(".replyLeword").removeClass("displayNone")
  264. }
  265. LeaveWord.prototype.LwordTotal = function() {
  266. var self = this;
  267. ajaxRequist("/ajax/leavemsg/count", {
  268. sid: self.sid,
  269. stype: self.stype
  270. }, "get", function($data) {
  271. $(".message").text($data);
  272. if($data==0) {
  273. $(".con-kong").removeClass("displayNone")
  274. }else{
  275. $(".con-kong").addClass("displayNone");
  276. }
  277. })
  278. }
  279. var module = {
  280. lWord: function(sid, stype) {
  281. this.sid = sid;
  282. this.stype = stype;
  283. if(arguments[2]) {
  284. this.flag=arguments[2]
  285. }
  286. var lw = new LeaveWord();
  287. this.init = lw.init;
  288. }
  289. }
  290. window.module = module;
  291. })(window)