// JavaScript Document
//首页头条

$.getJSON(weburl+"/?module=qctsw&act=qctsw&extra=index_toutiao&siteid=www.rzauto.com&callback=?",
		function(data){
			$.each(data.items, function(i,item){
			$("#index_toutiao").html($("#index_toutiao").html()+"<li><h1><a href='view.htm?ID="+item.id+"'><font color='#FF0000'>"+item.title+"</font></a></h1><p><a href='view.htm?ID="+item.id+"'>"+item.summary+"</a></p></li>");
		});
});

//典型投诉
$.getJSON(weburl+"/?module=qctsw&act=qctsw&extra=list_dx&siteid=www.rzauto.com&callback=?",
		function(data){
			$.each(data.items, function(i,item){
			$("#list_dx").html($("#list_dx").html()+"<li><a href='view.htm?ID="+item.id+"'>"+item.title+"</a></li>");
		});
});

//图片投诉
$.getJSON(weburl+"/?module=qctsw&act=qctsw&extra=index_tspic&siteid=www.rzauto.com&callback=?",
		function(data){
			$.each(data.items, function(i,item){
			$("#index_tspic").html($("#index_tspic").html()+"<li><span class='img'><a href='view.htm?ID="+item.id+"'><img src='"+item.imgsrc+"' /></a></span><span class='text'><a href='view.htm?ID="+item.id+"'>"+item.title+"</a></span></li>");
		});
});


//最新投诉
$.getJSON(weburl+"/?module=qctsw&act=qctsw&extra=index_newts&siteid=www.rzauto.com&callback=?",
		function(data){
			$.each(data.items, function(i,item){
			$("#index_newts").html($("#index_newts").html()+"<li><span class='t1'><a href='view.htm?ID="+item.id+"'>"+item.title+"</a></span><span class='t2'>"+item.Tousushi+"</span><span class='t3'>"+item.CarHostName+"</span><span class='t4'>"+item.CreateTime+"</span></li>");
		});
});

//最新结果
$.getJSON(weburl+"/?module=qctsw&act=qctsw&extra=index_result&siteid=www.rzauto.com&callback=?",
		function(data){
			$.each(data.items, function(i,item){
			$("#index_result").html($("#index_result").html()+"<li><a href='view.htm?ID="+item.id+"'>"+item.title+"</a></li>");
		});
});

//维权资讯
$.getJSON(weburl+"/?module=qctsw&act=qctsw&extra=index_wqzx&siteid=www.rzauto.com&callback=?",
		function(data){
			$.each(data.items, function(i,item){
			$("#index_wqzx").html($("#index_wqzx").html()+"<li><a href='http://www.qctsw.com/article/articlecontent/"+item.id+".html'>"+item.title+"</a></li>");
		});
});

//焦点图片
$.getJSON(weburl+"/?module=qctsw&act=qctsw&extra=index_focuspic&siteid=www.rzauto.com&callback=?",
		function(data){
			$("#ts_sum").html("本站共有投诉案例:<SPAN class=red>"+data.sum_ts+"</SPAN><SPAN class=ch><BR></SPAN>");
			$("#index_focuspic").html(data.img_html);
});
/*
$.getJSON(weburl+"/?module=qctsw&act=qctsw&extra=index_focuspic&siteid=www.rzauto.com&callback=?",
		function(data){
			$.each(data.items, function(i,item){
			$("#index_focuspic").html($("#index_focuspic").html()+"<li><a target='_blank' href='"+item.link_url+"'><img src='"+item.imgsrc+"'></a></li>");
		});
});
*/






