1
zj
2025-06-18 69d7ae376a58c399c97ee42e5ff7a13860cb2b7e
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<%@ page language="java" pageEncoding="utf-8" isELIgnored="false"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
 
<%@ include file="include/pagetop.jsp"%>
<!DOCTYPE html>
<html>
<head>
<%@ include file="include/head.jsp"%>
</head>
<body>
    <%@ include file="include/loading.jsp"%>
<%--     <%@ include file="include/top.jsp"%> --%>
<%--     <%@ include file="include/menu_left.jsp"%> --%>
 
    <!-- //////////////////////////////////////////////////////////////////////////// -->
    <!-- START CONTENT -->
    <div class="ifr-dody">
        <!-- //////////////////////////////////////////////////////////////////////////// -->
        <!-- START CONTAINER -->
        <div class="ifr-con">
            <h3>用户存量资金汇总</h3>
            <%@ include file="include/alert.jsp"%>
 
            <div class="row">
                <div class="col-md-12">
                    <!-- Start Panel -->
                    <div class="panel panel-default">
 
                        <div class="panel-title">查询结果</div>
                            <div class="col-md-12 col-lg-12" style="margin-bottom: 10px;">
                                <div class="mailbox clearfix">
                                </div>
                            </div>
                        <div class="panel-body">
                            <table class="table table-bordered table-striped">
                                <thead>
                                    <tr>
                                        <td>账户</td>
                                        <td>存量</td>
                                    </tr>
                                </thead>
                                <tbody>
                                    <!-- <s:iterator value="datas" status="stat"> -->
                                    <c:forEach items="${datas}" var="item" varStatus="stat">
                                        <tr>
                                            <td>${item.wallettype_cn}</td>
                                            <td>${item.amount}</td>
                                        </tr>
                                    </c:forEach>
                                    <!-- </s:iterator> -->
 
                                </tbody>
                            </table>
 
                        </div>
 
                    </div>
                    <!-- End Panel -->
 
                </div>
            </div>
 
        </div>
        <!-- END CONTAINER -->
        <!-- //////////////////////////////////////////////////////////////////////////// -->
 
 
        <%@ include file="include/footer.jsp"%>
 
 
    </div>
    <!-- End Content -->
    <!-- //////////////////////////////////////////////////////////////////////////// -->
 
 
 
    <%@ include file="include/js.jsp"%>
 
    <script type="text/javascript">
        $.fn.datetimepicker.dates['zh'] = {
            days : [ "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日" ],
            daysShort : [ "日", "一", "二", "三", "四", "五", "六", "日" ],
            daysMin : [ "日", "一", "二", "三", "四", "五", "六", "日" ],
            months : [ "一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月",
                    "十月", "十一月", "十二月" ],
            monthsShort : [ "一", "二", "三", "四", "五", "六", "七", "八", "九", "十",
                    "十一", "十二" ],
            meridiem : [ "上午", "下午" ],
            //suffix:      ["st", "nd", "rd", "th"],  
            today : "今天",
            clear : "清空"
        };
 
        $(function() {
            $('#start_time').datetimepicker({
                format : 'yyyy-mm-dd',
                language : 'zh',
                weekStart : 1,
                todayBtn : 1,
                autoclose : 1,
                todayHighlight : 1,
                startView : 2,
                clearBtn : true,
                minView : 2
            }).on('changeDate',function(ev){
                $("#para_time").val("");
            });
                       
 
            $('#end_time').datetimepicker({
                format : 'yyyy-mm-dd',
                language : 'zh',
                weekStart : 1,
                todayBtn : 1,
                autoclose : 1,
                todayHighlight : 1,
                startView : 2,
                clearBtn : true,
                minView : 2
            }).on('changeDate',function(ev){
                $("#para_time").val("");
            });
            $("#para_time").val("");
        });
    </script>
 
 
    <script type="text/javascript">
        function setTime(time){
            document.getElementById("para_time").value=time;
            document.getElementById("queryForm").submit();
        }
    </script>
 
                                                    
<form action="<%=basePath%>normal/adminUserMoneyStatisticsAction!exportData.action" method="post" id="exportData">
        <input type="hidden" name="pageNo" value="${pageNo}">
        <input type="hidden" name="end_time"/>
        <input type="hidden" name="start_time"/>
        <input type="hidden" name="para_time"/>
    
    </form>
    <script type="text/javascript">
    function exportData_confirm() {
        swal({
            title : "确认导出订单数据到文件?",
            text : "",
            type : "warning",
            showCancelButton : true,
            confirmButtonColor : "#DD6B55",
            confirmButtonText : "确认",
            closeOnConfirm : true
        }, function() {
//              $('input[name="end_time"]').val($("#end_time").val());
//              $('input[name="start_time"]').val($("#start_time").val());
//              $('input[name="para_time"]').val($("#para_time").val());
            document.getElementById("exportData").submit();
            
        });
 
    };
    </script>
</body>
</html>