Нема описа
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.

active_edit.htm 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. {include file="public/layout" /}
  2. <div 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_edit')}" 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" value="{$info.active_name}" placeholder="请输入活动名称" autocomplete="off">
  15. </dd>
  16. </dl>
  17. <dl class="row">
  18. <dt class="tit">
  19. <label for="limit"><em>*</em>活动日期</label>
  20. </dt>
  21. <dd class="opt">
  22. <input type="text" class="input-txt" id="start_date" name="start_date" value="{$info.start_date|date='Y-m-d H:i:s',###}" autocomplete="off" style="width: 150px !important;" readonly> 至
  23. <input type="text" class="input-txt" id="end_date" name="end_date" value="{$info.end_date|date='Y-m-d H:i:s',###}" autocomplete="off" style="width: 150px !important;">
  24. </dd>
  25. </dl>
  26. <dl class="row">
  27. <dt class="tit">
  28. <label for="total_stock"><em>*</em>选择商品 </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="{empty name='$goods'} none {/empty}" 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. {empty name="$goods"}
  61. <tr id="noneGoods">
  62. <td class="no-data" align="center" axis="col0" colspan="50">
  63. <i class="fa fa-exclamation-circle"></i>没有选择限时折扣商品
  64. </td>
  65. </tr>
  66. {else/}
  67. {foreach name="$goods" item="vo" key="k"}
  68. <tr class="tr goods_show_list_div goods_show_list_div_{$vo.discount_goods_id}">
  69. <td class="sort">
  70. <div class="w60 tc">
  71. {$vo.discount_goods_id}
  72. <input type="hidden" name="goods[discount_gid][]" value="{$vo.discount_goods_id}">
  73. <input type="hidden" name="goods[aid][]" value="{$vo.aid}">
  74. </div>
  75. </td>
  76. <td class="w40">
  77. <div class="tc">
  78. <img width="40" height="40" src="{$vo.litpic|get_default_pic=###}">
  79. </div>
  80. </td>
  81. <td class="" style="width: 100%;">
  82. <div class="tl" style="padding-left: 10px;">
  83. {$vo.title}
  84. </div>
  85. </td>
  86. <td class="">
  87. <div class="w60 tc">
  88. <a class="btn red" href="javascript:void(0);" onclick="del('{$vo.discount_goods_id}');">删除</a>
  89. </div>
  90. </td>
  91. </tr>
  92. {/foreach}
  93. {/empty}
  94. </tbody>
  95. </table>
  96. </div>
  97. </div>
  98. </div>
  99. </div>
  100. </div>
  101. </dd>
  102. </dl>
  103. <dl class="row">
  104. <dt class="tit">
  105. <label for="buy_type">限购次数</label>
  106. </dt>
  107. <dd class="opt">
  108. <label><input type="radio" name="limit_type" value="1" {eq name='$info.limit_type' value='1'}checked="checked"{/eq} onclick="chooseUseType(this);" />&nbsp;不限购</label>
  109. <br>
  110. <label><input type="radio" name="limit_type" value="2" {eq name='$info.limit_type' value='2'}checked="checked"{/eq} onclick="chooseUseType(this);" />&nbsp;活动期内每人最多购买</label>
  111. <input type="text" id="num_2" {neq name='$info.limit_type' value='2'} value="1" disabled="disabled"{else/}value="{$info.limit}"{/neq} class="input-txt" onpaste="this.value=this.value.replace(/[^\d.]/g, '');" onkeyup="this.value=this.value.replace(/[^\d.]/g, '');" style="width: 50px !important;">&nbsp;件
  112. <br>
  113. <label><input type="radio" name="limit_type" value="3" {eq name='$info.limit_type' value='3'}checked="checked"{/eq} onclick="chooseUseType(this);" />&nbsp;活动期内每人每天最多购买</label>
  114. <input type="text" id="num_3" {neq name='$info.limit_type' value='3'} value="1" disabled="disabled"{else/}value="{$info.limit}"{/neq} class="input-txt" onpaste="this.value=this.value.replace(/[^\d.]/g, '');" onkeyup="this.value=this.value.replace(/[^\d.]/g, '');" style="width: 50px !important;">&nbsp;件
  115. <p class="notic"></p>
  116. </dd>
  117. </dl>
  118. <dl class="row">
  119. <dt class="tit">
  120. <label for="preheat">活动预热</label>
  121. </dt>
  122. <dd class="opt">
  123. <div class="onoff">
  124. <label for="preheat1" class="cb-enable {eq name='$info.preheat' value='1'}selected{/eq}">开启</label>
  125. <label for="preheat0" class="cb-disable {eq name='$info.preheat' value='0'}selected{/eq}">关闭</label>
  126. <input id="preheat1" name="preheat" value="1" type="radio" onclick="$('#preheat_time_dl').show();" {eq name='$info.preheat' value='1'}checked="checked"{/eq}>
  127. <input id="preheat0" name="preheat" value="0" type="radio" onclick="$('#preheat_time_dl').hide();" {eq name='$info.preheat' value='0'}checked="checked"{/eq}>
  128. </div>
  129. <span class="err"></span>
  130. <p class="notic">未达到活动开始时间的限时折扣抢购将以倒计时形式展示,此时只可浏览不可购买,未到预热时间不展示</p>
  131. </dd>
  132. </dl>
  133. <dl class="row {eq name='$info.preheat' value='0'}none{/eq}" id="preheat_time_dl">
  134. <dt class="tit">
  135. <label for="preheat_time"><em>*</em>预热时间</label>
  136. </dt>
  137. <dd class="opt">
  138. <div class="onoff">
  139. <input type="text" class="input-txt" id="preheat_time" name="preheat_time" value="{$info.preheat_time|date='Y-m-d H:i:s',###}" autocomplete="off">
  140. </div>
  141. <span class="err"></span>
  142. <p class="notic">预热时间不能大于开始时间</p>
  143. </dd>
  144. </dl>
  145. <div class="bot">
  146. <input type="hidden" name="active_id" value="{$info.active_id}">
  147. <a href="JavaScript:void(0);" onclick="checkForm();" class="ncap-btn-big ncap-btn-green"
  148. id="submitBtn">确认提交</a>
  149. </div>
  150. </form>
  151. </div>
  152. </div>
  153. </div>
  154. <script>
  155. function chooseUseType(obj){
  156. var val = $(obj).val();
  157. if ( 1 == val ){
  158. $("#num_2").attr('disabled',true);
  159. $("#num_3").attr('disabled',true);
  160. }else if( 2 == val ){
  161. $("#num_2").attr('disabled',false);
  162. $("#num_3").attr('disabled',true);
  163. }else if( 3 == val ){
  164. $("#num_3").attr('disabled',false);
  165. $("#num_2").attr('disabled',true);
  166. }
  167. }
  168. function reback(info) {
  169. layer.closeAll();
  170. if (info) {
  171. $("#goods_show_list").show();
  172. info.forEach(function (v) {
  173. v = JSON.parse(v, true)
  174. if ($('div').is('.goods_show_list_div_' + v.discount_gid) == false) {
  175. var html = '';
  176. html += '<tr class="tr goods_show_list_div goods_show_list_div_' + v.discount_gid + '">';
  177. html += ' <td class="sort">';
  178. html += ' <div class="w60 tc">';
  179. html += ' ' + v.discount_gid;
  180. html += ' <input type="hidden" name="goods[discount_gid][]" value="' + v.discount_gid + '">';
  181. html += ' <input type="hidden" name="goods[aid][]" value="' + v.aid + '">';
  182. html += ' </div>';
  183. html += ' </td>';
  184. html += ' <td class="w40">';
  185. html += ' <div class="tc">';
  186. html += ' <img width="40" height="40" src="' + v.litpic + '">';
  187. html += ' </div>';
  188. html += ' </td>';
  189. html += ' <td class="" style="width: 100%;">';
  190. html += ' <div class="tl" style="padding-left: 10px;">';
  191. html += ' ' + v.title;
  192. html += ' </div>';
  193. html += ' </td>';
  194. html += ' <td class="">';
  195. html += ' <div class="w60 tc">';
  196. html += ' <a class="btn red" href="javascript:void(0);" onclick="del(' + v.discount_gid + ');">删除</a>';
  197. html += ' </div>';
  198. html += ' </td>';
  199. html += '</tr>';
  200. $("#Template").append(html);
  201. $("#noneGoods").hide();
  202. }
  203. })
  204. }
  205. }
  206. function del(sid) {
  207. $(".goods_show_list_div_" + sid).remove();
  208. if ($('.goods_show_list_div').length <= 0) {
  209. $("#goods_show_list").hide();
  210. }
  211. }
  212. function choGoods() {
  213. // var arr = [];
  214. // $('input[name^=goods]').each(function () {
  215. // if ('goods[discount_gid][]' == $(this).attr('name')){
  216. // arr.push($(this).val());
  217. // }
  218. // })
  219. layer.open({
  220. type: 2,
  221. title: '选择限时折扣商品',
  222. fixed: true, //不固定
  223. shadeClose: false,
  224. shade: layer_shade,
  225. closeBtn: 3,
  226. maxmin: true, //开启最大化最小化按钮
  227. area: ['80%', '90%'],
  228. content: "{:url('Discount/goods_list')}"
  229. });
  230. }
  231. </script>
  232. <script type="text/javascript">
  233. layui.use(['form', 'laydate'], function(){
  234. var form = layui.form,
  235. laydate = layui.laydate;
  236. laydate.render({
  237. elem: '#end_date'
  238. ,type: 'datetime'
  239. });
  240. laydate.render({
  241. elem: '#preheat_time'
  242. ,type: 'datetime'
  243. });
  244. form.render();
  245. });
  246. var parentObj = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  247. // 判断输入框是否为空
  248. function checkForm() {
  249. if($('.goods_show_list_div').length == 0){
  250. showErrorMsg('请先选择限时折扣商品!');
  251. $('input[name=seckill_price]').focus();
  252. return false;
  253. }
  254. layer_loading('正在处理');
  255. $.ajax({
  256. url : "{:url('Discount/active_edit')}",
  257. data: $('#post_form').serialize(),
  258. type: 'post',
  259. dataType: 'json',
  260. success: function(res) {
  261. layer.closeAll();
  262. if (res.code == 1) {
  263. layer.msg(res.msg, {icon: 1, shade: layer_shade, time: 1000}, function(){
  264. window.location.reload();
  265. });
  266. } else {
  267. showErrorAlert(res.msg);
  268. }
  269. },
  270. error: function(e) {
  271. layer.closeAll();
  272. showErrorAlert(e.responseText);
  273. }
  274. })
  275. }
  276. </script>
  277. {include file="public/footer" /}