説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

active_add.htm 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. {include file="public/layout" /}
  2. <body class="bodystyle">
  3. <div id="append_parent"></div>
  4. <div id="ajaxwaitid"></div>
  5. <div class="page">
  6. <div class="flexigrid">
  7. <div class="ncap-form-default">
  8. <form class="form-horizontal" id="post_form" action="{:url('Discount/active_add')}" method="post">
  9. <dl class="row">
  10. <dt class="tit">
  11. <label for="active_name"><em>*</em>活动名称</label>
  12. </dt>
  13. <dd class="opt">
  14. <input type="text" class="input-txt" id="active_name" name="active_name" placeholder="请输入活动名称" autocomplete="off">
  15. </dd>
  16. </dl>
  17. <dl class="row">
  18. <dt class="tit">
  19. <label for="active_date"><em>*</em>活动时间</label>
  20. </dt>
  21. <dd class="opt">
  22. <input type="text" class="input-txt" id="start_date" name="start_date" placeholder="2022-03-23 00:00:00" autocomplete="off" style="width: 150px !important;"> 至
  23. <input type="text" class="input-txt" id="end_date" name="end_date" placeholder="2022-03-23 00:00:00" autocomplete="off" style="width: 150px !important;">
  24. </dd>
  25. </dl>
  26. <dl class="row">
  27. <dt class="tit">
  28. <label for="total_stock">选择商品 </label>
  29. </dt>
  30. <dd class="opt">
  31. <a href="javascript:void(0);" onclick="choGoods();" class="ncap-btn ncap-btn-green"><i class="layui-icon">&#xe608;</i>选择限时折扣商品</a>
  32. <p class="notic2">注:每个活动场次中出售的限时折扣商品,此处非必选,可在场次管理中单独设置</p>
  33. <div class="none" id="goods_show_list" style="margin-top: 15px;width: 850px;">
  34. <div class="flexigrid">
  35. <div class="hDiv">
  36. <div class="hDivBox">
  37. <table cellspacing="0" cellpadding="0" style="width: 100%;">
  38. <thead>
  39. <tr>
  40. <th abbr="id" axis="col5" class="w60">
  41. <div class="tc">商品ID</div>
  42. </th>
  43. <th align="center" abbr="article_title" axis="col3" class="w40">
  44. <div class="tc">封面图</div>
  45. </th>
  46. <th align="left" abbr="article_title" axis="col3" class="">
  47. <div style="text-align: left; padding-left: 10px;" class="">商品标题</div>
  48. </th>
  49. <th abbr="article_time" axis="col6" class="w60">
  50. <div class="tc">操作</div>
  51. </th>
  52. </tr>
  53. </thead>
  54. </table>
  55. </div>
  56. <div class="bDiv" style="height: auto;">
  57. <div id="flexigrid" cellpadding="0" cellspacing="0" border="0">
  58. <table style="width: 100%;">
  59. <tbody id="Template">
  60. </tbody>
  61. </table>
  62. </div>
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67. </dd>
  68. </dl>
  69. <dl class="row">
  70. <dt class="tit">
  71. <label for="buy_type">限购次数</label>
  72. </dt>
  73. <dd class="opt">
  74. <label><input type="radio" name="limit_type" value="1" checked="checked" onclick="chooseUseType(this);" />&nbsp;不限购</label>
  75. <br>
  76. <label><input type="radio" name="limit_type" value="2" onclick="chooseUseType(this);" />&nbsp;活动期内每人最多购买</label>
  77. <input type="text" id="num_2" value="1" disabled="disabled" class="input-txt" onpaste="this.value=this.value.replace(/[^\d.]/g, '');" onkeyup="this.value=this.value.replace(/[^\d.]/g, '');" style="width: 50px !important;">&nbsp;件
  78. <br>
  79. <label><input type="radio" name="limit_type" value="3" onclick="chooseUseType(this);" />&nbsp;活动期内每人每天最多购买</label>
  80. <input type="text" id="num_3" value="1" disabled="disabled" class="input-txt" onpaste="this.value=this.value.replace(/[^\d.]/g, '');" onkeyup="this.value=this.value.replace(/[^\d.]/g, '');" style="width: 50px !important;">&nbsp;件
  81. <p class="notic"></p>
  82. </dd>
  83. </dl>
  84. <dl class="row">
  85. <dt class="tit">
  86. <label for="preheat">活动预热</label>
  87. </dt>
  88. <dd class="opt">
  89. <div class="onoff">
  90. <label for="preheat1" class="cb-enable">开启</label>
  91. <label for="preheat0" class="cb-disable selected">关闭</label>
  92. <input id="preheat1" name="preheat" value="1" type="radio" onclick="$('#preheat_time_dl').show();" >
  93. <input id="preheat0" name="preheat" value="0" type="radio" onclick="$('#preheat_time_dl').hide();" checked="checked">
  94. </div>
  95. <span class="err"></span>
  96. <p class="notic">未达到活动开始时间的限时折扣抢购将以倒计时形式展示,此时只可浏览不可购买,未到预热时间不展示</p>
  97. </dd>
  98. </dl>
  99. <dl class="row none" id="preheat_time_dl">
  100. <dt class="tit">
  101. <label for="preheat_time"><em>*</em>预热时间</label>
  102. </dt>
  103. <dd class="opt">
  104. <div class="onoff">
  105. <input type="text" class="input-txt" id="preheat_time" name="preheat_time" placeholder="比如:2020-05-20" autocomplete="off">
  106. </div>
  107. <span class="err"></span>
  108. <p class="notic">预热时间不能大于开始时间</p>
  109. </dd>
  110. </dl>
  111. <div class="bot">
  112. <a href="JavaScript:void(0);" onclick="checkForm();" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a>
  113. </div>
  114. </form>
  115. </div>
  116. </div>
  117. </div>
  118. <script>
  119. function chooseUseType(obj){
  120. var val = $(obj).val();
  121. if ( 1 == val ){
  122. $("#num_2").attr('disabled',true);
  123. $("#num_3").attr('disabled',true);
  124. }else if( 2 == val ){
  125. $("#num_2").attr('disabled',false);
  126. $("#num_3").attr('disabled',true);
  127. }else if( 3 == val ){
  128. $("#num_3").attr('disabled',false);
  129. $("#num_2").attr('disabled',true);
  130. }
  131. }
  132. var parentObj = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  133. function reback(info) {
  134. layer.closeAll();
  135. if (info) {
  136. $("#goods_show_list").show();
  137. info.forEach(function (v) {
  138. v = JSON.parse(v,true)
  139. if ($('div').is('.goods_show_list_div_'+v.discount_gid) == false){
  140. var html = '';
  141. html += '<tr class="tr goods_show_list_div goods_show_list_div_' + v.discount_gid + '">';
  142. html += ' <td class="sort">';
  143. html += ' <div class="w60 tc">';
  144. html += ' ' + v.discount_gid;
  145. html += ' <input type="hidden" name="goods[discount_gid][]" value="' + v.discount_gid + '">';
  146. html += ' <input type="hidden" name="goods[aid][]" value="' + v.aid + '">';
  147. html += ' </div>';
  148. html += ' </td>';
  149. html += ' <td class="w40">';
  150. html += ' <div class="tc">';
  151. html += ' <img width="40" height="40" src="' + v.litpic + '">';
  152. html += ' </div>';
  153. html += ' </td>';
  154. html += ' <td class="" style="width: 100%;">';
  155. html += ' <div class="tl" style="padding-left: 10px;">';
  156. html += ' ' + v.title;
  157. html += ' </div>';
  158. html += ' </td>';
  159. html += ' <td class="">';
  160. html += ' <div class="w60 tc">';
  161. html += ' <a class="btn red" href="javascript:void(0);" onclick="del(' + v.discount_gid + ');">删除</a>';
  162. html += ' </div>';
  163. html += ' </td>';
  164. html += '</tr>';
  165. $("#Template").append(html);
  166. }
  167. })
  168. }
  169. }
  170. function del(sid){
  171. $(".goods_show_list_div_"+sid).remove();
  172. }
  173. layui.use(['form', 'laydate'], function(){
  174. var form = layui.form,
  175. laydate = layui.laydate;
  176. laydate.render({
  177. elem: '#start_date'
  178. ,type: 'datetime'
  179. });
  180. laydate.render({
  181. elem: '#end_date'
  182. ,type: 'datetime'
  183. });
  184. laydate.render({
  185. elem: '#preheat_time'
  186. ,type: 'datetime'
  187. });
  188. form.render();
  189. });
  190. function choGoods() {
  191. layer.open({
  192. type: 2,
  193. title: '选择限时折扣商品',
  194. fixed: true, //不固定
  195. shadeClose: false,
  196. shade: layer_shade,
  197. closeBtn: 3,
  198. maxmin: true, //开启最大化最小化按钮
  199. area: ['80%', '90%'],
  200. content: "{:url('Discount/goods_list')}"
  201. });
  202. }
  203. </script>
  204. <script type="text/javascript">
  205. // 判断输入框是否为空
  206. function checkForm(){
  207. if($('input[name=active_name]').val() == ''){
  208. showErrorMsg('活动名称不能为空!');
  209. $('input[name=active_name]').focus();
  210. return false;
  211. }
  212. if($('input[name=start_date]').val() == ''){
  213. showErrorMsg('活动开始时间不能为空!');
  214. $('input[name=start_date]').focus();
  215. return false;
  216. }
  217. if($('input[name=end_date]').val() == ''){
  218. showErrorMsg('活动结束时间不能为空!');
  219. $('input[name=end_date]').focus();
  220. return false;
  221. }
  222. if (1 == $("input[name='preheat']:checked").val()){
  223. if($('input[name=preheat_time]').val() == ''){
  224. showErrorMsg('活动预热时间不能为空!');
  225. $('input[name=preheat_time]').focus();
  226. return false;
  227. }
  228. }
  229. layer_loading('正在处理');
  230. $.ajax({
  231. type : 'post',
  232. url : "{:url('Discount/active_add', ['_ajax'=>1])}",
  233. data : $('#post_form').serialize(),
  234. dataType : 'json',
  235. success : function(res){
  236. layer.closeAll();
  237. if(res.code == 1){
  238. var _parent = parent;
  239. _parent.layer.close(parentObj);
  240. _parent.layer.msg(res.msg, {icon: 1, shade: layer_shade, time: 1000}, function(){
  241. _parent.window.location.reload();
  242. });
  243. }else{
  244. showErrorMsg(res.msg);
  245. }
  246. },
  247. error: function(e){
  248. layer.closeAll();
  249. showErrorAlert(e.responseText);
  250. }
  251. });
  252. }
  253. </script>
  254. {include file="public/footer" /}