No Description
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.

clear_cache.htm 6.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. {include file="public/layout" /}
  2. <body class="bodystyle">
  3. <div id="toolTipLayer" style="position: absolute; z-index: 9999; display: none; visibility: visible; left: 95px; top: 573px;"></div>
  4. <div id="append_parent"></div>
  5. <div id="ajaxwaitid"></div>
  6. <style type="text/css">
  7. .nc-row li {
  8. font-size: 14px;
  9. }
  10. </style>
  11. <div class="page">
  12. <div class="fixed-bar">
  13. <div class="item-title">
  14. <a class="back_xin" href="javascript:history.back();" title="返回"><i class="iconfont e-fanhui"></i></a>
  15. <div class="subject">
  16. <h3>清除缓存</h3>
  17. <h5></h5>
  18. </div>
  19. </div>
  20. </div>
  21. <!-- 操作说明 -->
  22. <div id="explanation" class="explanation">
  23. <div id="checkZoom" class="title"><i class="fa fa-lightbulb-o"></i>
  24. <h4 title="提示相关设置操作时应注意的要点">提示</h4>
  25. <span title="收起提示" id="explanationZoom" style="display: block;"></span>
  26. </div>
  27. <ul>
  28. <li>使用场景:运营模式下及个别插件,如模板做了修改,需要清理缓存后生效;同时支持数据缓存清理</li>
  29. <li>使用技巧:清除单一页面缓存,在URL后面加上 ?clear=1 访问即可(静态html不需操作)</li>
  30. <li>定时清理:通过第三方采集、Excel等工具导入数据,要在宝塔里设置定时清理任务,前台才能及时显示</li>
  31. <li style="text-indent: 5em;background:unset;">清理缓存api接口 {$Request.domain}__ROOT_DIR__/index.php?m=api&c=Ajax&a=clear_cache 仅支持服务器,可参考(<a href="JavaScript:void(0);" data-href="https://www.eyoucms.com/plus/view.php?aid=30612&origin_eycms=1" onclick="openFullframe(this,'在宝塔里定时清理网站缓存');">宝塔定时教程</a>)</li>
  32. </ul>
  33. </div>
  34. <form class="form-horizontal" id="cleanCache" method="post">
  35. <div class="ncap-form-default">
  36. {if condition="!empty($pageDirList)"}
  37. <dl class="row">
  38. <dt class="tit">页面缓存文件</dt>
  39. <dd class="opt">
  40. <ul class="nc-row ncap-waybill-list">
  41. {volist name="$pageDirList" id="vo"}
  42. <li>
  43. <label class="label">
  44. {if condition="$vo.dir_type == 'system'"}
  45. <input class="check single_check" type="checkbox" name="clearHtml[]" value="{$vo.dir_value}" checked="checked">
  46. {else /}
  47. <input class="check single_check" type="checkbox" name="clearHtml[]" value="{$vo.dir_type}/{$vo.dir_value}" checked="checked">
  48. {/if}
  49. {$vo.dir_title}<!-- ({$vo.dir_value}) -->
  50. </label>
  51. </li>
  52. {/volist}
  53. </ul>
  54. </dd>
  55. </dl>
  56. {/if}
  57. <dl class="row">
  58. <dt class="tit">数据缓存文件</dt>
  59. <dd class="opt">
  60. <ul class="nc-row ncap-waybill-list">
  61. {volist name="$cacheDirList" id="vo"}
  62. <li>
  63. <label class="label"><input class="check single_check" type="checkbox" name="clearCache[]" value="{$vo.dir_value}" checked="checked">{$vo.dir_title}<!-- ({$vo.dir_value}) --></label>
  64. </li>
  65. {/volist}
  66. </ul>
  67. </dd>
  68. </dl>
  69. <dl class="row">
  70. <dt class="tit">数据表缓存</dt>
  71. <dd class="opt">
  72. <ul class="nc-row ncap-waybill-list">
  73. <li>
  74. <label class="label"><input class="check single_check" type="checkbox" name="clearTable[]" value="table" checked="checked">数据表结构</label><p class="notic">数据保存不生效时执行</p>
  75. </li>
  76. </ul>
  77. </dd>
  78. </dl>
  79. <dl class="row none">
  80. <dt class="tit"></dt>
  81. <dd class="opt">
  82. <ul class="nc-row ncap-waybill-list">
  83. <li>
  84. <label class="label"><input type="checkbox" class="check" id="clearAll" name="clearAll" value="clearAll" checked="checked" onclick="$('input[name^=\'clear\']').prop('checked', this.checked);">全选</label>
  85. </li>
  86. </ul>
  87. </dd>
  88. </dl>
  89. <div class="bot">
  90. <a href="JavaScript:void(0);" onclick="chk_submit();" class="ncap-btn-big ncap-btn-green" id="submitBtn">立即清理</a>&nbsp;
  91. <a href="javascript:void(0);" onclick="allselect(this);" id="allselect" class="ncap-btn-big ncap-btn-green" style="border: 1px solid #C9C9C9; background-color: #fff;color: #555;" >取消</a>
  92. </div>
  93. </div>
  94. </form>
  95. </div>
  96. <script type="text/javascript">
  97. $(function(){
  98. $('.single_check').click(function(){
  99. if ($('.single_check').length == $('.single_check:checked').length) {
  100. $('#clearAll').prop('checked', true);
  101. $('#allselect').html('取消');
  102. } else {
  103. $('#clearAll').prop('checked', false);
  104. $('#allselect').html('全选');
  105. }
  106. });
  107. });
  108. function allselect(obj)
  109. {
  110. if (!$('#clearAll').prop("checked")) {
  111. $('#clearAll').prop('checked', true);
  112. $(obj).html('取消');
  113. } else {
  114. $('#clearAll').prop('checked', false);
  115. $(obj).html('全选');
  116. }
  117. $('input[name^=\'clear\']').prop('checked', document.getElementById('clearAll').checked);
  118. }
  119. function chk_submit()
  120. {
  121. if ($('input[name^=clear]:checked').length <= 0) {
  122. layer.msg('至少选择一项!', {icon: 2,time: 1000});
  123. return false;
  124. }
  125. layer_loading('正在处理');
  126. $.ajax({
  127. type : 'post',
  128. url : "{:url('System/clear_cache', ['_ajax'=>1])}",
  129. data : $('#cleanCache').serialize(),
  130. dataType : 'json',
  131. success : function(res){
  132. layer.closeAll();
  133. if(res.code == 1){
  134. layer.msg(res.msg, {shade: layer_shade, time: 1000}, function(){
  135. top.window.location.reload();
  136. });
  137. }else{
  138. showErrorMsg(res.msg);
  139. }
  140. },
  141. error: function(e){
  142. layer.closeAll();
  143. showErrorAlert(e.responseText);
  144. }
  145. });
  146. }
  147. </script>
  148. {include file="public/footer" /}