No Description
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.

add.htm 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. {include file="public/layout" /}
  2. <body class="bodystyle">
  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="post_form" action="{:url('Sharp/add')}" method="post">
  8. <div class="ncap-form-default">
  9. <dl class="row">
  10. <dt class="tit"><em>*</em>商品信息</dt>
  11. <dd class="opt">
  12. <img src="{$info.litpic|get_default_pic=###}" alt="" style="max-width: 70px;">
  13. {$info.title}<br>
  14. <!-- 商品ID:{$info.aid} -->
  15. <p class="notic"></p>
  16. </dd>
  17. </dl>
  18. {if condition="1 == $shopConfig['shop_open'] "}
  19. {if condition="!isset($shopConfig['shop_open_spec']) || 0 == $shopConfig['shop_open_spec']"}
  20. <dl class="row">
  21. <dt class="tit">
  22. <label for="limit"><em>*</em>商品售价</label>
  23. </dt>
  24. <dd class="opt">
  25. {$info.users_price}
  26. </dd>
  27. </dl>
  28. <dl class="row">
  29. <dt class="tit">
  30. <label for="seckill_price"><em>*</em>秒杀价格</label>
  31. </dt>
  32. <dd class="opt">
  33. <input type="text" name="seckill_price" value="" id="seckill_price" class="input-txt" onkeyup='this.value=this.value.replace(/[^\d.]/g,"");' onpaste='this.value=this.value.replace(/[^\d.]/g,"")'>
  34. <span class="err"></span>
  35. <p class="notic"></p>
  36. </dd>
  37. </dl>
  38. <dl class="row">
  39. <dt class="tit">
  40. <label for="total_stock"><em>*</em>秒杀库存</label>
  41. </dt>
  42. <dd class="opt">
  43. <input type="text" name="seckill_stock" value="" id="seckill_stock" class="input-txt" onkeyup='this.value=this.value.replace(/[^\d.]/g,"");' onpaste='this.value=this.value.replace(/[^\d.]/g,"")'>
  44. <span class="err"></span>
  45. <p class="notic">注:秒杀库存为独立库存,与主商品库存不同步</p>
  46. </dd>
  47. </dl>
  48. {else/}
  49. {empty name="$HtmlTable"}
  50. <dl class="row">
  51. <dt class="tit">
  52. <label for="limit"><em>*</em>商品售价</label>
  53. </dt>
  54. <dd class="opt">
  55. {$info.users_price}
  56. </dd>
  57. </dl>
  58. <dl class="row">
  59. <dt class="tit">
  60. <label for="seckill_price"><em>*</em>秒杀价格</label>
  61. </dt>
  62. <dd class="opt">
  63. <input type="text" name="seckill_price" value="" id="seckill_price" class="input-txt" onkeyup='this.value=this.value.replace(/[^\d.]/g,"");' onpaste='this.value=this.value.replace(/[^\d.]/g,"")'>
  64. <span class="err"></span>
  65. <p class="notic"></p>
  66. </dd>
  67. </dl>
  68. <dl class="row">
  69. <dt class="tit">
  70. <label for="total_stock"><em>*</em>秒杀库存</label>
  71. </dt>
  72. <dd class="opt">
  73. <input type="text" name="seckill_stock" value="" id="seckill_stock" class="input-txt" onkeyup='this.value=this.value.replace(/[^\d.]/g,"");' onpaste='this.value=this.value.replace(/[^\d.]/g,"")'>
  74. <span class="err"></span>
  75. <p class="notic">注:秒杀库存为独立库存,与主商品库存不同步</p>
  76. </dd>
  77. </dl>
  78. {else /}
  79. <dl class="row">
  80. <dt class="tit">
  81. <label for="users_price">商品规格 </label>
  82. </dt>
  83. <dd class="opt">
  84. <div id='SpecTempLateDiv'>
  85. {$HtmlTable}
  86. </div>
  87. <span class="err"></span>
  88. <p class="notic"></p>
  89. </dd>
  90. </dl>
  91. <script>
  92. $(function () {
  93. // 合并单元格
  94. MergeCells();
  95. });
  96. // 合并单元格
  97. function MergeCells() {
  98. var tab = document.getElementById("spec_input_tab");
  99. var maxCol = 2, val, count, start;
  100. if (tab != null) {
  101. for (var col = maxCol - 1; col >= 0; col--) {
  102. count = 1;
  103. val = "";
  104. for (var i = 0; i < tab.rows.length; i++) {
  105. if (val == tab.rows[i].cells[col].innerHTML) {
  106. count++;
  107. } else {
  108. if (count > 1) { //合并
  109. start = i - count;
  110. tab.rows[start].cells[col].rowSpan = count;
  111. for (var j = start + 1; j < i; j++) {
  112. tab.rows[j].cells[col].style.display = "none";
  113. }
  114. count = 1;
  115. }
  116. val = tab.rows[i].cells[col].innerHTML;
  117. }
  118. }
  119. if (count > 1) { //合并,最后几行相同的情况下
  120. start = i - count;
  121. tab.rows[start].cells[col].rowSpan = count;
  122. for (var j = start + 1; j < i; j++) {
  123. tab.rows[j].cells[col].style.display = "none";
  124. }
  125. }
  126. }
  127. }
  128. }
  129. // 批量设置价格
  130. function BulkSetPrice(obj) {
  131. layer.prompt({
  132. formType: 3,
  133. shade: layer_shade,
  134. move: false,
  135. title: '提示',
  136. id: 'BulkSetPrice',
  137. btnAlign:'r',
  138. closeBtn: 3,
  139. btn: ['确定', '关闭'],
  140. success: function(layero, index){
  141. $("#BulkSetPrice").find('input').attr('placeholder', '批量设置秒杀价格');
  142. $("#BulkSetPrice").find('input').attr('onkeyup', "this.value=this.value.replace(/[^\\d.]/g,'')");
  143. $("#BulkSetPrice").find('input').attr('onpaste', "this.value=this.value.replace(/[^\\d.]/g,'')");
  144. }
  145. }, function(price, index){
  146. layer.close(index);
  147. // 规格中的价格
  148. $('.spec_seckill_price').val(price);
  149. });
  150. }
  151. // 批量设置库存
  152. function BulkSetStock(obj) {
  153. layer.prompt({
  154. formType: 3,
  155. shade: layer_shade,
  156. move: false,
  157. title: '提示',
  158. id: 'BulkSetStock',
  159. btnAlign:'r',
  160. closeBtn: 3,
  161. btn: ['确定', '关闭'],
  162. success: function(layero, index){
  163. $("#BulkSetStock").find('input').attr('placeholder', '批量设置秒杀库存');
  164. $("#BulkSetStock").find('input').attr('onkeyup', "this.value=this.value.replace(/[^\\d.]/g,'')");
  165. $("#BulkSetStock").find('input').attr('onpaste', "this.value=this.value.replace(/[^\\d.]/g,'')");
  166. }
  167. }, function(stock, index){
  168. layer.close(index);
  169. // 单个库存
  170. $('.spec_seckill_stock').val(stock);
  171. $('.spec_seckill_stock').attr('data-old_stock',stock);
  172. });
  173. }
  174. </script>
  175. {/empty}
  176. {/if}
  177. {/if}
  178. <dl class="row">
  179. <dt class="tit">
  180. <label for="sales"><em>*</em>虚拟销量</label>
  181. </dt>
  182. <dd class="opt">
  183. <input type="text" name="virtual_sales" value="0" id="virtual_sales" class="input-txt" onkeyup='this.value=this.value.replace(/[^\d.]/g,"");' onpaste='this.value=this.value.replace(/[^\d.]/g,"")'>
  184. <span class="err"></span>
  185. <p class="notic"></p>
  186. </dd>
  187. </dl>
  188. <dl class="row">
  189. <dt class="tit">
  190. <label for="limit"><em>*</em>限购数量</label>
  191. </dt>
  192. <dd class="opt">
  193. <input type="text" name="limit" value="0" id="limit" class="input-txt" onkeyup='this.value=this.value.replace(/[^\d.]/g,"");' onpaste='this.value=this.value.replace(/[^\d.]/g,"")'>
  194. <span class="err"></span>
  195. <p class="notic">注:每人限制购买的数量,如果填写0则不限购</p>
  196. </dd>
  197. </dl>
  198. <div class="bot">
  199. <input type="hidden" name="aid" value="{$info.aid}" />
  200. <a href="JavaScript:void(0);" onclick="checkForm();" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a>
  201. </div>
  202. </div>
  203. </form>
  204. </div>
  205. <script type="text/javascript">
  206. var parentObj = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  207. // 判断输入框是否为空
  208. function checkForm(){
  209. {empty name="$HtmlTable"}
  210. if($('input[name=seckill_price]').val() == ''){
  211. showErrorMsg('秒杀价格不能为空!');
  212. $('input[name=seckill_price]').focus();
  213. return false;
  214. }
  215. if($('input[name=seckill_stock]').val() == ''){
  216. showErrorMsg('秒杀库存不能为空!');
  217. $('input[name=seckill_stock]').focus();
  218. return false;
  219. }
  220. {else /}
  221. var ret = 0;
  222. $(".spec_seckill_price").each(function(){
  223. if ($(this).val() == '') {
  224. showErrorMsg('秒杀价格不能为空!');
  225. $(this).focus();
  226. ret = 1;
  227. return false;
  228. }
  229. });
  230. if (1 == ret){
  231. return false;
  232. }
  233. $(".spec_seckill_stock").each(function(){
  234. if ($(this).val() == '') {
  235. showErrorMsg('秒杀库存不能为空!');
  236. $(this).focus();
  237. ret = 1;
  238. return false;
  239. }
  240. });
  241. if (1 == ret){
  242. return false;
  243. }
  244. {/empty}
  245. if($('input[name=limit]').val() == ''){
  246. showErrorMsg('限购数量!');
  247. $('input[name=limit]').focus();
  248. return false;
  249. }
  250. layer_loading('正在处理');
  251. $.ajax({
  252. type : 'post',
  253. url : "{:url('Sharp/add', ['_ajax'=>1])}",
  254. data : $('#post_form').serialize(),
  255. dataType : 'json',
  256. success : function(res){
  257. layer.closeAll();
  258. if(res.code == 1){
  259. var _parent = parent;
  260. _parent.layer.close(parentObj);
  261. _parent.layer.msg(res.msg, {icon: 1, shade: 0.1, time: 1000}, function(){
  262. _parent.window.location.reload();
  263. });
  264. }else{
  265. showErrorMsg(res.msg);
  266. }
  267. },
  268. error: function(e){
  269. layer.closeAll();
  270. showErrorAlert(e.responseText);
  271. }
  272. });
  273. }
  274. </script>
  275. {include file="public/footer" /}