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_database.htm 984B

1234567891011121314151617181920212223242526272829
  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. <div id="error_notic_show" hidden style="font-size: 16px;">
  5. </div>
  6. </div>
  7. <script type="text/javascript">
  8. var parentObj = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  9. layer_loading('正在处理');
  10. $.ajax({
  11. url: "{:weapp_url('Systemdoctor/Systemdoctor/check_database')}",
  12. data: {_ajax:1},
  13. type: 'post',
  14. dataType: 'json',
  15. success: function (res) {
  16. layer.closeAll();
  17. if ('1' == res.code) {
  18. var _parent = parent;
  19. _parent.layer.close(parentObj);
  20. _parent.layer.msg(res.msg, {shade: 0.3, time: 1000});
  21. } else {
  22. $("#error_notic_show").show().html(res.msg);
  23. }
  24. }
  25. });
  26. </script>
  27. {include file="footer.htm" /}