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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>${Constants.CUSTOMER_CONSTANTS}列表</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
[#include "/business/wechat/include/whead.html" /]
</head>
 
<body class="user_center equiplist ordertype">
    <div class="going_order">
    [#if projects?? && projects?size>0]
        [#list projects as project]    
           <div class="go_wrap" style="cursor:pointer;" onclick="window.location.href='${base}/ewyw/stats/ewSatisStats/satisStatsIndex.html?cusId=${project.PROJECT_ID}'">
                <table>
                    <tr>
                        <td width="85%">${Constants.CUSTOMER_CONSTANTS}名称:<a><em>${project.PROJECT_NAME}</em></a></td>
                    </tr>
                </table>
            </div>
        [/#list]
    [/#if]
    </div>
    [#include "/business/wechat/include/wfoot.html" /]
    <script type="text/javascript">
        
    </script>
</body>
</html>