Açıklama Yok
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.

rate_edit.htm 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {include file="header.htm" /}
  2. <body class="bodystyle" style=" padding:0; overflow: hidden;">
  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. <div class="page">
  7. <form class="form-horizontal" id="editpostForm">
  8. <div class="ncap-form-default">
  9. <dl class="row">
  10. <dt class="tit">
  11. <label for="is_open">打开限制</label>
  12. </dt>
  13. <dd class="opt">
  14. <div class="onoff">
  15. <label for="is_open1" class="cb-enable {if condition='$data.rate.is_open eq 1'}selected{/if}">是</label>
  16. <label for="is_open0" class="cb-disable {if condition='$data.rate.is_open eq 0'}selected{/if}">否</label>
  17. <input id="is_open1" name="rate[is_open]" value="1" type="radio" {if condition="$data.rate.is_open eq 1"} checked="checked"{/if}>
  18. <input id="is_open0" name="rate[is_open]" value="0" type="radio" {if condition="$data.rate.is_open eq 0"} checked="checked"{/if}>
  19. </div>
  20. <p class="notic">限制会员多久才可以提交一次提问|回答</p>
  21. </dd>
  22. </dl>
  23. <dl class="row">
  24. <dt class="tit">
  25. <label for="duration">限制时长</label>
  26. </dt>
  27. <dd class="opt">
  28. <input type="text" name="rate[duration]" id="duration" value="{$data['rate']['duration']|default='0'}" onkeyup="this.value=this.value.replace(/[^0-9]/g,'');" onpaste="this.value=this.value.replace(/[^0-9]/g,'');" class="input-txt">秒
  29. <p class="notic">限制会员每隔若干时长(单位为秒)才能提问和回答一次,限制被恶意刷数据</p>
  30. </dd>
  31. </dl>
  32. <div class="bot">
  33. <a href="JavaScript:void(0);" onclick="checkForm();" class="ncap-btn-big ncap-btn-green">确认提交</a>
  34. </div>
  35. </div>
  36. </form>
  37. </div>
  38. <script type="text/javascript">
  39. var parentObj = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  40. // 判断输入框是否为空
  41. function checkForm() {
  42. layer_loading('正在处理');
  43. $.ajax({
  44. url : "{:weapp_url('Ask/Ask/rate_edit', ['_ajax'=>1])}",
  45. data: $('#editpostForm').serialize(),
  46. type: 'POST',
  47. success:function(res) {
  48. layer.closeAll();
  49. if (1 == res.code) {
  50. parent.layer.msg(res.msg, {shade: 0.3, time: 1000}, function(){
  51. parent.window.location.reload();
  52. parent.layer.close(parentObj);
  53. });
  54. } else {
  55. showErrorMsg(res.msg);
  56. }
  57. },
  58. error: function(e) {
  59. layer.closeAll();
  60. showErrorMsg(ey_unknown_error);
  61. }
  62. });
  63. }
  64. </script>
  65. {include file="footer.htm" /}