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
<!doctype html>
<html>
<head>
[#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>
 
 
<script type="text/javascript">
function query() {
            
            var $searchCode = $(".active");
            var state = $searchCode.attr("id");
            if(!$.util.isEmpty(state)){
                $("#search").removeClass("check");
                $("#search").addClass("check-sx");
            }else{
                $("#search").removeClass("check-sx");
                $("#search").addClass("check");
            }
            var param = {"status":state};
            $("#main").empty();
              $("#pagination").pagination({
                durl:"${base}/ewyw/ewrepair/ewmyRepairData.html",
                curl:"${base}/ewyw/ewrepair/ewmyRepairCount.html",
                pdiv:"pagination",
                mdiv:"main",
                perPage : 5,
                param:param
            });
        }
 
$(function() {
    query();
     $(".pro").click(function(){ 
           $(".pro").not($(this)).removeClass("active");
           $(this).toggleClass("active");
        });
})
</script>
</head>
 
<body>
<header  class="kltit">
       <label class="check taskoption" id="search"></label><a href="javascript:history.go(-1);"><span></span></a>报修记录
    </header>
    <div>  
    <div class="tasksearchdate">
        <h2><a href="#" class="taskclose">关闭</a>状态</h2>
        <div class="tasksearchcon">
            <section class="kltype tasksearchlist2">
                <div class="projectname">
                    <a href="#"><p id="2" class="pro">
                       <em></em>处理中
                    </p></a>
                    <a href="#"><p id="3" class="pro">
                       <em></em>已完成
                    </p></a>
                    <a href="#"><p id="4" class="pro">
                       <em></em>已关闭
                    </p></a>
                </div>    
            </section>
        </div>
        <button type="button" class="tasksearchbtn taskclose" onclick="javascript:query();">确定</button>         
    </div>
    <div class="el_popmask"></div> 
</div> 
    
    <div id="main">
    
    </div>
    
    <div id="pagination" class="loadmore"></div>
</body>
</html>