zj
2024-06-03 3603ecb207f7e712c635f19531e05fac4d19e53f
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
<%@ 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"%>
 
<div class="">
            
            <%@ include file="include/alert.jsp"%>
            
            <div class="row">
                <div class="col-md-12">
                        <div class="panel-body ">
                        
                            <table class="table table-bordered table-striped">
                            
                                <thead>
                                    <tr>
                                        <td style="">业务</td>
                                        <td style="">资产(USDT)</td>
                                    </tr>
                                </thead>
                                
                                <tbody>
                                    <!-- <s:iterator value="asset_data" status="stat"> -->
                                    <c:forEach items="${asset_data}" var="item" varStatus="stat">
                                        <tr>
                                            <td style="">${item.name}</td>
                                            <td style="">${item.value}</td>
                                        </tr>
                                    <!-- </s:iterator> -->
                                    </c:forEach>
                                </tbody>
                                
                            </table>
                            
                        </div>
 
                    </div>
            </div>
        </div>