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.

attribute_edit.htm 7.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. {include file="public/layout" /}
  2. <body style="background-color: #FFF; overflow: auto;">
  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" style="box-shadow:none;">
  7. <div class="fixed-bar">
  8. <div class="item-title"><a class="back_xin" href="javascript:history.back();" title="返回"><i class="iconfont e-fanhui"></i></a>
  9. <div class="subject">
  10. <h3>编辑参数</h3>
  11. <h5></h5>
  12. </div>
  13. </div>
  14. </div>
  15. <form class="form-horizontal" id="post_form" action="{:U('Product/attribute_edit')}" method="post">
  16. <div class="ncap-form-default">
  17. <dl class="row">
  18. <dt class="tit">
  19. <label for="typeid"><em>*</em>所属栏目</label>
  20. </dt>
  21. <dd class="opt">
  22. <select name="typeid" id="typeid">
  23. {$arctype_html}
  24. </select>
  25. <span class="err" id="err_typeid" style="color:#F00; display:none;"></span>
  26. <p class="notic"></p>
  27. </dd>
  28. </dl>
  29. <dl class="row">
  30. <dt class="tit">
  31. <label for="ac_name"><em>*</em>参数名称</label>
  32. </dt>
  33. <dd class="opt">
  34. <input type="text" name="attr_name" value="{$field.attr_name}" id="attr_name" class="input-txt">
  35. <span class="err" id="err_attr_name" style="color:#F00; display:none;"></span>
  36. <p class="notic"></p>
  37. </dd>
  38. </dl>
  39. <dl class="row">
  40. <dt class="tit">
  41. <label for="attr_input_type"><em>*</em>表单类型</label>
  42. </dt>
  43. <dd class="opt">
  44. <label><input type="radio" value="0" name="attr_input_type" {empty name="field.attr_input_type"}checked="checked"{/empty} />单行文本</label>
  45. <label><input type="radio" value="2" name="attr_input_type" {eq name="field.attr_input_type" value="2"}checked="checked"{/eq} />多行文本</label>
  46. <label><input type="radio" value="1" name="attr_input_type" {eq name="field.attr_input_type" value="1"}checked="checked"{/eq} />下拉框</label>
  47. <span class="err" id="err_attr_input_type" style="color:#F00; display:none;"></span>
  48. <p class="notic"></p>
  49. </dd>
  50. </dl>
  51. <dl class="row attr_input_type2 {neq name='field.attr_input_type' value='1'}none{/neq}">
  52. <dt class="tit">
  53. <label for="attr_values"><em>*</em>可选值列表</label>
  54. </dt>
  55. <dd class="opt">
  56. <textarea rows="10" cols="30" name="attr_values" id="attr_values" class="input-txt" style="height:100px;" placeholder="一行代表一个可选值">{$field.attr_values}</textarea>
  57. <span id="err_attr_values" class="err" style="color:#F00; display:none;"></span>
  58. <p class="notic">一行代表一个可选值</p>
  59. </dd>
  60. </dl>
  61. <dl class="row">
  62. <dt class="tit">
  63. <label>排序</label>
  64. </dt>
  65. <dd class="opt">
  66. <input type="text" value="{$field.sort_order}" name="sort_order" id="sort_order" class="input-txt">
  67. <span class="err"></span>
  68. <p class="notic">越小越靠前</p>
  69. </dd>
  70. </dl>
  71. <div class="bot">
  72. <input type="hidden" name="attr_id" value="{$field.attr_id}">
  73. <a href="JavaScript:void(0);" onclick="check_submit('post_form');" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a>
  74. </div>
  75. </form>
  76. </div>
  77. <script type="text/javascript">
  78. var parentObj = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  79. $(function(){
  80. $('input[name=attr_input_type]').click(function(){
  81. var val = $(this).val();
  82. if (val == 1) {
  83. $('.attr_input_type2').show();
  84. } else {
  85. $('.attr_input_type2').hide();
  86. }
  87. });
  88. var dftypeid = {$field.typeid|default='0'};
  89. $('#typeid').change(function(){
  90. var current_channel = $(this).find('option:selected').data('current_channel');
  91. if (0 < $(this).val() && {$channeltype} != current_channel) {
  92. showErrorMsg('请选择对应模型的栏目!');
  93. $(this).val(dftypeid);
  94. } else if ({$channeltype} == current_channel) {
  95. layer.closeAll();
  96. }
  97. });
  98. });
  99. /**
  100. * ajax 提交表单 到后台去验证然后回到前台提示错误
  101. * 验证通过后,再通过 form 自动提交
  102. */
  103. function check_submit(form_id)
  104. {
  105. if ($('#typeid').val() == 0) {
  106. showErrorMsg('请选择栏目…!');
  107. $('#typeid').focus();
  108. return false;
  109. }
  110. if($.trim($('input[name=attr_name]').val()) == ''){
  111. showErrorMsg('参数名称不能为空!');
  112. $('input[name=attr_name]').focus();
  113. return false;
  114. }
  115. if ($('input[name=attr_input_type]').is(':checked') == false) {
  116. showErrorMsg('请选择表单类型!');
  117. $($('input[name=attr_input_type]')[0]).focus();
  118. return false;
  119. }
  120. if ($('input[name=attr_input_type]:checked').val() == 1 && $.trim($('#attr_values').val()) == '') {
  121. showErrorMsg('可选值列表不能为空!');
  122. $('#attr_values').focus();
  123. return false;
  124. }
  125. layer_loading('正在处理');
  126. $.ajax({
  127. type : "POST",
  128. url : "{:url('Product/attribute_edit', ['_ajax'=>1])}",
  129. data : $('#'+form_id).serialize(),// 你的formid
  130. dataType: "JSON",
  131. success: function(res) {
  132. layer.closeAll();
  133. if(res.status == 1)
  134. {
  135. var _parent = parent;
  136. _parent.layer.close(parentObj);
  137. if(res.hasOwnProperty('data')){
  138. if(res.data.hasOwnProperty('url')){
  139. _parent.layer.msg(res.msg, {shade: layer_shade, time: 1000}, function(){
  140. _parent.gourl(res.data.url);
  141. });
  142. }else{
  143. _parent.layer.msg(res.msg, {shade: layer_shade, time: 1000}, function(){
  144. _parent.window.location.reload();
  145. });
  146. }
  147. }else{
  148. _parent.layer.msg(res.msg, {shade: layer_shade, time: 1000}, function(){
  149. _parent.window.location.reload();
  150. });
  151. }
  152. return true;
  153. } else {
  154. showErrorMsg(res.msg);
  155. return false;
  156. }
  157. },
  158. error: function(e) {
  159. layer.closeAll();
  160. showErrorAlert(e.responseText);
  161. return false;
  162. }
  163. });
  164. }
  165. </script>
  166. {include file="public/footer" /}