123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- var userid=$.cookie("userid");
- var reNO=false;
- var opNO=false;
- var num = GetQueryString("num");
- function gatModule(){
- $.ajax({
- "url":"/ajax/resource/qapro",
- "type":"get",
- "async": true,
- "data":{"professorId":userid},
- "success":function(data)
- {
- if(data.success)
- {
- if(data.data.length>0)
- {
- reNO=true;
- }
- }
-
- }
- });
- $.ajax({
- "url":"/ajax/operation/pqdem",
- "type":"get",
- "async": true,
- "data":{"demandId":userid},
- "success":function(data)
- {
- if(data.success)
- {
- if(data.data.data.length>0)
- {
- opNO=true;
- }
- }
- }
-
- });
- }
- gatModule();
- if(num==1){
-
- $("#newsciresourcebtn,#newslist").show();
- $(".worksubmenu").eq(1).addClass("subcolor").siblings().removeClass("subcolor");
- $.ajax({
- "url":"newsciresource.html",
- "dataType":"html",
- "success":function(result){
- $(".workcon").html(result);
- }
- })
- }else if(num==2){
- $("#newsciresourcebtn,#newslist").show();
- $(".worksubmenu").eq(2).addClass("subcolor").siblings().removeClass("subcolor");
- $.ajax({
- "url":"articalList.html",
- "dataType":"html",
- "success":function(result){
- $(".workcon").html(result);
- }
- })
- }
- else{
- $.ajax({
- "url":"workindex.html",
- "dataType":"html",
- "success":function(result){
- $(".workcon").html(result);
- }
- })
- }
- $(".workmenu").on("click",".workmenutit",function(){
- $.ajax({
- "url":"workindex.html",
- "dataType":"html",
- "success":function(result){
-
-
- $(".workcon").html(result);
- }
-
- })
- })
-
-
-
-
- $.ajax({
- "url":"consult.html",
- "dataType":"html",
- "success":function(result){
- //console.log(data);
- $(".workcon").html(result);
-
- //判断咨询是否有数据,有显示,没有不显示
- var flag = 1;
- if(flag == 0){
- $(".worksamlltit3:first").hide();
- $(".workmysrc3:first").hide();
- $(".workmysrc3:last").fadeIn();
- }else {
-
- $(".worksamlltit3:first").addClass("active").show();
- $(".workmysrc3:first").show();
-
- //On Click Event
- $(".worksamlltit3").click(function() {
- $(".worksamlltit3").removeClass("worksamlltitnow");
- $(this).addClass("worksamlltitnow");
-
- $(".workmysrc3").hide();
-
- var activeTab = $(this).attr("href");
- // console.log(activeTab);
- // console.log($(activeTab));
- $(activeTab).fadeIn();
- return false;
- });
-
- };
-
-
- }
-
- })
-
- })*/
-
-
- $(".workmenu").on("click","#sciprojectbtn",function(){
- $.ajax({
- "url":"sciproject.html",
- "dataType":"html",
- "success":function(result){
-
-
- $(".workcon").html(result);
- }
-
- })
- })
- $(".workmenu").on("click","#sciresourcebtn",function(){
- $.ajax({
- "url":"sciresource.html",
- "dataType":"html",
- "success":function(result){
-
-
- $(".workcon").html(result);
- if(reNO==false&&opNO)
- {
- $(".workmysrc1").eq(1).show().siblings().hide();
- $(".worksamlltit").eq(1).addClass("worksamlltitnow").siblings().removeClass("worksamlltitnow");
- }
- }
-
- })
-
- })
-
-
- $(".workmenu").on("click","#newsciresourcebtn",function(){
- $.ajax({
- "url":"newsciresource.html",
- "dataType":"html",
- "success":function(result){
-
- $(".workcon").html(result);
- }
- })
- })
-
-
- $(".workmenu").on("click","#newslist",function(){
- $.ajax({
- "url":"articalList.html",
- "dataType":"html",
- "success":function(result){
-
- $(".workcon").html(result);
- }
- })
- })
-
-
- $(".workmenutit").click(function(){
- $(".worksubmenu").removeClass("subcolor");
- $(".workconitem").eq(0).show().siblings().hide();
-
- })
- $(".worksubmenu").click(function(){
- var index = $(this).index();
- $(this).addClass("subcolor").siblings().removeClass("subcolor");
- $(".workconitem").eq(index).show().siblings().hide();
- });
-
-
-
- var index = $(this).index();
- $(this).addClass("worksamlltitnow").siblings().removeClass("worksamlltitnow");
- $(".workmysrc3").eq(index).show().siblings().hide();
- });*/
-
-
- var index = $(this).index();
- $(this).addClass("worksamlltitnow").siblings().removeClass("worksamlltitnow");
- $(".workmysrc2").eq(index).show().siblings().hide();
- });*/
-
-
-
- $(function(){
- loginStatus();
- var userid = $.cookie("userid");
- var name = $.cookie("userName");
- var flag;
- if(userid){
- $(".myWorkspace").attr("href","workspaces.html?"+userid);
-
- }
-
-
-
-
-
-
-
- });
|