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.

check_repeat_archives.htm 1.1KB

123456789101112131415161718192021222324252627282930313233
  1. {include file="header.htm" /}
  2. <body class="bodystyle" style="cursor: default; -moz-user-select: inherit; min-width:400px;">
  3. <div class="page" style="min-width: 400px;">
  4. {empty name='$result'}
  5. 没有检测到重复文档!
  6. {else /}
  7. <div id="error_notic_show" hidden style="font-size: 16px;"></div>
  8. {/empty}
  9. </div>
  10. {notempty name='$result'}
  11. <script type="text/javascript">
  12. var parentObj = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  13. layer_loading('正在处理');
  14. $.ajax({
  15. url: "{:weapp_url('Systemdoctor/Systemdoctor/check_repeat_archives')}",
  16. data: {_ajax:1},
  17. type: 'post',
  18. dataType: 'json',
  19. success: function (res) {
  20. layer.closeAll();
  21. if (1 == res.code) {
  22. var _parent = parent;
  23. _parent.layer.close(parentObj);
  24. _parent.layer.msg(res.msg, {shade: 0.3, time: 1000});
  25. } else {
  26. $("#error_notic_show").show().html(res.msg);
  27. }
  28. }
  29. });
  30. </script>
  31. {/notempty}
  32. {include file="footer.htm" /}