Ingen beskrivning
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.

filemanager.htm 4.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. {include file="public/layout" /}
  2. <body class="bodystyle" style="min-width: 100px;cursor: default; -moz-user-select: inherit;">
  3. <div id="append_parent"></div>
  4. <div id="ajaxwaitid"></div>
  5. <div class="page">
  6. <div class="flexigrid">
  7. <div class="hDiv">
  8. <div class="hDivBox">
  9. <table cellspacing="0" cellpadding="0" style="width: 100%">
  10. <thead>
  11. <tr>
  12. <th abbr="" axis="col3" class="">
  13. <div class="" style="padding-left:15px ">点击名称选择文件</div>
  14. </th>
  15. <th abbr="" axis="col3" class="w200">
  16. <div class="tc">文件大小</div>
  17. </th>
  18. <th abbr="" axis="col6" class="w100">
  19. <div class="tc">最后修改时间</div>
  20. </th>
  21. </tr>
  22. </thead>
  23. </table>
  24. </div>
  25. </div>
  26. <div class="bDiv" style="height: auto;">
  27. <div id="flexigrid" cellpadding="0" cellspacing="0" border="0">
  28. <table style="width: 100%">
  29. <tbody>
  30. {empty name="list"}
  31. <tr>
  32. <td class="no-data" align="center" axis="col0" colspan="50">
  33. <div class="no_row">
  34. <div class="no_pic"><img src="__SKIN__/images/null-data.png"></div>
  35. </div>
  36. </td>
  37. </tr>
  38. {else/}
  39. {foreach name="list" item="vo" key="k" }
  40. <tr>
  41. <td style="width: 100%">
  42. <div style="text-align: left; padding-left: 15px;">
  43. {if condition="in_array($vo['filetype'], array('dir','dir2'))"}
  44. <a href="{:url('Seo/filemanager', array('activepath'=>replace_path($vo.filepath)))}">
  45. <img src="__SKIN__/images/{$vo.icon}" border="0" width="16" height="16" align="absmiddle" class="flt_u">&nbsp;
  46. {$vo.filename}
  47. </a>
  48. {else /}
  49. {notempty name="$vo.icon"}
  50. <img class="flt_u" src="__SKIN__/images/{$vo.icon}" border="0" width="16" height="16" align="absmiddle" {if condition="!empty($vo.filepath) AND 'image' == $vo.filemine"}onmouseover="layer_tips=layer.tips('<img src=__ROOT_DIR__{$vo.filepath}?v={php}echo time();{/php} class=\'layer_tips_img\'>',this,{tips: [1, '#fff']});"{/if} onmouseout="layer.close(layer_tips);">
  51. {/notempty}
  52. &nbsp;
  53. {eq name="$vo['filemine']" value='image'}
  54. <a href="__ROOT_DIR__{$vo['filepath']}?v={php}echo time();{/php}" target="_blank">{$vo.filename}</a>
  55. {else /}
  56. <a href="javascript:;" onclick="ReturnValue('{$vo.filename}')">{$vo.filename}</a>
  57. {/eq}
  58. {/if}
  59. </div>
  60. </td>
  61. <td class="">
  62. <div class="w200 tc">
  63. {$vo.filesize|default=''}
  64. </div>
  65. </td>
  66. <td class="">
  67. <div class="w100 tc">
  68. {notempty name="$vo.filetime"}
  69. {$vo.filetime|date='Y-m-d',###}
  70. {/notempty}
  71. </div>
  72. </td>
  73. </tr>
  74. {/foreach}
  75. {/empty}
  76. </tbody>
  77. </table>
  78. </div>
  79. <div class="iDiv" style="display: none;"></div>
  80. </div>
  81. <!--分页位置-->
  82. </div>
  83. </div>
  84. <form class="none" id="post_del" method="POST" action="">
  85. <input type="hidden" name="filename" value="">
  86. <input type="hidden" name="activepath" value="">
  87. </form>
  88. <script type="text/javascript">
  89. $(document).ready(function(){
  90. // 表格行点击选中切换
  91. $('#flexigrid > table>tbody >tr').click(function(){
  92. $(this).toggleClass('trSelected');
  93. });
  94. // 点击刷新数据
  95. $('.fa-refresh').click(function(){
  96. location.href = location.href;
  97. });
  98. });
  99. function ReturnValue(reimg)
  100. {
  101. parent.layer.closeAll();
  102. $('#seo_html_templet', window.parent.document).val(reimg);
  103. $('#preview_home', window.parent.document).attr('href', '__ROOT_DIR__/index.php?clear=1&templet='+reimg);
  104. }
  105. </script>
  106. {include file="public/footer" /}