1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| <!doctype html>
| <html>
| <head>
| <meta charset="utf-8">
| <title>驻场监督卡列表</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 knowlege_doc" style="padding-top:30px;">
| <div>
| <ul>
| [#if zclist?? && zclist?size>0]
| [#list zclist as zc]
| <li onclick="window.location.href='${base}/uwyw/uSatis/uzcsatisDetail.html?busId=${zc.ID}'"><span style="color:#121212;font-size:14px;">${zc_index+1}.</span>${zc.ALLUSER}-${DateUtil.format("yyyy-MM",zc.CARD_MONTH)}月份服务监督卡</li>
| [/#list]
| [/#if]
|
| </ul>
| </div>
| [#include "/business/wechat/include/ufooter.html" /]
| </body>
| </html>
|
|