Nessuna descrizione
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.

edit.htm 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  1. {include file="public/layout" /}
  2. <script type="text/javascript" src="__PUBLIC__/plugins/colpick/js/colpick.js"></script>
  3. <link href="__PUBLIC__/plugins/colpick/css/colpick.css" rel="stylesheet" type="text/css"/>
  4. <style type="text/css">
  5. #coupon_color {
  6. /*margin:0;*/
  7. /*padding:0;*/
  8. border:solid 1px #dc143c;
  9. width:70px;
  10. height:20px;
  11. border-right:40px solid green;
  12. /*line-height:20px;*/
  13. }
  14. </style>
  15. <body class="bodystyle" style="overflow-y: scroll; cursor: default; -moz-user-select: inherit;">
  16. <div id="append_parent"></div>
  17. <div id="ajaxwaitid"></div>
  18. {include file="shop/left" /}
  19. <div class="page" >
  20. <div class="fixed-bar">
  21. <div class="item-title"><a class="back_xin" href="{:url('Coupon/index')}" title="返回"><i class="iconfont e-fanhui"></i></a>
  22. <ul class="tab-base nc-row">
  23. <li><a href="javascript:void(0);" class="tab current"><span>编辑优惠券</span></a></li>
  24. </ul>
  25. </div>
  26. </div>
  27. <form class="form-horizontal" id="postForm" action="{:url('Coupon/edit')}" method="post">
  28. <input type="hidden" name="coupon_id" value="{$info.coupon_id}">
  29. <div class="ncap-form-default">
  30. <dl class="row">
  31. <dt class="tit">
  32. <label for="coupon_name"><em>*</em>优惠券名称</label>
  33. </dt>
  34. <dd class="opt">
  35. <input type="text" name="coupon_name" id="coupon_name" value="{$info.coupon_name}" class="input-txt" autocomplete="off">
  36. <p class="notic"></p>
  37. </dd>
  38. </dl>
  39. <dl class="row">
  40. <dt class="tit">
  41. <label for="coupon_name"><em>*</em>优惠券颜色</label>
  42. </dt>
  43. <dd class="opt">
  44. <input type="text" name="coupon_color" id="coupon_color" value="{$info.coupon_color|default='#dc143c'}" style="border-color: {$info.coupon_color|default='#dc143c'};">
  45. <p class="notic"></p>
  46. </dd>
  47. </dl>
  48. <dl class="row" onselectstart="return false">
  49. <dt class="tit">
  50. <label for="coupon_type"><em>*</em>可使用商品</label>
  51. </dt>
  52. <dd class="opt">
  53. <label><input type="radio" name="coupon_type" value="1" {eq name="$info.coupon_type" value="1"} checked="checked" {/eq}/>&nbsp;全站通用</label>
  54. &nbsp; &nbsp;
  55. <label><input type="radio" name="coupon_type" value="2" {eq name="$info.coupon_type" value="2"} checked="checked" {/eq}/>&nbsp;指定商品</label>
  56. &nbsp; &nbsp;
  57. <label><input type="radio" name="coupon_type" value="3" {eq name="$info.coupon_type" value="3"} checked="checked" {/eq}/>&nbsp;指定分类</label>
  58. <p class="notic"></p>
  59. </dd>
  60. </dl>
  61. <dl class="row none">
  62. <dt class="tit">
  63. <label for="coupon_form"><em>*</em>优惠券类型</label>
  64. </dt>
  65. <dd class="opt">
  66. <label><input type="radio" name="coupon_form" value="1" checked="checked"/>&nbsp;满减券</label>
  67. <p class="notic"></p>
  68. </dd>
  69. </dl>
  70. <dl class="row none" {eq name="$info.coupon_type" value="2"} style="display: block;" {/eq}>
  71. <dt class="tit">
  72. <label for="product_id"><em>*</em>商品集合</label>
  73. </dt>
  74. <dd class="opt">
  75. <a href="JavaScript:void(0);" onclick="Product();" class="ncap-btn ncap-btn-green">选择商品</a>
  76. <input type="hidden" name="product_id" id="product_id" value="{$info.product_id}">
  77. <input type="hidden" id="SelectProductID" value="{$info.product_id}">
  78. <span style="color: red;">已选 <a href="JavaScript:void(0);" id="product_id_num">{$info.product_id_num}</a> 商品</span>
  79. </dd>
  80. </dl>
  81. <script type="text/javascript">
  82. $( function() {
  83. $('#product_id_num').click( function() {
  84. var product_ids = $('#product_id').val();
  85. var url = "{:url('Coupon/select_product', ['coupon_id'=>$info.coupon_id])}";
  86. url = url + '&product_ids=' + product_ids;
  87. //iframe窗
  88. layer.open({
  89. type: 2,
  90. title: '已选商品列表',
  91. shadeClose: false,
  92. shade: layer_shade,
  93. closeBtn: 3,
  94. area: ['80%', '90%'],
  95. content: url
  96. });
  97. });
  98. });
  99. function Product() {
  100. var url = "{:url('Coupon/select_product')}";
  101. //iframe窗
  102. layer.open({
  103. type: 2,
  104. title: '请选择商品',
  105. shadeClose: false,
  106. shade: layer_shade,
  107. closeBtn: 3,
  108. area: ['80%', '90%'],
  109. content: url
  110. });
  111. }
  112. </script>
  113. <dl class="row none" {eq name="$info.coupon_type" value="3"} style="display: block;" {/eq}>
  114. <dt class="tit">
  115. <label for="arctype_id"><em>*</em>商品分类</label>
  116. </dt>
  117. <dd class="opt">
  118. <a href="JavaScript:void(0);" onclick="Arctype();" class="ncap-btn ncap-btn-green">选择分类</a>
  119. <input type="hidden" name="arctype_id" id="arctype_id" value="{$info.arctype_id}">
  120. <input type="hidden" id="SelectArctypeID" value="{$info.arctype_id}">
  121. <span style="color: red;">已选 <font id="arctype_id_num">{$info.arctype_id_num}</font> 分类</span>
  122. </dd>
  123. </dl>
  124. <script type="text/javascript">
  125. /**
  126. * 选择分类
  127. * @param {[type]} obj [description]
  128. * @return {[type]} [description]
  129. */
  130. function Arctype()
  131. {
  132. var typeids = $('#arctype_id').val();
  133. var iframes = layer.open({
  134. type: 2,
  135. title: '请选择分类',
  136. fixed: true, //不固定
  137. shadeClose: false,
  138. shade: layer_shade,
  139. // maxmin: true, //开启最大化最小化按钮
  140. area: ['750px', '550px'],
  141. btn: ['确定', '关闭'],
  142. content: eyou_basefile+"?m=admin&c=Coupon&a=select_arctype&typeids="+typeids+"&lang="+__lang__,
  143. yes: function(index, layero) {
  144. var body = layer.getChildFrame('body', index);
  145. var SelectArctypeIDNew = body.find('#post_typeids').val();
  146. layer.close(index);
  147. $('#arctype_id').val(SelectArctypeIDNew);
  148. $('#SelectArctypeID').val(SelectArctypeIDNew);
  149. if (SelectArctypeIDNew) {
  150. $('#arctype_id_num').html(SelectArctypeIDNew.split(",").length).parent().show();
  151. } else {
  152. $('#arctype_id_num').parent().hide();
  153. }
  154. }
  155. });
  156. }
  157. </script>
  158. <dl class="row">
  159. <dt class="tit">
  160. <label for="coupon_price"><em>*</em>优惠规则</label>
  161. <!--减免金额-->
  162. </dt>
  163. <dd class="opt">
  164. <input type="text" name="conditions_use" autocomplete="off" id="conditions_use" value="{$info.conditions_use}" class="input-txt" onpaste="this.value=this.value.replace(/[^\d.]/g, '');" onkeyup="this.value=this.value.replace(/[^\d.]/g, '');" style="width: 80px !important;">
  165. 元,减
  166. <input type="text" name="coupon_price" autocomplete="off" id="coupon_price" value="{$info.coupon_price}" class="input-txt" onpaste="this.value=this.value.replace(/[^\d.]/g, '');" onkeyup="this.value=this.value.replace(/[^\d.]/g, '');" style="width: 80px !important;">
  167. <p class="notic"></p>
  168. </dd>
  169. </dl>
  170. <dl class="row">
  171. <dt class="tit">
  172. <label for="coupon_stock"><em>*</em>库存</label>
  173. </dt>
  174. <dd class="opt">
  175. <input type="text" name="coupon_stock" autocomplete="off" id="coupon_stock" value="{$info.coupon_stock}" class="input-txt" onpaste="this.value=this.value.replace(/[^\d.]/g, '');" onkeyup="this.value=this.value.replace(/[^\d.]/g, '');" style="width: 100px !important;">&nbsp;张
  176. <p class="notic"></p>
  177. </dd>
  178. </dl>
  179. <dl class="row none">
  180. <dt class="tit">
  181. <label for="redeem_points">兑换所需积分</label>
  182. </dt>
  183. <dd class="opt">
  184. <input type="text" name="redeem_points" id="redeem_points" value="{$info.redeem_points}" class="input-txt" autocomplete="off">
  185. <p class="notic">兑换优惠券需要的积分,为0时免费领取</p>
  186. </dd>
  187. </dl>
  188. <dl class="row none">
  189. <dt class="tit">
  190. <label for="redeem_authority">领取权限</label>
  191. </dt>
  192. <dd class="opt">
  193. {volist name="users_level" id="vo"}
  194. <label><input type="checkbox" name="level_id[]" value="{$vo.level_id}" {if condition="in_array($vo.level_id, $info.redeem_authority)"} checked="checked" {/if}>{$vo.level_name}</label>
  195. {/volist}
  196. <p class="notic">未勾选时,所有用户都可以领取</p>
  197. </dd>
  198. </dl>
  199. <dl class="row">
  200. <dt class="tit">
  201. <label for="use_type"><em>*</em>使用期限</label>
  202. </dt>
  203. <dd class="opt">
  204. <label><input type="radio" name="use_type" value="1" {eq name="$info.use_type" value="1"} checked="checked" {/eq} onclick="chooseUseType(this);" />&nbsp;固定时间内有效</label>
  205. <input type="text" autocomplete="off" name="use_start_time" id="use_start_time" {eq name="$info.use_type" value="1"} value="{$info.use_start_time|MyDate='Y-m-d H:i:s',###}" {/eq} {neq name="$info.use_type" value="1"} disabled="disabled" {/neq} class="input-txt" style="width: 130px !important;" />-
  206. <input type="text" autocomplete="off" name="use_end_time" id="use_end_time" {eq name="$info.use_type" value="1"} value="{$info.use_end_time|MyDate='Y-m-d H:i:s',###}" {/eq} {neq name="$info.use_type" value="1"} disabled="disabled" {/neq} class="input-txt" style="width: 130px !important;" />
  207. <div class="mt5"></div>
  208. <label><input type="radio" name="use_type" value="2" {eq name="$info.use_type" value="2"} checked="checked" {/eq} onclick="chooseUseType(this);" />&nbsp;领到当日开始</label>
  209. <input type="text" id="valid_days_2" value="{$info.valid_days}" {neq name="$info.use_type" value="2"} disabled="disabled" {/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;天内有效
  210. <div class="mt5"></div>
  211. <label><input type="radio" name="use_type" value="3" {eq name="$info.use_type" value="3"} checked="checked" {/eq} onclick="chooseUseType(this);" />&nbsp;领到次日开始</label>
  212. <input type="text" id="valid_days_3" value="{$info.valid_days}" {neq name="$info.use_type" value="3"} disabled="disabled" {/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;天内有效
  213. <p class="notic"></p>
  214. </dd>
  215. </dl>
  216. <dl class="row">
  217. <dt class="tit">
  218. <label for="start_date"><em>*</em>发放日期</label>
  219. </dt>
  220. <dd class="opt">
  221. <input type="text" autocomplete="off" name="start_date" id="start_date" value="{$info.start_date|MyDate='Y-m-d H:i:s',###}" class="input-txt">
  222. <p class="notic">优惠券开始发放时间</p>
  223. </dd>
  224. </dl>
  225. <dl class="row">
  226. <dt class="tit">
  227. <label for="end_date"><em>*</em>结束日期</label>
  228. </dt>
  229. <dd class="opt">
  230. <input type="text" autocomplete="off" name="end_date" id="end_date" value="{$info.end_date|MyDate='Y-m-d H:i:s',###}" class="input-txt">
  231. <p class="notic">优惠券发放结束时间</p>
  232. </dd>
  233. </dl>
  234. <div class="bot">
  235. <input type="hidden" name="valid_days" id="valid_days" value="{$info.valid_days}">
  236. <a href="JavaScript:void(0);" onclick="checkForm();" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a>
  237. </div>
  238. </div>
  239. </form>
  240. </div>
  241. <script type="text/javascript">
  242. try{
  243. if (typeof(eval('is_conceal_1649209614'))=="function" && is_conceal_1649209614()){
  244. $(".page").css("margin-left","");
  245. }else{
  246. $(".page").css("margin-left","100px");
  247. }
  248. }catch(e){}
  249. $(document).ready(function(){
  250. // 颜色选择
  251. $('#coupon_color').colpick({
  252. flat:false,
  253. layout:'rgbhex',
  254. submit:0,
  255. colorScheme:'light',
  256. color:$('#coupon_color').val(),
  257. onChange:function(hsb,hex,rgb,el,bySetColor) {
  258. $(el).css('border-color','#'+hex);
  259. // Fill the text box just if the color was set using the picker, and not the colpickSetColor function.
  260. if(!bySetColor) $(el).val('#'+hex);
  261. }
  262. }).keyup(function(){
  263. $(this).colpickSetColor('#'+this.value);
  264. });
  265. });
  266. function chooseUseType(obj){
  267. var val = $(obj).val();
  268. if ( 1 == val ){
  269. $("#use_start_time").attr('disabled',false);
  270. $("#use_end_time").attr('disabled',false);
  271. $("#valid_days_2").attr('disabled',true);
  272. $("#valid_days_3").attr('disabled',true);
  273. }else if( 2 == val ){
  274. $("#valid_days_2").attr('disabled',false);
  275. $("#use_start_time").attr('disabled',true);
  276. $("#use_end_time").attr('disabled',true);
  277. $("#valid_days_3").attr('disabled',true);
  278. }else if( 3 == val ){
  279. $("#valid_days_3").attr('disabled',false);
  280. $("#use_start_time").attr('disabled',true);
  281. $("#use_end_time").attr('disabled',true);
  282. $("#valid_days_2").attr('disabled',true);
  283. }
  284. }
  285. layui.use('laydate', function() {
  286. var laydate = layui.laydate;
  287. laydate.render({
  288. elem: '#start_date'
  289. ,type: 'datetime'
  290. });
  291. laydate.render({
  292. elem: '#end_date'
  293. ,type: 'datetime'
  294. });
  295. laydate.render({
  296. elem: '#use_start_time'
  297. ,type: 'datetime'
  298. });
  299. laydate.render({
  300. elem: '#use_end_time'
  301. ,type: 'datetime'
  302. });
  303. })
  304. $(function () {
  305. $('input[name=coupon_type]').click(function() {
  306. if (3 == $(this).val()) {
  307. $('#arctype_id').parent().parent().show();
  308. $('#product_id').parent().parent().hide();
  309. } else if (2 == $(this).val()) {
  310. $('#product_id').parent().parent().show();
  311. $('#arctype_id').parent().parent().hide();
  312. } else {
  313. $('#product_id').parent().parent().hide();
  314. $('#arctype_id').parent().parent().hide();
  315. }
  316. });
  317. });
  318. var parentObj = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  319. function checkForm(){
  320. if ($('#coupon_name').val() == '') {
  321. showErrorMsg('请填写优惠券名称');
  322. $('#coupon_name').focus();
  323. return false;
  324. }
  325. if ($('#conditions_use').val() == '') {
  326. showErrorMsg('请填写优惠规则-使用条件');
  327. $('#conditions_use').focus();
  328. return false;
  329. }
  330. if ($('#coupon_price').val() == '') {
  331. showErrorMsg('请填写优惠规则-减免金额');
  332. $('#coupon_price').focus();
  333. return false;
  334. }
  335. if ($('#coupon_stock').val() == '') {
  336. showErrorMsg('请填写库存');
  337. $('#coupon_stock').focus();
  338. return false;
  339. }
  340. var use_type = $("input[name='use_type']:checked").val();
  341. if ( 1 == use_type ) {
  342. if ($('#use_start_time').val() == '') {
  343. showErrorMsg('请填写优惠券有效开始时间');
  344. $('#use_start_time').focus();
  345. return false;
  346. }
  347. if ($('#use_end_time').val() == '') {
  348. showErrorMsg('请填写优惠券有效结束时间');
  349. $('#use_end_time').focus();
  350. return false;
  351. }
  352. }else if ( 2 == use_type ) {
  353. var valid_days_2 = $('#valid_days_2').val();
  354. console.log(valid_days_2)
  355. if ( valid_days_2 == '') {
  356. showErrorMsg('请填写优惠券有效天数');
  357. $('#valid_days_2').focus();
  358. return false;
  359. }
  360. $("#valid_days").val(valid_days_2)
  361. }else if ( 3 == use_type ) {
  362. var valid_days_3 = $('#valid_days_3').val();
  363. console.log(valid_days_3)
  364. if ( valid_days_3 == '') {
  365. showErrorMsg('请填写优惠券有效天数');
  366. $('#valid_days_3').focus();
  367. return false;
  368. }
  369. $("#valid_days").val(valid_days_3)
  370. }
  371. if ($('#start_date').val() == '') {
  372. showErrorMsg('请选择优惠券发放日期');
  373. $('#start_date').focus();
  374. return false;
  375. }
  376. if ($('#end_date').val() == '') {
  377. showErrorMsg('请选择优惠券结束日期');
  378. $('#end_date').focus();
  379. return false;
  380. }
  381. layer_loading('正在处理');
  382. $.ajax({
  383. type : 'post',
  384. url : "{:url('Coupon/edit', ['_ajax'=>1])}",
  385. data : $('#postForm').serialize(),
  386. dataType : 'json',
  387. success : function(res){
  388. layer.closeAll();
  389. if(res.code == 1){
  390. layer.msg(res.msg, {icon: 1, shade: layer_shade, time: 1000}, function(){
  391. window.location.reload();
  392. });
  393. }else{
  394. showErrorMsg(res.msg);
  395. }
  396. },
  397. error: function(e){
  398. layer.closeAll();
  399. showErrorAlert(e.responseText);
  400. }
  401. });
  402. }
  403. </script>
  404. {include file="public/footer" /}