心理咨询网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

exform.html 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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>{$form->form_name}记录导出</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>[value1->description]</th>
  44. {/foreach}
  45. <th>时间</th>
  46. </tr>
  47. </thead>
  48. <tbody>
  49. {foreach $formdata(key,value,num)}
  50. <tr>
  51. <td>[num]</td>
  52. {foreach $fields(key2,value2,num2)}
  53. {php} $field=$value2->name {/php}
  54. <td class="text">[value->$field]</td>
  55. {/foreach}
  56. <td>[value->create_time]</td>
  57. </tr>
  58. {/foreach}
  59. </tbody>
  60. </table>
  61. </body>
  62. </html>