截流自动化的商城平台
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.html 7.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. {layout name="layout2" /}
  2. <link href="__PUBLIC__/static/lib/layui/layeditor/layedit.css" rel="stylesheet"/>
  3. <script src="__PUBLIC__/static/lib/layui/layeditor/index.js"></script>
  4. <script src="__PUBLIC__/static/lib/layui/layeditor/ace/ace.js"></script>
  5. <style>
  6. .layui-form-item .layui-input-inline { width: 340px; }
  7. .w60{
  8. display: inline !important;
  9. width: 80px !important;
  10. }
  11. .w30{
  12. display: inline !important;
  13. width: 50px !important;
  14. }
  15. .w100{
  16. display: inline !important;
  17. width: 300px !important;
  18. margin-right: 10px;
  19. }
  20. .tips{
  21. color: #999!important;
  22. }
  23. .ks{
  24. display: block;
  25. margin-top: 5px;
  26. wdith: 100%;
  27. }
  28. .ks_del{
  29. color: #01AAED;
  30. margin-left: 10px;
  31. cursor: pointer;
  32. }
  33. .ks:nth-child(2){
  34. display: none;
  35. }
  36. .ks_del2{
  37. color: #01AAED;
  38. margin-left: 10px;
  39. cursor: pointer;
  40. }
  41. .ds{
  42. display: block;
  43. margin-top: 5px;
  44. wdith: 100%;
  45. }
  46. .wb80{
  47. width: 80%;
  48. margin-left: 20px;
  49. }
  50. .ks .grid-demo-bg1{
  51. height: 38px;
  52. line-height: 38px;
  53. text-align: right;
  54. }
  55. </style>
  56. <div class="layui-card layui-form" style="box-shadow:none;">
  57. <div class="layui-card-body">
  58. {if($is_true === false)}
  59. 请先添加一个 以"默认"为名称的行业分类 和 以"默认"为名称的应用分类 !!!
  60. {else/}
  61. <div class="layui-tab layui-tab-card" lay-filter="like-tabs">
  62. <ul class="layui-tab-title">
  63. <li data-type='1' class="layui-this">基础信息</li>
  64. <li data-type='2'>启动设置</li>
  65. <li data-type='3'>列表设置</li>
  66. <li data-type='4'>浏览笔记</li>
  67. <li data-type='5'>浏览视频</li>
  68. <li data-type='6'>互动设置</li>
  69. <li data-type='7'>获客设置</li>
  70. <li data-type='8'>获客规则</li>
  71. <li data-type='9'>其他设置</li>
  72. </ul>
  73. <div class="layui-tab-content">
  74. <!--基础信息-->
  75. <div class="layui-tab-item layui-show">
  76. {include file="content/closure/setting/01"/}
  77. </div>
  78. <!--启动设置-->
  79. <div class="layui-tab-item">
  80. {include file="content/closure/setting/02"/}
  81. </div>
  82. <!--列表设置-->
  83. <div class="layui-tab-item">
  84. {include file="content/closure/setting/03"/}
  85. </div>
  86. <!--浏览笔记-->
  87. <div class="layui-tab-item">
  88. {include file="content/closure/setting/04"/}
  89. </div>
  90. <!--浏览视频-->
  91. <div class="layui-tab-item">
  92. {include file="content/closure/setting/05"/}
  93. </div>
  94. <!--互动设置-->
  95. <div class="layui-tab-item">
  96. {include file="content/closure/setting/06"/}
  97. </div>
  98. <!--获客设置-->
  99. <div class="layui-tab-item">
  100. {include file="content/closure/setting/07"/}
  101. </div>
  102. <!--获客规则-->
  103. <div class="layui-tab-item">
  104. {include file="content/closure/setting/08"/}
  105. </div>
  106. <!--其他设置-->
  107. <div class="layui-tab-item">
  108. {include file="content/closure/setting/09"/}
  109. </div>
  110. </div>
  111. </div>
  112. {/if}
  113. <div class="layui-form-item layui-hide">
  114. <input type="button" lay-submit lay-filter="addSubmit" id="addSubmit" value="确认">
  115. </div>
  116. </div>
  117. </div>
  118. <script>
  119. layui.config({
  120. base: "/static/lib/"
  121. }).extend({
  122. likeedit: "likeedit/likeedit"
  123. }).use(["layEditor", "form"], function(){
  124. var form = layui.form;
  125. var layEditor = layui.layEditor;
  126. layEditor.set({
  127. uploadImage: {
  128. url: '{:url("file/lists")}?type=10'
  129. },
  130. })
  131. var ieditor = layEditor.build('content')
  132. form.verify({
  133. content: function(value) {
  134. return layEditor.sync(ieditor);
  135. }
  136. });
  137. like.delUpload();
  138. $(document).on("click", ".add-upload-image", function () {
  139. like.imageUpload({
  140. limit: 1,
  141. field: "image",
  142. that: $(this)
  143. });
  144. });
  145. //增加新的数据规则
  146. $(document).on("click","#add_b2",function (){
  147. var html = '<span class="ks">';
  148. html += $(".b2 .ks:eq(1)").html();
  149. html += '</span>';
  150. $(".b2 .ks:last").before(html);
  151. });
  152. //删除指定 数据规则
  153. $(document).on("click",".ks_del",function (){
  154. var that = $(this);
  155. layer.confirm("确定删除", function (index) {
  156. that.parent().remove();
  157. layer.close(index);
  158. })
  159. });
  160. $(document).on("click",".ks_del2",function (){
  161. var that = $(this);
  162. layer.confirm("确定删除", function (index) {
  163. that.parent().parent().parent().remove();
  164. layer.close(index);
  165. })
  166. });
  167. //增加新的数据规则
  168. $(document).on("click","#add_c1",function (){
  169. var html = '<span class="ks">';
  170. html += $(".c1 .ks:eq(1)").html();
  171. html += '</span>';
  172. $(".c1 .ks:last").before(html);
  173. });
  174. //增加新的数据规则
  175. $(document).on("click","#add_d1",function (){
  176. var html = '<span class="ks">';
  177. html += $(".d1 .ks:eq(1)").html();
  178. html += '</span>';
  179. $(".d1 .ks:last").before(html);
  180. });
  181. //增加新的数据规则
  182. $(document).on("click","#add_f21",function (){
  183. var html = '<span class="ks">';
  184. html += $(".f21 .ks:eq(1)").html();
  185. html += '</span>';
  186. $(".f21 .ks:last").before(html);
  187. });
  188. //增加新的数据规则
  189. $(document).on("click","#add_f25",function (){
  190. var html = '<span class="ks">';
  191. html += $(".f25 .ks:eq(1)").html();
  192. html += '</span>';
  193. $(".f25 .ks:last").before(html);
  194. });
  195. form.on('select(a1)', function(data){
  196. //console.log(data.elem); //得到select原始DOM对象
  197. //console.log(data.value); //得到被选中的值
  198. //console.log(data.othis); //得到美化后的DOM对象
  199. if(data.value == '推荐'){
  200. $("#a5").show();
  201. $("#a6").hide();
  202. }else if(data.value == '搜索'){
  203. $("#a5").hide();
  204. $("#a6").show();
  205. }else{
  206. }
  207. });
  208. // 绑定单选改变事件
  209. form.on('radio(a4)', function(data){
  210. //console.log(data.elem.name); // 得到单选框的name属性
  211. //console.log(data.value); // 得到被选中的值
  212. /*if(data.value == 0){
  213. //隐藏
  214. $('#qhsj').hide();
  215. }else{
  216. $('#qhsj').show();
  217. }*/
  218. });
  219. })
  220. </script>