Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

60 строки
1.5 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. </head>
  7. <style type="text/css">
  8. /* Border styles */
  9. #table-1 thead, #table-1 tr {
  10. border-top-width: 1px;
  11. border-top-style: solid;
  12. border-top-color: rgb(230, 189, 189);
  13. }
  14. #table-1 {
  15. border-bottom-width: 1px;
  16. border-bottom-style: solid;
  17. border-bottom-color: rgb(230, 189, 189);
  18. }
  19. /* Padding and font style */
  20. #table-1 td, #table-1 th {
  21. padding: 5px 10px;
  22. font-size: 12px;
  23. color: rgb(177, 106, 104);
  24. }
  25. /* Alternating background colors */
  26. #table-1 tr:nth-child(even) {
  27. background: rgb(238, 211, 210)
  28. }
  29. #table-1 tr:nth-child(odd) {
  30. background: #FFF
  31. }
  32. </style>
  33. <body>
  34. <div>
  35. <input type="button" value="返回材料查询页面" id="voice" class="button" onclick="window.location.href = '/module/wxInterface/getMedia'"/>
  36. </div>
  37. <table id="table-1" style="width: 100%;text-align: left;">
  38. <tr>
  39. <th >关键字</th>
  40. <th>类型</th>
  41. <th>素材ID/文本内容</th>
  42. <th>素材名称</th>
  43. </tr>
  44. <?php $config = $this->config; ?>
  45. <?php foreach ($config as $val) { ?>
  46. <?php if (is_array($val)) { ?>
  47. <tr>
  48. <td><?php echo $val['name']; ?></td>
  49. <td><?php echo $val['type']; ?></td>
  50. <td><?php echo $val['id']; ?></td>
  51. <td><?php echo $val['title']; ?></td>
  52. </tr>
  53. <?php } ?>
  54. <?php } ?>
  55. </table>
  56. </body>
  57. </html>