Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

spec_select.htm 6.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. {include file="public/layout" /}
  2. <body style="background-color: rgb(255, 255, 255); overflow: auto; cursor: default; -moz-user-select: inherit;min-width: auto;">
  3. <div id="append_parent"></div>
  4. <div id="ajaxwaitid"></div>
  5. <div class="page" style="min-width: auto;">
  6. <div class="flexigrid">
  7. <div class="hDiv">
  8. <div class="hDivBox">
  9. <table cellspacing="0" cellpadding="0" style="width: 100%">
  10. <thead>
  11. <tr>
  12. <th class="sign w40" axis="col0">
  13. <div class="tc">ID</div>
  14. </th>
  15. <th abbr="article_time" axis="col4" class="w180">
  16. <div class="">规格名称</div>
  17. </th>
  18. <th abbr="ac_id" axis="col4">
  19. <div class="">规格值</div>
  20. </th>
  21. <th abbr="article_time" axis="col4" class="w160">
  22. <div class="tc">操作</div>
  23. </th>
  24. </tr>
  25. </thead>
  26. </table>
  27. </div>
  28. </div>
  29. <div class="bDiv" style="height: auto;">
  30. <form id="PostForm">
  31. <div id="flexigrid" cellpadding="0" cellspacing="0" border="0">
  32. <table style="width: 100%">
  33. <tbody>
  34. {volist name="info" id="vo"}
  35. <tr>
  36. <td class="sign">
  37. <div class="w40 tc">
  38. <input type="checkbox" name="" value="">
  39. </div>
  40. </td>
  41. <td class="" >
  42. <div class="w180 tc" style="text-align: left;">
  43. {$vo.preset_name}
  44. </div>
  45. </td>
  46. <td style="width: 100%">
  47. <div style="text-align: left;">
  48. {volist name="vo.preset_value" id="value"}
  49. <label>
  50. <input type="checkbox" name="" value="">{$value.preset_value} &nbsp;
  51. </label>
  52. {/volist}
  53. </div>
  54. </td>
  55. <td class="">
  56. <div class="w160 tc">
  57. <a href="JavaScript:void(0);" data-id="{$vo.preset_id}" onclick="SelectSpec(this);" class="btn blue">
  58. <i class="fa fa-pencil-square-o"></i>选择
  59. </a>
  60. </div>
  61. </td>
  62. </tr>
  63. {/volist}
  64. </tbody>
  65. </table>
  66. </div>
  67. </form>
  68. <div class="iDiv" style="display: none;"></div>
  69. </div>
  70. <div class="tDiv">
  71. <div class="tDiv2">
  72. <div class="fbutton">
  73. <a href="JavaScript:void(0);" onclick="SaveSpecTpl(this);">
  74. <div class="add" title="批量选择">
  75. <span class="red"></i>批量选择</span>
  76. </div>
  77. </a>
  78. </div>
  79. </div>
  80. <div style="clear:both"></div>
  81. </div>
  82. </div>
  83. </div>
  84. <script type="text/javascript">
  85. $(document).ready(function(){
  86. // 表格行点击选中切换
  87. $('#flexigrid > table>tbody >tr').click(function(){
  88. $(this).toggleClass('trSelected');
  89. });
  90. // 点击刷新数据
  91. $('.fa-refresh').click(function(){
  92. location.href = location.href;
  93. });
  94. });
  95. function SelectSpec(obj, preset_id){
  96. var url = "{:url('Shop/spec_select')}";
  97. $.ajax({
  98. type : 'post',
  99. url : url,
  100. data : {preset_id:preset_id, _ajax:1},
  101. dataType : 'json',
  102. success : function(data){
  103. // layer.closeAll();
  104. // if(0 == data.code){
  105. // layer.alert(data.msg, {icon: 2, title:false});
  106. // }
  107. }
  108. });
  109. // SpecTempLateDiv
  110. }
  111. // 删除指定规格值
  112. function DelSpecTplValue(obj, preset_id = null){
  113. var del_val = $(obj).next().val();
  114. layer.confirm('确认删除规格值:<span style="color:red;">'+del_val+'</span>?', {
  115. shade: layer_shade,
  116. area: ['480px', '190px'],
  117. move: false,
  118. title: '提示',
  119. btnAlign:'r',
  120. closeBtn: 3,
  121. btn: ['确定', '取消'] ,//按钮
  122. success: function () {
  123. $(".layui-layer-content").css('text-align', 'left');
  124. }
  125. }, function () {
  126. if (preset_id) {
  127. var url = "{:url('Shop/spec_del')}";
  128. $.ajax({
  129. type : 'post',
  130. url : url,
  131. data : {preset_id:preset_id, _ajax:1},
  132. dataType : 'json',
  133. success : function(data){
  134. layer.closeAll();
  135. if(0 == data.code){
  136. layer.alert(data.msg, {icon: 2, title:false});
  137. }
  138. }
  139. });
  140. }
  141. // 确定
  142. $(obj).parent().remove();
  143. layer.closeAll();
  144. layer.msg('操作成功!', {icon: 1, time:1500});
  145. }, function (index) {
  146. // 取消
  147. layer.closeAll(index);
  148. });
  149. }
  150. // 保存规格信息
  151. function SaveSpecTpl(obj){
  152. // layer_loading('正在处理');
  153. var url = "{:url('Shop/spec_template', ['_ajax'=>1])}";
  154. $.ajax({
  155. type : 'post',
  156. url : url,
  157. data : $('#PostForm').serialize(),
  158. dataType : 'json',
  159. success : function(data){
  160. layer.closeAll();
  161. if(data.code == 1){
  162. layer.msg(data.msg, {icon: 1, time:1500},function(){
  163. window.location.reload();
  164. });
  165. }else{
  166. layer.alert(data.msg, {icon: 2, title:false});
  167. }
  168. }
  169. });
  170. }
  171. </script>
  172. {include file="public/footer" /}