<!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">
|
<label class="check taskoption"></label>日常巡检报告列表(${DateUtil.format("yyyy-MM-dd",date)})
|
</header>
|
|
<div class="tasksearchdate">
|
<h2><a href="#" class="taskclose">关闭</a>${Constants.CUSTOMER_CONSTANTS}列表</h2>
|
<div class="tasksearchcon">
|
[#if customerList?? && customerList?size>0]
|
[#list customerList as customer]
|
<section class="kltype tasksearchlist2">
|
<div class="projectname">
|
<a href="#"><p v="${customer.id}" class="pro">
|
<em></em>${customer.name}
|
</p></a>
|
</div>
|
</section>
|
[/#list]
|
[/#if]
|
</div>
|
<button type="button" class="tasksearchbtn taskclose" onclick="query();">确定</button>
|
</div>
|
<div class="el_popmask"></div>
|
|
|
<section class="taskmaillist taskdaylist clearfix" id="main">
|
|
</section>
|
|
<script type="text/javascript">
|
var dt = '${date}';
|
function query() {
|
var $searchCode = $(".active");
|
var cusId = $searchCode.attr("v");
|
var param = {"cusId":cusId,"date":dt};
|
loading($("#main"));
|
|
$.post("${base}/ewyw/ewWorkplan/ereportList.html",param,function(data,textStatus) {
|
$("#main").html(data);
|
})
|
}
|
|
$(function() {
|
query();
|
$(".pro").click(function(){
|
$(".pro").not($(this)).removeClass("active");
|
$(this).toggleClass("active");
|
});
|
})
|
</script>
|
|
|
</body>
|
</html>
|