Bladeren bron

专家信息中科研资源点击咨询,专家信息的数据渲染

xiaoai_123 8 jaren geleden
bovenliggende
commit
81e55a817a
1 gewijzigde bestanden met toevoegingen van 3 en 2 verwijderingen
  1. 3 2
      src/main/webapp/js/information.brow.js

+ 3 - 2
src/main/webapp/js/information.brow.js

580
	//科研资源中的咨询
580
	//科研资源中的咨询
581
	function clickResourceConsult(){
581
	function clickResourceConsult(){
582
		var professorId = $(this).attr("professorId");
582
		var professorId = $(this).attr("professorId");
583
		ConsultApply();
583
		consultHandler();
584
		
584
		$("ul.menucon").children().eq(1).addClass("clicknow");
585
		$("ul.menucon").children().eq(1).addClass("clicknow");
585
		var consultTitleVal = $(this).parent().parent().parent().find(".consultTitleVal").text();
586
		var consultTitleVal = $(this).parent().parent().parent().find(".consultTitleVal").text();
586
		$("#consultTitle").val("关于"+consultTitleVal+"的咨询");
587
		$("#consultTitle").val("关于"+consultTitleVal+"的咨询");
587
		$("#sendConsultBtn").on("click",sendConsultHandler);
588
		
588
	};
589
	};
589
	
590
	
590

591