portal html css js resource

needList.js 6.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. $(document).ready(function() {
  2. $(".onlogin .headnavbtn li").eq(0).addClass("navcurrent");
  3. loginStatus();//判断个人是否登录
  4. var oDemandAim = "",
  5. oSortType = "";
  6. /*需求列表*/
  7. function demandList(isbind, pageSize, pageNo, oDemand, oSort) {
  8. $.ajax({
  9. url: "/ajax/demand/pq",
  10. type: "GET",
  11. timeout: 10000,
  12. dataType: "json",
  13. data: {
  14. "pageNo": pageNo,
  15. "demandAim": oDemand,
  16. "sortType": oSort
  17. },
  18. beforeSend: function() {},
  19. success: function(data, textState) {
  20. if(data.success) {
  21. //console.log(data);
  22. $("#demandList").html(" ");
  23. var $info = data.data.data;
  24. demandHtml($info);
  25. if(isbind == true) {
  26. $(".tcdPageCode").createPage({
  27. pageCount: Math.ceil(data.data.total / pageSize),
  28. current: data.data.data.pageNo,
  29. backFn: function(p) {
  30. demandList(false, 5, p, oDemandAim, oSortType);
  31. }
  32. });
  33. }
  34. }
  35. },
  36. error: function(XMLHttpRequest, textStats, errorThrown) {
  37. }
  38. })
  39. }
  40. function demandHtml($data) {
  41. for(var i = 0; i < $data.length; i++) {
  42. var $obje = $data[i].professor;
  43. var personStr = personalInformation($obje);
  44. var demandAim = "技术咨询",
  45. demandType = "企业需求";
  46. var oImg = "",
  47. oTime = "";
  48. if($data[i].demandAim == 2) {
  49. demandAim = "寻找资源"
  50. } else if($data[i].demandAim == 3) {
  51. demandAim = "其他需求"
  52. }
  53. if($data[i].demandType == 1) {
  54. demandType = "个人需求"
  55. }
  56. if($obje.hasHeadImage) {
  57. oImg = "/images/head/" + $obje.id + "_l.jpg";
  58. } else {
  59. oImg = "images/default-photo.jpg"
  60. }
  61. //认证
  62. var oSty=autho($obje.authType,$obje.orgAuth,$obje.authStatus);
  63. typeTname = oSty.sty;
  64. oTime = $data[i]["createTime"].substr(0, 4) + "年" + $data[i].createTime.substr(4, 2) + "月" + $data[i].createTime.substr(6, 2) + "日" +
  65. $data[i].createTime.substr(8, 2) + ":" + $data[i].createTime.substr(10, 2);
  66. var dataString = "<div class='workselectitem'><table width='100%'>"
  67. dataString += "<tbody><tr><td width='14%' class='messagebox'>"
  68. dataString += "<a class='workhead workitimg userRadius'>"
  69. dataString += "<img class='headPhoto' src='" + oImg + "' width='100%' height='100%'></a></td>"
  70. dataString += "<td style='position:relative;top:20px;' width='86%'>"
  71. dataString += "<div class='workinfor worksitcon'><h4><a class='named'>" + $obje.name + "</a>"
  72. dataString += "<a class='authiconNew " + typeTname + "' title='"+oSty.title+"' style='top:9px;'></a><input type='text' class='assessStar' style='display: none;'></h4><h6 class='h3Font'>"
  73. dataString += "<span>" + personStr + "</span>"
  74. dataString += "<h6 style='position:relative;'>"
  75. dataString += "<div class='titList'>需求主题:<em class='h4Font'>" + $data[i].demandTitle + "</em></div>"
  76. dataString += "<span class='lasttime rightTime'>" + oTime + "</span>"
  77. dataString += "<div style='height:70px;'><p class='ellipsisSty-2 rebackcon' >" + $data[i].demandContent + "</p></div></div>"
  78. dataString += "<div class='workhandle'><div class='rightopert floatR'>"
  79. dataString += "<span class='replybtn' demanid='" + $data[i].demandId + "'>查看</span></div>"
  80. dataString += "<div class='leftstate floatR'>"
  81. dataString += "<span class='coultstate status-4'><i>" + demandAim + "</i></span></div>"
  82. dataString += "<div class='leftstate floatR'>"
  83. dataString += "<span class='coultstate coulstAim status-4'><i>" + demandType + "</i></span>"
  84. dataString += "</div></div></td></tr></tbody></table></div>"
  85. $("#demandList").append(dataString);
  86. }
  87. }
  88. /*职位职称所在机构,部门,地址等等*/
  89. function personalInformation($person) {
  90. var arr1 = [$person.title, $person.office, $person.department, $person.orgName, $person.address];
  91. var arr = new Array();
  92. var arr2 = new Array();
  93. var n = 0;
  94. for(var i = 0; i < arr1.length; i++) {
  95. if(arr1[i]) {
  96. arr.push(arr1[i]);
  97. if(arr1[i] == arr1[arr1.length - 1]) {
  98. n = 1;
  99. }
  100. }
  101. }
  102. if(n == 1) {
  103. for(var i = 0; i < arr.length-1; i++) {
  104. arr2.push(arr[i]);
  105. }
  106. return arr2.join()+ " | " + arr[arr.length - 1];
  107. } else {
  108. return arr.join();
  109. }
  110. }
  111. demandList(true, 5, 1, oDemandAim, oSortType);
  112. /*检索排序*/
  113. function selcet(i) {
  114. $(".selcet" + i).on('click', function(e) {
  115. var option = $(this).find(".option" + i);
  116. option.css("display", "block")
  117. var o_this = $(this);
  118. o_this.find("li").click(function() {
  119. o_this.find("li").removeClass("workcurrent");
  120. $(this).addClass("workcurrent");
  121. o_this.find("span").text($(this).text());
  122. option.css("display", "none");
  123. if($(this).text() == "技术咨询") {
  124. oDemandAim = 1;
  125. $(".tcdPageCode").remove();
  126. $("#shoudao").append('<div class="tcdPageCode"></div>');
  127. demandList(true, 5, 1, oDemandAim, oSortType);
  128. } else if($(this).text() == "资源合作") {
  129. oDemandAim = 2;
  130. $(".tcdPageCode").remove();
  131. $("#shoudao").append('<div class="tcdPageCode"></div>');
  132. demandList(true, 5, 1, oDemandAim, oSortType);
  133. } else if($(this).text() == "其他需求") {
  134. oDemandAim = 3;
  135. $(".tcdPageCode").remove();
  136. $("#shoudao").append('<div class="tcdPageCode"></div>');
  137. demandList(true, 5, 1, oDemandAim, oSortType);
  138. } else if($(this).text() == "不限") {
  139. oDemandAim = "";
  140. $(".tcdPageCode").remove();
  141. $("#shoudao").append('<div class="tcdPageCode"></div>');
  142. demandList(true, 5, 1, oDemandAim, oSortType);
  143. } else if($(this).text() == "按最早发布时间排序") {
  144. oSortType = 1;
  145. $(".tcdPageCode").remove();
  146. $("#shoudao").append('<div class="tcdPageCode"></div>');
  147. demandList(true, 5, 1, oDemandAim, oSortType);
  148. } else if($(this).text() == "按最新发布时间排序") {
  149. oSortType = 0;
  150. $(".tcdPageCode").remove();
  151. $("#shoudao").append('<div class="tcdPageCode"></div>');
  152. demandList(true, 5, 1, oDemandAim, oSortType);
  153. }
  154. return false;
  155. });
  156. $("body").click(function(e) {
  157. if($(".option4")[0].style.display == "block" || $(".option3")[0].style.display == "block") {
  158. $(".option4")[0].style.display = "none";
  159. $(".option3")[0].style.display = "none";
  160. }
  161. });
  162. return false;
  163. })
  164. }
  165. selcet(3);
  166. selcet(4);
  167. /*进入needSure.html*/
  168. $("#demandList").on("click", ".replybtn", function() {
  169. var demand = $(this).attr("demanid");
  170. location.href = "needSure.html?demandId=" + demand;
  171. })
  172. })