|
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title></title>
- </head>
- <style type="text/css">
- /* Border styles */
- #table-1 thead, #table-1 tr {
- border-top-width: 1px;
- border-top-style: solid;
- border-top-color: rgb(230, 189, 189);
- }
- #table-1 {
- border-bottom-width: 1px;
- border-bottom-style: solid;
- border-bottom-color: rgb(230, 189, 189);
- }
-
- /* Padding and font style */
- #table-1 td, #table-1 th {
- padding: 5px 10px;
- font-size: 12px;
- color: rgb(177, 106, 104);
- }
-
- /* Alternating background colors */
- #table-1 tr:nth-child(even) {
- background: rgb(238, 211, 210)
- }
- #table-1 tr:nth-child(odd) {
- background: #FFF
- }
- </style>
- <body>
- <div>
- <input type="button" value="返回材料查询页面" id="voice" class="button" onclick="window.location.href = '/module/wxInterface/getMedia'"/>
- </div>
-
- <table id="table-1" style="width: 100%;text-align: left;">
- <tr>
- <th >关键字</th>
- <th>类型</th>
- <th>素材ID/文本内容</th>
- <th>素材名称</th>
- </tr>
- <?php $config = $this->config; ?>
- <?php foreach ($config as $val) { ?>
- <?php if (is_array($val)) { ?>
- <tr>
- <td><?php echo $val['name']; ?></td>
- <td><?php echo $val['type']; ?></td>
- <td><?php echo $val['id']; ?></td>
- <td><?php echo $val['title']; ?></td>
- </tr>
- <?php } ?>
- <?php } ?>
- </table>
- </body>
- </html>
|