portal html css js resource

myDemand.js 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. $(document).ready(function() {
  2. $(".onlogin .headnavbtn li").eq(0).addClass("navcurrent");
  3. loginStatus(); //判断个人是否登录
  4. var yesNo = "",
  5. oSortType = 0,
  6. demandType, orgId;
  7. /*我的需求列表*/
  8. function myDemandList(isbind, page, pageNum, dema, sortType) {
  9. $.ajax({
  10. url: "/ajax/demand/pqDemander",
  11. type: "GET",
  12. timeout: 10000,
  13. dataType: "json",
  14. data: {
  15. "demander": userid,
  16. "pageNo": page,
  17. "demandStatus": dema,
  18. "sortType": sortType,
  19. "pageSize": pageNum
  20. },
  21. beforeSend: function() {},
  22. success: function(data, textState) {
  23. if(data.success) {
  24. // if(data.data.data.length==0){
  25. // return;
  26. // }
  27. $(".workselectitem").html(" ");
  28. demandHtml(data.data.data);
  29. if(isbind == true) {
  30. $(".tcdPageCode").createPage({
  31. pageCount: Math.ceil(data.data.total / pageNum),
  32. current: data.data.data.pageNo,
  33. backFn: function(p) {
  34. myDemandList(false, p, 5, yesNo, oSortType);
  35. }
  36. });
  37. }
  38. }
  39. },
  40. error: function(XMLHttpRequest, textStats, errorThrown) {
  41. }
  42. })
  43. }
  44. function demandHtml($data) {
  45. for(var i = 0; i < $data.length; i++) {
  46. var oTime, oDemandType, oDemandAim, oDemandStatus;
  47. if($data[i].demandType == 1) {
  48. oDemandType = "个人需求"
  49. } else if($data[i].demandType == 2) {
  50. oDemandType = "企业需求"
  51. }
  52. if($data[i].demandAim == 1) {
  53. oDemandAim = "技术咨询"
  54. } else if($data[i].demandAim == 2) {
  55. oDemandAim = "寻找资源"
  56. } else if($data[i].demandAim == 3) {
  57. oDemandAim = "其他需求"
  58. }
  59. if($data[i].demandStatus == 0) {
  60. oDemandStatus = "已关闭"
  61. } else if($data[i].demandStatus == 1) {
  62. oDemandStatus = "发布中"
  63. }
  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 oString = "<div class='workselectitem'><table width='100%'><tbody><tr>"
  67. oString += "<td style='position:relative;top:20px;'>"
  68. oString += "<div class='workinfor worksitcon'>"
  69. oString += "<h4><div class='titList h4Font' style='width:620px'>" + $data[i].demandTitle + "</div></h4>"
  70. oString += "<h6 style='position:relative;'>"
  71. oString += "<div class='clearfix'>"
  72. oString += "<div class='floatL'>发布时间:<span class='lasttime'>" + oTime + "</span></div>"
  73. if($data[i].closeTime) {
  74. var oCloseTime = $data[i]["closeTime"].substr(0, 4) + "年" + $data[i].closeTime.substr(4, 2) + "月" + $data[i].closeTime.substr(6, 2) + "日" +
  75. $data[i].closeTime.substr(8, 2) + ":" + $data[i].closeTime.substr(10, 2);
  76. oString += "<div class='floatL' style='margin-left:40px;'>关闭时间:<span class='lasttime'>" + oCloseTime + "</span></div></div>"
  77. }
  78. oString += "<div style='height:70px'><p class='rebackcon lastReplyCon' style='width: 860px;' >" + $data[i].demandContent + "</p></div></h6></div>"
  79. oString += "<div class='workhandle'>"
  80. oString += "<div class='rightopert floatR'>"
  81. oString += "<span class='replybtn'demanid='" + $data[i].demandId + "'>查看</span></div>"
  82. oString += "<div class='leftstate floatR'>"
  83. oString += "<span class='coultstate status-1'><i>" + oDemandStatus + "</i></span></div>"
  84. oString += "<div class='leftstate floatR'>"
  85. oString += "<span class='coultstate status-4'><i>" + oDemandAim + "</i></span></div>"
  86. oString += "<div class='leftstate floatR'>"
  87. oString += "<span class='coultstate coulstAim status-4'><i>" + oDemandType + "</i></span></div></div></td></tr></tbody></table></div>"
  88. $("#myNeed").append(oString)
  89. }
  90. }
  91. myDemandList(true, 1, 5, yesNo, oSortType);
  92. /*检索排序*/
  93. function selcet(i) {
  94. $(".selcet" + i).on('click', function(e) {
  95. var option = $(this).find(".option" + i);
  96. option.css("display", "block")
  97. var o_this = $(this);
  98. o_this.find("li").click(function() {
  99. o_this.find("li").removeClass("workcurrent");
  100. $(this).addClass("workcurrent");
  101. o_this.find("span").text($(this).text());
  102. option.css("display", "none");
  103. if($(this).text() == "全部") {
  104. yesNo = "";
  105. $(".tcdPageCode").remove();
  106. $("#workContainer2").append('<div class="tcdPageCode"></div>');
  107. myDemandList(true, 1, 5, yesNo, oSortType);
  108. } else if($(this).text() == "发布中") {
  109. yesNo = 1;
  110. $(".tcdPageCode").remove();
  111. $("#workContainer2").append('<div class="tcdPageCode"></div>');
  112. myDemandList(true, 1, 5, yesNo, oSortType);
  113. } else if($(this).text() == "已关闭") {
  114. yesNo = 0;
  115. $(".tcdPageCode").remove();
  116. $("#workContainer2").append('<div class="tcdPageCode"></div>');
  117. myDemandList(true, 1, 5, yesNo, oSortType);
  118. } else if($(this).text() == "按最早发布时间排序") {
  119. oSortType = 1;
  120. $(".tcdPageCode").remove();
  121. $("#workContainer2").append('<div class="tcdPageCode"></div>');
  122. myDemandList(true, 1, 5, yesNo, oSortType);
  123. } else if($(this).text() == "按最新发布时间排序") {
  124. oSortType = 0;
  125. $(".tcdPageCode").remove();
  126. $("#workContainer2").append('<div class="tcdPageCode"></div>');
  127. myDemandList(true, 1, 5, yesNo, oSortType);
  128. }
  129. return false;
  130. });
  131. $("body").click(function(e) {
  132. if($(".option4")[0].style.display == "block" || $(".option1")[0].style.display == "block") {
  133. $(".option4")[0].style.display = "none";
  134. $(".option1")[0].style.display = "none";
  135. }
  136. });
  137. return false;
  138. })
  139. }
  140. selcet(1);
  141. selcet(4);
  142. $("#myNeed").on("click", ".replybtn", function() {
  143. var de = $(this).attr("demanid");
  144. location.href = "needShow.html?demandId=" + de
  145. });
  146. /*发布新需求*/
  147. $("#needIssueBtn").click(function() {
  148. $.ajax({
  149. url: "/ajax/professor/baseInfo/" + userid,
  150. type: "GET",
  151. timeout: 10000,
  152. dataType: "json",
  153. success: function(data) {
  154. if(data.success) {
  155. console.log(data);
  156. var $rta = data.data;
  157. orgId = $rta.orgId
  158. console.log(orgId)
  159. $("#induSub").val("");
  160. $("textarea").val("");
  161. $("#demandContent").val("");
  162. $("#navsub").find("li").removeClass("aimedLi");
  163. $("#mutChecked").find("li").removeClass("checkedLi");
  164. $('.checkNow').removeClass('checkNow');
  165. if($rta.authStatus != 3) {
  166. if($rta.orgAuth == 1) {
  167. $(".blackcover ").show();
  168. $("body").css("position","fixed");
  169. $("span:contains('企业需求')").addClass("checkNow");
  170. $("span:contains('个人需求')").addClass("checkNo");
  171. demandType = 2;
  172. } else {
  173. location.href = "realname-authentication.html";
  174. }
  175. } else {
  176. $(".blackcover ").show();
  177. $("body").css("position","fixed");
  178. if($rta.orgAuth == 0) {
  179. $("span:contains('企业需求')").addClass("checkNo");
  180. $("span:contains('个人需求')").addClass("checkNow");
  181. demandType = 1;
  182. } else {
  183. demanTy();
  184. }
  185. }
  186. }
  187. },
  188. error: function(XMLHttpRequest, textStats, errorThrown) {
  189. }
  190. })
  191. });
  192. $("#workclose2").click(function() {
  193. $(".blackcover ").hide();
  194. $("body").css("position","relative");
  195. })
  196. /*发布新需求目的*/
  197. var consun;
  198. tab("navsub"); //身份切换
  199. function tab(name) {
  200. var oDome = document.getElementById(name);
  201. var oSpan = oDome.getElementsByTagName('ul')[0].childNodes;
  202. for(var i = 0; i < oSpan.length; i++) {
  203. oSpan[i].onclick = function() {
  204. for(var i = 0; i < oSpan.length; i++) {
  205. oSpan[i].className = '';
  206. }
  207. this.className = 'aimedLi';
  208. if(this.getElementsByTagName("span")[0].innerText == "咨询技术难题") {
  209. consun = 1;
  210. } else if(this.getElementsByTagName("span")[0].innerText == "寻求研发资源") {
  211. consun = 2;
  212. } else {
  213. consun = 3;
  214. }
  215. }
  216. }
  217. }
  218. /*切换需求类型*/
  219. function demanTy() {
  220. var deTy = document.getElementsByClassName("boxnavTo")[0];
  221. var deTyChild = deTy.getElementsByTagName("span");
  222. if(deTyChild[0].className != "checkNo" && deTyChild[1].className != "checkNo") {
  223. for(var n = 0; n < deTyChild.length; n++) {
  224. (function(m) {
  225. deTyChild[m].onclick = function() {
  226. this.className = "checkNow";
  227. if(m == 0) {
  228. demandType = 1;
  229. deTyChild[1].className = "";
  230. } else if(m == 1) {
  231. demandType = 2;
  232. deTyChild[0].className = "";
  233. }
  234. }
  235. })(n);
  236. }
  237. }
  238. }
  239. /*需求题目限制30个字*/
  240. $("#demandContent").on('keyup', function() {
  241. if(this.value.length > 30) {
  242. this.value = this.value.substring(0, 30);
  243. }
  244. });
  245. /*需求内容限制300个字*/
  246. $("textarea").on('keyup', function() {
  247. var maxChars = 300;
  248. if(this.value.length > maxChars) {
  249. this.value = this.value.substring(0, maxChars);
  250. }
  251. var oCanInput = maxChars - this.value.length;
  252. $("#countNum").text(oCanInput);
  253. });
  254. /*查询应用行业及学术领域*/
  255. function industry(insu) {
  256. $.ajax({
  257. url: "/ajax/dataDict/qaDictCode",
  258. dataType: 'json', //数据格式类型
  259. type: 'GET', //http请求类型
  260. timeout: 10000, //超时设置
  261. data: {
  262. "dictCode": insu
  263. },
  264. success: function(data) {
  265. if(data.success) {
  266. var $data = data.data;
  267. var n;
  268. ($data.length > 5) ? n = 5:
  269. n = $data.length
  270. for(var i = 0; i < n; i++) {
  271. var oString = '<li><span>' + $data[i].caption + '</span></li>';
  272. $("#mutChecked").append(oString);
  273. }
  274. }
  275. },
  276. error: function() {
  277. return;
  278. }
  279. });
  280. }
  281. industry("INDUSTRY");
  282. industry("SUBJECT");
  283. /*行业及领域选择*/
  284. $('#mutChecked').on('click', 'li', function() {
  285. if(this.className == "checkedLi") {
  286. this.className = ""
  287. } else {
  288. this.className = "checkedLi"
  289. }
  290. })
  291. /*行业或者领域添加及删除*/
  292. $("#labelshow").on("click", ".removeNu", function() {
  293. $(this).parent().remove();
  294. });
  295. $("#addIndu").click(function() {
  296. var oinduSub = $("#induSub").val();
  297. var oAddNum = $("#labelshow").find("em");
  298. if(!oinduSub.trim()) {
  299. $.MsgBox.Alert("消息", "请先添加内容");
  300. return;
  301. }
  302. if(oinduSub.trim().length > 10) {
  303. $.MsgBox.Alert("消息", "不能多于10个字");
  304. return;
  305. }
  306. if(oAddNum.length == 5) {
  307. $.MsgBox.Alert("消息", "最多添加五条");
  308. return;
  309. }
  310. for(var i = 0; i < oAddNum.length; i++) {
  311. if(oAddNum[i].innerHTML == oinduSub) {
  312. $.MsgBox.Alert("消息", "不能重复添加");
  313. return;
  314. }
  315. }
  316. $("#labelshow").append('<li class="deleteSubject"><em>' + oinduSub + '</em><span class="removeNu"><img src="images/move.png"></span></li>')
  317. $("#induSub").val("");
  318. })
  319. /*发布新需求*/
  320. $("#postDemand").click(function() {
  321. var dd = $("#navsub").find(".aimedLi");
  322. var cc = $("#navsubTo").find(".checkNow");
  323. if(dd.length == 0) {
  324. $.MsgBox.Alert("消息", "请选择您发布需求的目的");
  325. return;
  326. }
  327. if(cc.length == 0) {
  328. $.MsgBox.Alert("消息", "请选择您的需求类型");
  329. return;
  330. }
  331. if(!$("#demandContent").val().trim()) {
  332. $.MsgBox.Alert("消息", "请填写需求主题");
  333. return;
  334. }
  335. if(!$("textarea").val().trim()) {
  336. $.MsgBox.Alert("消息", "请填写需求内容");
  337. return;
  338. }
  339. publish()
  340. });
  341. function publish() {
  342. var arr = [];
  343. var oSuin = $(".checkedLi");
  344. var oin = $("#labelshow").find("li");
  345. for(var i = 0; i < oSuin.length; i++) {
  346. arr[i] = oSuin[i].innerText;
  347. }
  348. for(var j = 0; j < oin.length; j++, i++) {
  349. //console.log(oin[j].innerText);
  350. arr[i] = oin[j].innerText;
  351. }
  352. $.ajax({
  353. url: '/ajax/demand',
  354. dataType: 'json', //数据格式类型
  355. type: 'post', //http请求类型
  356. timeout: 10000, //超时设置
  357. traditional: true,
  358. data: {
  359. "demander": userid,
  360. "demandAim": consun,
  361. "demandType": demandType,
  362. "demandTitle": $("#demandContent").val(),
  363. "demandContent": $("textarea").val(),
  364. "args": arr,
  365. "orgId": (demandType == 2) ? orgId : "",
  366. },
  367. success: function(data) {
  368. if(data.success) {
  369. myDemandList(true, 1, 5, yesNo, oSortType);
  370. $(".blackcover ").hide();
  371. $("body").css("position","relative");
  372. $.MsgBox.Alert("消息", "需求发布成功!很快会有专家与您联系,您可以在咨询列表中查看专家回复的信息");
  373. $("#mb_msgicon").css("background", 'url("images/sign_icon_chenggong_nor.png") 0% 0% / contain');
  374. }
  375. },
  376. error: function() {
  377. return;
  378. }
  379. });
  380. }
  381. /*判断是否是专家*/
  382. $.ajax({
  383. url: "/ajax/professor/auth",
  384. type: "GET",
  385. timeout: 10000,
  386. dataType: "json",
  387. data: {
  388. "id": userid,
  389. },
  390. success: function(data, textState) {
  391. if(data.success) {
  392. var $rta = data.data;
  393. if($rta.authType == 0) {
  394. $("#searchDemand").hide();
  395. }
  396. }
  397. },
  398. error: function(XMLHttpRequest, textStats, errorThrown) {
  399. }
  400. })
  401. })