export_excel.html 669 B

12345678910111213141516171819202122232425
  1. <div class="page">
  2. <div class="fixed-bar">
  3. <div class="item-title">
  4. <h3>{$Think.lang.download_lang}</h3>
  5. <ul class="tab-base">
  6. <li><a href="JavaScript:void(0);" class="current">
  7. <span>{$Think.lang.ds_export}</span>
  8. </a>
  9. </li>
  10. </ul>
  11. </div>
  12. </div>
  13. <div class="fixed-empty"></div>
  14. <table class="tb-type1">
  15. <tbody>
  16. <tr><td>&nbsp;</td></tr>
  17. <tr>
  18. <td>
  19. {foreach name="list" item="v"}
  20. <a href="javascript:void(0)">{$Think.lang.ds_download}{$key}({$v})</a> |
  21. {/foreach}
  22. </td>
  23. </tr>
  24. </table>
  25. </div>