Ingen beskrivning
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.

reward_edit.htm 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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" style="padding-left: 10px;">
  11. <label>悬赏模式</label>
  12. </dt>
  13. <dd class="opt">
  14. <label>
  15. <input type="radio" name="reward_switch" value="1" {if condition="!empty($data.reward_switch) && 1 == $data.reward_switch"}checked="checked"{/if}>开启&nbsp;
  16. </label>
  17. <label>
  18. <input type="radio" name="reward_switch" value="0" {if condition="empty($data.reward_switch)"}checked="checked"{/if}>关闭&nbsp;
  19. </label>
  20. </dd>
  21. </dl>
  22. <dl class="row {if condition='empty($data.reward_switch)'}none{/if}" id="reward_type_dl">
  23. <dt class="tit" style="padding-left: 10px;">
  24. <label>悬赏方式</label>
  25. </dt>
  26. <dd class="opt">
  27. <label>
  28. <input type="radio" name="reward_type" value="users_money" {if condition="!empty($data.reward_type) && 'users_money' == $data.reward_type"}checked="checked"{/if}>余额&nbsp;
  29. </label>
  30. <label>
  31. <input type="radio" name="reward_type" value="scores" {if condition="empty($data.reward_switch) || 'scores' == $data.reward_type"}checked="checked"{/if}>积分&nbsp;
  32. </label>
  33. </dd>
  34. </dl>
  35. <div class="bot">
  36. <a href="JavaScript:void(0);" onclick="checkForm();" class="ncap-btn-big ncap-btn-green">确认提交</a>
  37. </div>
  38. </div>
  39. </form>
  40. </div>
  41. <script type="text/javascript">
  42. $(function(){
  43. $('input[name=reward_switch]').click(function () {
  44. var val= $(this).val();
  45. if (1 == val) {
  46. $('#reward_type_dl').show();
  47. }else {
  48. $('#reward_type_dl').hide();
  49. }
  50. });
  51. });
  52. var parentObj = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  53. // 判断输入框是否为空
  54. function checkForm() {
  55. layer_loading('正在处理');
  56. $.ajax({
  57. url : "{:weapp_url('Ask/Ask/reward_edit', ['_ajax'=>1])}",
  58. data: $('#editpostForm').serialize(),
  59. type: 'POST',
  60. success:function(res) {
  61. layer.closeAll();
  62. if (1 == res.code) {
  63. parent.layer.msg(res.msg, {shade: 0.3, time: 1000}, function(){
  64. parent.window.location.reload();
  65. parent.layer.close(parentObj);
  66. });
  67. } else {
  68. showErrorMsg(res.msg);
  69. }
  70. },
  71. error: function(e) {
  72. layer.closeAll();
  73. showErrorMsg(ey_unknown_error);
  74. }
  75. });
  76. }
  77. </script>
  78. {include file="footer.htm" /}