﻿
//加载全部资讯
function ShowAllArticles()
{
    goListPage(1,'blog');

    goListPage(1,'activity');
    goListPage(1,'activity1');
    goListPage(1,'activity2');

    goListPage(1,'resource');
    goListPage(1,'resource1');
    goListPage(1,'resource2');

    goListPage(1,'information');
    goListPage(1,'information1');
    goListPage(1,'information2');
    goListPage(1,'information3');
    goListPage(1,'recruit');
}

//加载我发布的资讯
function ShowMyArticles(UserId)
{
    goListPage(1,'blog_ma_'+UserId+'');

    goListPage(1,'activity_ma_'+UserId+'');
    goListPage(1,'activity1_ma_'+UserId+'');
    goListPage(1,'activity2_ma_'+UserId+'');

    goListPage(1,'resource_ma_'+UserId+'');
    goListPage(1,'resource1_ma_'+UserId+'');
    goListPage(1,'resource2_ma_'+UserId+'');

    goListPage(1,'information_ma_'+UserId+'');
    goListPage(1,'information1_ma_'+UserId+'');
    goListPage(1,'information2_ma_'+UserId+'');
    goListPage(1,'information3_ma_'+UserId+'');
    
    goListPage(1,'recruit_ma_'+UserId+'');
}

//加载我关注的资讯
function ShowMyFeedbackArticles(UserId)
{
    goListPage(1,'blog_mfb_'+UserId+'');

    goListPage(1,'activity_mfb_'+UserId+'');
    goListPage(1,'activity1_mfb_'+UserId+'');
    goListPage(1,'activity2_mfb_'+UserId+'');

    goListPage(1,'resource_mfb_'+UserId+'');
    goListPage(1,'resource1_mfb_'+UserId+'');
    goListPage(1,'resource2_mfb_'+UserId+'');

    goListPage(1,'information_mfb_'+UserId+'');
    goListPage(1,'information1_mfb_'+UserId+'');
    goListPage(1,'information2_mfb_'+UserId+'');
    goListPage(1,'information3_mfb_'+UserId+'');
    
    goListPage(1,'recruit_mfb_'+UserId+'');
}

//加载我被关注的资讯
function ShowByFeedbackArticles(UserId)
{
    goListPage(1,'blog_bfb_'+UserId+'');

    goListPage(1,'activity_bfb_'+UserId+'');
    goListPage(1,'activity1_bfb_'+UserId+'');
    goListPage(1,'activity2_bfb_'+UserId+'');

    goListPage(1,'resource_bfb_'+UserId+'');
    goListPage(1,'resource1_bfb_'+UserId+'');
    goListPage(1,'resource2_bfb_'+UserId+'');

    goListPage(1,'information_bfb_'+UserId+'');
    goListPage(1,'information1_bfb_'+UserId+'');
    goListPage(1,'information2_bfb_'+UserId+'');
    goListPage(1,'information3_bfb_'+UserId+'');
    
    goListPage(1,'recruit_bfb_'+UserId+'');
}
