var pagesize=10,pageindex=1;
var trtemplate,trgetemplate;
$(document).ready (loaddata);

/*****^*****^*****^*****^*****^*****^*****^*****^*****^*****^*****
 ** 
 ** 页面初始化时加载数据
 ** 
 *****^*****^*****^*****^*****^*****^*****^*****^*****^*****^*****/
 function loaddata()
{  
    trtemplate=$('#tabxwzx').find('#trlist').clone();
    trgetemplate=$('#tabxwzx').find('#trlistge').clone();
    showloading(true); 
    QnSoft.controls.home.getxwzxposts('68',1,6,list_callback);
   //QnSoft.controls.home.getzyywposts('',1,6,zyywlist_callback); 
}

function list_callback(res)
{
    $('#tabxwzx').find('tbody').empty();
    var _dtdata=res.tables[0];
    $.each(_dtdata.rows,function(){ 
       var tr=trtemplate.clone();
       $(tr).attr("id",this.PostID);
       $(tr).find('#subject').html(this.Subject);
       $(tr).find('#lbldate').html(this.PrintDate);
       $(tr).find('#subject').attr('href','/Xwzx/XwzxShow.aspx?id='+this.PostID);
       $(tr).show();

       $(tr).appendTo($('#tabxwzx').find('tbody'));
       
       var trge=trgetemplate.clone();
       $(trge).attr("id",'ge'+this.PostID);
       $(trge).appendTo($('#tabxwzx').find('tbody'));
   });   
   showloading(false);
}

function zyywlist_callback(res)
{
    $('#tabzyyw').find('tbody').empty();
    var _dtdata=res.tables[0];
    $.each(_dtdata.rows,function(){ 
       var tr=trtemplate.clone();
       $(tr).attr("id",this.PostID);
       $(tr).find('#subject').html(this.Subject);
       $(tr).find('#lbldate').html(this.PrintDate);
       $(tr).find('#subject').attr('href','/Zyyw/Default.aspx?postid='+this.PostID);
       $(tr).find('#subject').attr('target','_blank');
       $(tr).show();
       $(tr).appendTo($('#tabzyyw').find('tbody'));
       
       var trge=trgetemplate.clone();
       $(trge).attr("id",'ge'+this.PostID);
       $(trge).appendTo($('#tabzyyw').find('tbody'));
   });   
   showloading(false);
}
