portal html css js resource

cmp-needList.js 6.8KB

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