<!doctype html>
|
<html>
|
<head>
|
<meta charset="utf-8">
|
[#include "/business/wechat/include/title.html" /]
|
[#include "/business/wechat/include/wheader.html" /]
|
<script type="text/javascript" src="${common_static}/static/wechat/style/js/project.js"></script>
|
</head>
|
|
<body>
|
<header class="kltit">
|
<a href="javascript:history.go(-1);"><span></span></a> 厂商
|
</header>
|
|
<section class="taskmaillist taskfac clearfix">
|
<div id="main">
|
|
</div>
|
</section>
|
|
<div id="pagination" class="loadmore"></div>
|
|
|
|
<script type="text/javascript">
|
|
function query() {
|
|
var $searchCode = $(".active");
|
var proId = $searchCode.attr("id");
|
var param = {"project_Id":proId};
|
$("#main").empty();
|
$("#pagination").pagination({
|
durl:"${base}/uwyw/uInformation/uInformationData.html",
|
curl:"${base}/uwyw/uInformation/uInformationCount.html",
|
pdiv:"pagination",
|
mdiv:"main",
|
perPage : 5,
|
param:param
|
});
|
}
|
|
$(function() {
|
query();
|
|
$(".pro").click(function(){
|
$(".pro").not($(this)).removeClass("active");
|
$(this).toggleClass("active");
|
});
|
})
|
</script>
|
|
</body>
|
</html>
|