Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

bom_conf.htm 3.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {include file="header.htm" /}
  2. <body style="background-color: rgb(255, 255, 255); overflow: auto; cursor: default; -moz-user-select: inherit;min-width: auto;">
  3. <div id="append_parent"></div>
  4. <div id="ajaxwaitid"></div>
  5. <div class="page" style="min-width: auto;box-shadow:none; padding-bottom: 0px;">
  6. <form class="form-horizontal" id="post_form" method="POST" action="{:weapp_url('Systemdoctor/Systemdoctor/bom_conf')}" onsubmit="check_submit();">
  7. <div class="ncap-form-default">
  8. <dl class="row">
  9. <dt class="tit">
  10. <label for="is_autoclear">自动清理</label>
  11. </dt>
  12. <dd class="opt" style="width: auto;">
  13. <label class="curpoin"><input type="radio" name="is_autoclear" value="1" {notempty name="$conf_data.is_autoclear"} checked="checked" {/notempty}>开启</label>&nbsp;&nbsp;
  14. <label class="curpoin"><input type="radio" name="is_autoclear" value="0" {empty name="$conf_data.is_autoclear"} checked="checked" {/empty}>关闭</label>
  15. <span class="err"></span>
  16. <p class="notic">开启后自动清理多余bom头部信息</p>
  17. </dd>
  18. </dl>
  19. <dl class="row">
  20. <dt class="tit">
  21. <label for="is_backup">清理前备份</label>
  22. </dt>
  23. <dd class="opt" style="width: auto;">
  24. <label class="curpoin"><input type="radio" name="is_backup" value="1" {notempty name="$conf_data.is_backup"} checked="checked" {/notempty}>开启</label>&nbsp;&nbsp;
  25. <label class="curpoin"><input type="radio" name="is_backup" value="0" {empty name="$conf_data.is_backup"} checked="checked" {/empty}>关闭</label>
  26. <p class="notic">已清理文件将自动备份到__ROOT_DIR__/template/bom_backup目录下</p>
  27. </dd>
  28. </dl>
  29. <div class="bot" style="padding-bottom:0px;">
  30. <a href="JavaScript:void(0);" onclick="check_submit();" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a>
  31. </div>
  32. </div>
  33. </form>
  34. </div>
  35. <script type="text/javascript">
  36. var parentObj = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  37. function check_submit()
  38. {
  39. layer_loading('正在处理');
  40. $.ajax({
  41. url: "{:weapp_url('Systemdoctor/Systemdoctor/bom_conf')}",
  42. type: 'POST',
  43. dataType: 'JSON',
  44. data: $('#post_form').serialize(),
  45. success: function(res){
  46. layer.closeAll();
  47. if (res.code == 1) {
  48. var _parent = parent;
  49. _parent.layer.close(parentObj);
  50. _parent.layer.msg(res.msg, {shade: layer_shade, time: 1000}, function(){
  51. _parent.window.location.reload();
  52. });
  53. } else {
  54. showErrorMsg(res.msg);
  55. }
  56. },
  57. error: function(e){
  58. layer.closeAll();
  59. showErrorAlert(e.responseText);
  60. }
  61. });
  62. }
  63. </script>
  64. {include file="footer.htm" /}