123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- $(document).ready(function() {
- $(".onlogin .headnavbtn li").eq(0).addClass("navcurrent");
- loginStatus();
- var oDemandAim = "",
- oSortType = "";
-
- function demandList(isbind, pageSize, pageNo, oDemand, oSort) {
- $.ajax({
- url: "/ajax/demand/pq",
- type: "GET",
- timeout: 10000,
- dataType: "json",
- data: {
- "pageNo": pageNo,
- "demandAim": oDemand,
- "sortType": oSort
- },
- beforeSend: function() {},
- success: function(data, textState) {
- if(data.success) {
-
- $("#demandList").html(" ");
- var $info = data.data.data;
- demandHtml($info);
- if(isbind == true) {
- $(".tcdPageCode").createPage({
- pageCount: Math.ceil(data.data.total / pageSize),
- current: data.data.data.pageNo,
- backFn: function(p) {
- demandList(false, 5, p, oDemandAim, oSortType);
- }
- });
- }
- }
- },
- error: function(XMLHttpRequest, textStats, errorThrown) {
- }
- })
- }
- function demandHtml($data) {
- for(var i = 0; i < $data.length; i++) {
- var $obje = $data[i].professor;
- var personStr = personalInformation($obje);
- var demandAim = "技术咨询",
- demandType = "企业需求";
- var oImg = "",
- oTime = "";
- if($data[i].demandAim == 2) {
- demandAim = "寻找资源"
- } else if($data[i].demandAim == 3) {
- demandAim = "其他需求"
- }
- if($data[i].demandType == 1) {
- demandType = "个人需求"
- }
- if($obje.hasHeadImage) {
- oImg = "/images/head/" + $obje.id + "_l.jpg";
- } else {
- oImg = "images/default-photo.jpg"
- }
-
- var oSty=autho($obje.authType,$obje.orgAuth,$obje.authStatus);
- typeTname = oSty.sty;
-
- oTime = $data[i]["createTime"].substr(0, 4) + "年" + $data[i].createTime.substr(4, 2) + "月" + $data[i].createTime.substr(6, 2) + "日" +
- $data[i].createTime.substr(8, 2) + ":" + $data[i].createTime.substr(10, 2);
- var dataString = "<div class='workselectitem'><table width='100%'>"
- dataString += "<tbody><tr><td width='14%' class='messagebox'>"
- dataString += "<a class='workhead workitimg userRadius'>"
- dataString += "<img class='headPhoto' src='" + oImg + "' width='100%' height='100%'></a></td>"
- dataString += "<td style='position:relative;top:20px;' width='86%'>"
- dataString += "<div class='workinfor worksitcon'><h4><a class='named'>" + $obje.name + "</a>"
- dataString += "<a class='authiconNew " + typeTname + "' title='"+oSty.title+"' style='top:9px;'></a><input type='text' class='assessStar' style='display: none;'></h4><h6 class='h3Font'>"
- dataString += "<span>" + personStr + "</span>"
- dataString += "<h6 style='position:relative;'>"
- dataString += "<div class='titList'>需求主题:<em class='h4Font'>" + $data[i].demandTitle + "</em></div>"
- dataString += "<span class='lasttime rightTime'>" + oTime + "</span>"
- dataString += "<div style='height:70px;'><p class='ellipsisSty-2 rebackcon' >" + $data[i].demandContent + "</p></div></div>"
- dataString += "<div class='workhandle'><div class='rightopert floatR'>"
- dataString += "<span class='replybtn' demanid='" + $data[i].demandId + "'>查看</span></div>"
- dataString += "<div class='leftstate floatR'>"
- dataString += "<span class='coultstate status-4'><i>" + demandAim + "</i></span></div>"
- dataString += "<div class='leftstate floatR'>"
- dataString += "<span class='coultstate coulstAim status-4'><i>" + demandType + "</i></span>"
- dataString += "</div></div></td></tr></tbody></table></div>"
- $("#demandList").append(dataString);
- }
- }
-
- function personalInformation($person) {
- var arr1 = [$person.title, $person.office, $person.department, $person.orgName, $person.address];
- var arr = new Array();
- var arr2 = new Array();
- var n = 0;
- for(var i = 0; i < arr1.length; i++) {
- if(arr1[i]) {
- arr.push(arr1[i]);
- if(arr1[i] == arr1[arr1.length - 1]) {
- n = 1;
- }
- }
- }
- if(n == 1) {
- for(var i = 0; i < arr.length-1; i++) {
- arr2.push(arr[i]);
- }
- return arr2.join()+ " | " + arr[arr.length - 1];
- } else {
- return arr.join();
- }
- }
- demandList(true, 5, 1, oDemandAim, oSortType);
-
- function selcet(i) {
- $(".selcet" + i).on('click', function(e) {
- var option = $(this).find(".option" + i);
- option.css("display", "block")
- var o_this = $(this);
- o_this.find("li").click(function() {
- o_this.find("li").removeClass("workcurrent");
- $(this).addClass("workcurrent");
- o_this.find("span").text($(this).text());
- option.css("display", "none");
- if($(this).text() == "技术咨询") {
- oDemandAim = 1;
- $(".tcdPageCode").remove();
- $("#shoudao").append('<div class="tcdPageCode"></div>');
- demandList(true, 5, 1, oDemandAim, oSortType);
- } else if($(this).text() == "资源合作") {
- oDemandAim = 2;
- $(".tcdPageCode").remove();
- $("#shoudao").append('<div class="tcdPageCode"></div>');
- demandList(true, 5, 1, oDemandAim, oSortType);
- } else if($(this).text() == "其他需求") {
- oDemandAim = 3;
- $(".tcdPageCode").remove();
- $("#shoudao").append('<div class="tcdPageCode"></div>');
- demandList(true, 5, 1, oDemandAim, oSortType);
- } else if($(this).text() == "不限") {
- oDemandAim = "";
- $(".tcdPageCode").remove();
- $("#shoudao").append('<div class="tcdPageCode"></div>');
- demandList(true, 5, 1, oDemandAim, oSortType);
- } else if($(this).text() == "按最早发布时间排序") {
- oSortType = 1;
- $(".tcdPageCode").remove();
- $("#shoudao").append('<div class="tcdPageCode"></div>');
- demandList(true, 5, 1, oDemandAim, oSortType);
- } else if($(this).text() == "按最新发布时间排序") {
- oSortType = 0;
- $(".tcdPageCode").remove();
- $("#shoudao").append('<div class="tcdPageCode"></div>');
- demandList(true, 5, 1, oDemandAim, oSortType);
- }
- return false;
- });
- $("body").click(function(e) {
- if($(".option4")[0].style.display == "block" || $(".option3")[0].style.display == "block") {
- $(".option4")[0].style.display = "none";
- $(".option3")[0].style.display = "none";
- }
- });
- return false;
- })
- }
- selcet(3);
- selcet(4);
-
- $("#demandList").on("click", ".replybtn", function() {
- var demand = $(this).attr("demanid");
- location.href = "needSure.html?demandId=" + demand;
- })
- })
|