cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!doctype html>
<html>
<head>
[#include "/business/wechat/include/title.html" /] 
[#include "/business/wechat/include/wheader.html" /]
<script type="text/javascript">
$(function() {
    $(".taskoption").click(function(){ 
        var i=$(".taskoption").index(this);
        var taskcon = $(".tasksearchdate"); 
        taskcon.eq(i).animate({width: 'toggle'}); 
        $(".tasksearchdate h2").delay(300).fadeIn(); 
        $(".tasksearchcon").delay(300).fadeIn(); 
        taskcon.eq(i).next(".el_popmask").fadeIn();
    });
    
    $(".taskclose").click(function(){
        var taskcon = $(this).parents("div.tasksearchdate");
        taskcon.animate({width: 'toggle'});  
        $(".tasksearchdate h2").fadeOut(); 
        $(".tasksearchcon").fadeOut(); 
        taskcon.next(".el_popmask").fadeOut();
    });
    
    $(".el_popmask").click(function(){
        var taskcon = $(this).prev("div"); 
        taskcon.animate({width: 'toggle'});  
        $(".tasksearchdate h2").fadeOut(); 
        $(".tasksearchcon").fadeOut();
        $(this).fadeOut();
    
    });
    
    //${Constants.CUSTOMER_CONSTANTS}下拉框点击
    $('.kltype.tasksearchlist2 p').click(function(){
        $('.kltype.tasksearchlist2 p.active').removeClass('active');
        $(this).addClass('active');
    });
    
    //选择${Constants.CUSTOMER_CONSTANTS}
    $('#pro_btn').click(function(){
        var $pro = $('.kltype.tasksearchlist2 p.active');
         var proId = $pro.attr('val');
        $('#proId').val(proId);
        $('#pro_close_btn').click();
        query("main","page");
    });
    
    query("main","page");
})
 
function query(dataId,pageId) {
    var $main = $("#"+dataId);
    var $page = $("#"+pageId);
    //var customerId = $("#proId").val();
    var begintime = '${RequestParameters.begintime}';
    var endtime = '${RequestParameters.endtime}';
     var param = {'begintime':begintime,'endtime':endtime};
    $main.empty();
     $page.pagination({
        durl:"${base}/uwyw/uRemind/ewRemindByCusIdData.html",
        curl:"${base}/uwyw/uRemind/ewRemindByCusIdCount.html",
        pdiv:pageId,
        mdiv:dataId,
        perPage : 5,
        param:param
    });
}
</script>
</head>
 
<body>
    <input type="hidden" name="proId" id="proId"/>
    <header class="kltit">
        例行维护列表
    </header>
    <div id="container"></div>
    
    
    <div class="swiper-slide">
           <div id="main"></div>
           <div id="page" class="loadmore"></div>
    </div>
        
        
    
</body>
</html>