Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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