心理咨询网
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

exmessage.html 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <html xmlns:x="urn:schemas-microsoft-com:office:excel">
  2. <head>
  3. <meta charset="utf-8">
  4. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  5. <title>留言记录导出</title>
  6. <style>
  7. table,table tr th, table tr td{
  8. border:1px solid #333;
  9. }
  10. table tr th, table tr td{
  11. padding:2px 5px;
  12. }
  13. .text{
  14. mso-number-format:\@;
  15. }
  16. table{
  17. margin:10px 0;
  18. border-collapse:collapse;
  19. }
  20. </style>
  21. <!--[if gte mso 9]><xml>
  22. <x:ExcelWorkbook>
  23. <x:ExcelWorksheets>
  24. <x:ExcelWorksheet>
  25. <x:Name>Sheet1</x:Name>
  26. <x:WorksheetOptions>
  27. <x:Print>
  28. <x:ValidPrinterInfo />
  29. </x:Print>
  30. </x:WorksheetOptions>
  31. </x:ExcelWorksheet>
  32. </x:ExcelWorksheets>
  33. </x:ExcelWorkbook>
  34. </xml>
  35. <![endif]-->
  36. </head>
  37. <body>
  38. <table class="layui-table">
  39. <thead>
  40. <tr>
  41. <th>序号</th>
  42. {foreach $fields(key1,value1,num1)}
  43. <th class="text">[value1->description]</th>
  44. {/foreach}
  45. <th>时间</th>
  46. <th>访客信息</th>
  47. <th>回复内容</th>
  48. </tr>
  49. </thead>
  50. <tbody>
  51. {foreach $messages(key,value,num)}
  52. <tr>
  53. <td>[num]</td>
  54. {foreach $fields(key2,value2,num2)}
  55. {php} $field=$value2->name {/php}
  56. <td>[value->$field]</td>
  57. {/foreach}
  58. <td>[value->create_time]</td>
  59. <td>
  60. IP:{fun=long2ip($value->user_ip)};
  61. 浏览器:[value->user_bs];
  62. 操作系统:[value->user_os]
  63. </td>
  64. <td>[value->recontent]</td>
  65. </tr>
  66. {/foreach}
  67. </tbody>
  68. </table>
  69. </body>
  70. </html>