files.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <include file="public@header"/>
  2. </head>
  3. <body>
  4. <div class="wrap js-check-wrap">
  5. <form method="post" class="js-ajax-form">
  6. <table class="table table-hover table-bordered table-list">
  7. <thead>
  8. <tr>
  9. <th>文件名</th>
  10. <th>操作名</th>
  11. <th>文件路径</th>
  12. <th>描述</th>
  13. <th width="120">{:lang('ACTIONS')}</th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. <foreach name="files" item="vo">
  18. <tr>
  19. <td>{$vo.name}</td>
  20. <td>{$vo.action}</td>
  21. <td>{$vo.file}.html</td>
  22. <td>{$vo.description}</td>
  23. <td>
  24. <a href="javascript:;" data-file="{$vo.id}" data-title="{$vo.name} {$vo.file}.html"
  25. onclick="openDesignDialog(this)">设计</a>
  26. </td>
  27. </tr>
  28. </foreach>
  29. </tbody>
  30. </table>
  31. </form>
  32. </div>
  33. <script src="__STATIC__/js/admin.js"></script>
  34. <script>
  35. function openDesignDialog(obj) {
  36. var $obj = $(obj);
  37. var fileId = $obj.data('file');
  38. var title = $obj.data('title');
  39. parent.openIframeLayer("{:url('theme/fileSetting')}?file_id=" + fileId, title, {
  40. area: ['700px', '90%'],
  41. btn: ['确定', '取消'],
  42. yes: function (index, layero) {
  43. console.log(layero);
  44. var iframeWin = parent.window[layero.find('iframe')[0]['name']];
  45. iframeWin.confirm();
  46. //layer.close(index); //如果设定了yes回调,需进行手工关闭
  47. }
  48. });
  49. }
  50. </script>
  51. </body>
  52. </html>