暫無描述
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.

second_ask_init.htm 6.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. {include file="public/layout"/}
  2. <body class="bodystyle" style=" overflow-y: scroll;min-width:auto;">
  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. #layerid_1645756024 textarea
  8. {
  9. height: 220px;
  10. }
  11. </style>
  12. <div class="page" style="min-width:auto; ">
  13. <div class="flexigrid htitx">
  14. <form class="form-horizontal" id="handlepost" method="post" enctype="multipart/form-data">
  15. <div class="ncap-form-default">
  16. {include file="security/second_ask_html" /}
  17. <dl class="row">
  18. <div class="bot" style="padding-bottom:0px;">
  19. <input type="hidden" name="gourl" value="{$gourl}">
  20. <a href="JavaScript:void(0);" onclick="checkForm();" class="ncap-btn-big ncap-btn-green">确认提交</a>
  21. </div>
  22. </dl>
  23. </div>
  24. </form>
  25. </div>
  26. </div>
  27. <script type="text/javascript">
  28. var parentObj = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  29. function checkForm(){
  30. var is_founder = {$admin_info['is_founder']|default=0};
  31. if ($('input[name=security_ask_open]:checked').val() == 1) {
  32. var security_ask = $('select[name=security_ask]').val();
  33. var security_answer = $.trim($('input[name=security_answer]').val());
  34. if ('add' == $('#is_ask_add_edit').val()) {
  35. if (0 > security_ask) {
  36. showErrorMsg('请设置安全问题!');
  37. return false;
  38. }
  39. if (security_answer === '') {
  40. showErrorMsg('请设置问题答案!');
  41. $('input[name=security_answer]').focus();
  42. return false;
  43. }
  44. } else {
  45. if (security_answer !== '' || 0 <= security_ask) {
  46. var security_answer_old = $.trim($('input[name=security_answer_old]').val());
  47. if (security_answer_old === '') {
  48. showErrorMsg('原问题答案不能为空!');
  49. $('input[name=security_answer_old]').focus();
  50. return false;
  51. } else {
  52. if (0 <= security_ask) {
  53. if (security_answer === '') {
  54. showErrorMsg('请设置问题答案!');
  55. $('input[name=security_answer]').focus();
  56. return false;
  57. } else if (security_answer === security_answer_old) {
  58. showErrorMsg('设置问题答案不能与原来的一致!');
  59. $('input[name=security_answer]').focus();
  60. return false;
  61. }
  62. }
  63. }
  64. }
  65. }
  66. } else {
  67. var security_ask_open = {$security['security_ask_open']|default=0};
  68. if (0 == is_founder && 1 == security_ask_open) {
  69. showErrorAlert('创始人才能关闭安全验证功能!');
  70. return false;
  71. }
  72. }
  73. if(!ajax_isverify_answer())
  74. {
  75. autoload_security();
  76. return false;
  77. }
  78. security_ask_submitForm();
  79. }
  80. function security_ask_submitForm()
  81. {
  82. layer_loading('正在处理');
  83. setTimeout(function(){
  84. var source = "{$source|default=''}";
  85. $.ajax({
  86. type : 'post',
  87. url : "{:url('Security/second_ask_init', ['_ajax'=>1])}",
  88. data : $('#handlepost').serialize(),
  89. dataType : 'json',
  90. success : function(res){
  91. layer.closeAll();
  92. if (res.code == 1) {
  93. var btn = ['关闭窗口', '重设'];
  94. if (res.data.is_show_answer == 1) {
  95. btn = ['记住了', '重设'];
  96. }
  97. layer.confirm(res.msg, {
  98. shade: layer_shade,
  99. area: ['480px', '190px'],
  100. move: false,
  101. title: '提示',
  102. btnAlign:'r',
  103. closeBtn: 3,
  104. btn: btn ,//按钮
  105. success: function () {
  106. $(".layui-layer-content").css('text-align', 'left');
  107. }
  108. }, function (index) {
  109. var _parent = parent;
  110. if (res.data.gourl) {
  111. _parent.layer.close(parentObj);
  112. _parent.window.location.href = res.data.gourl;
  113. } else {
  114. if (res.data.is_show_answer == 1) {
  115. window.location.reload();
  116. } else {
  117. if ('arctype_lists' == source) {
  118. _parent.newtpl('lists');
  119. } else if ('arctype_view' == source) {
  120. _parent.newtpl('view');
  121. }
  122. _parent.layer.close(parentObj);
  123. }
  124. }
  125. }, function (index) {
  126. window.location.reload();
  127. });
  128. }else{
  129. showErrorMsg(res.msg);
  130. }
  131. },
  132. error: function(e){
  133. layer.closeAll();
  134. showErrorAlert(e.responseText);
  135. }
  136. });
  137. }, 1);
  138. }
  139. </script>
  140. {include file="public/footer" /}