Database_recover.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <form id="myform" name="myform" method="post" action="">
  2. <div class="table-list">
  3. <table cellpadding=0 cellspacing=0 width="100%">
  4. <thead>
  5. <tr>
  6. <th style="width:4%">选择</th>
  7. <th align="left" style="width:20%">名称</th>
  8. <th align="left" style="width:15%">大小</th>
  9. <th align="left" style="width:15%">时间</th>
  10. <th align="left" style="width:8%">下载</th>
  11. <th align="left" style="width:8%">导入</th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. <volist name="files" id="vo">
  16. <tr>
  17. <td><input type="checkbox" name="files[]" value="{$vo.path}"> </td>
  18. <td>{$vo.file}</td>
  19. <td>{$vo.size|byte_format}</td>
  20. <td>{$vo.time|toDate}</td>
  21. <td><a href="{$vo.path}">下载</a></td>
  22. <td><a href="javascript:if(confirm('确认要导入数据吗?')) window.location='{:U($module_name.'/recover?do=import&filename='.$vo[name])}'">导入</a></td>
  23. </tr>
  24. </volist>
  25. </tbody>
  26. </table>
  27. </div>
  28. <div class="btn">
  29. <input type="checkbox" value="" id="check_box" onclick="selectall('files[]');">全选&nbsp;&nbsp;
  30. <input type="button" class="button" name="" value="删除" onclick="myform.action='{:U($module_name.'/recover?do=delete')}'; $('#myform').submit();">
  31. </div>
  32. </form>