index.php 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  1. {extend name="public/container"}
  2. {block name="head"}
  3. <style>
  4. .layui-table-cell img{max-width: 100%;height: 50px;cursor: pointer;}
  5. .layui-table-cell .layui-btn-container{overflow: hidden;}
  6. </style>
  7. {/block}
  8. {block name="content"}
  9. <div class="layui-fluid">
  10. <div class="layui-card">
  11. <div class="layui-card-header">专栏专题</div>
  12. <div class="layui-card-body">
  13. <div class="layui-row layui-col-space15">
  14. <div class="layui-col-md12">
  15. <form class="layui-form layui-form-pane" action="">
  16. <div class="layui-form-item">
  17. <div class="layui-inline">
  18. <label class="layui-form-label">专题搜索</label>
  19. <div class="layui-input-inline">
  20. <input type="text" name="store_name" class="layui-input" placeholder="专栏名称、简介、编号">
  21. </div>
  22. </div>
  23. <div class="layui-inline">
  24. <label class="layui-form-label">专题分类</label>
  25. <div class="layui-input-inline">
  26. <select name="subject_id" lay-search="">
  27. <option value="0">全部</option>
  28. {volist name='subject_list' id='vc'}
  29. <option {if $vc.grade_id==0}disabled{/if} value="{$vc.id}">{$vc.html}{$vc.name}</option>
  30. {/volist}
  31. </select>
  32. </div>
  33. </div>
  34. <div class="layui-inline">
  35. <label class="layui-form-label">讲师</label>
  36. <div class="layui-input-inline">
  37. <select name="mer_id" lay-search="">
  38. <option value="">全部</option>
  39. <option value="0">总平台</option>
  40. {volist name='mer_list' id='vc'}
  41. <option value="{$vc.id}">{$vc.mer_name}</option>
  42. {/volist}
  43. </select>
  44. </div>
  45. </div>
  46. <div class="layui-inline">
  47. <label class="layui-form-label">状态</label>
  48. <div class="layui-input-inline">
  49. <select name="is_show">
  50. <option value="">全部</option>
  51. <option value="1">上架</option>
  52. <option value="0">下架</option>
  53. </select>
  54. </div>
  55. </div>
  56. <div class="layui-inline">
  57. <label class="layui-form-label">时间范围</label>
  58. <div class="layui-input-inline" style="width: 260px;">
  59. <input type="text" name="datetime" class="layui-input" id="datetime" placeholder="时间范围">
  60. </div>
  61. </div>
  62. <div class="layui-inline">
  63. <button class="layui-btn layui-btn-sm layui-btn-normal" lay-submit="search" lay-filter="search">
  64. <i class="layui-icon">&#xe615;</i>搜索
  65. </button>
  66. </div>
  67. </div>
  68. </form>
  69. </div>
  70. <!--产品列表-->
  71. <div class="layui-col-md12">
  72. <div class="layui-btn-group">
  73. <button type="button" class="layui-btn layui-btn-normal layui-btn-sm" onclick="action.open_add('{:Url('add',['special_type' =>$special_type])}','添加{$special_title}')">
  74. <i class="layui-icon">&#xe608;</i>添加{$special_title}
  75. </button>
  76. <button type="button" class="layui-btn layui-btn-normal layui-btn-sm" onclick="window.location.reload()">
  77. <i class="layui-icon">&#xe669;</i>刷新
  78. </button>
  79. </div>
  80. <table class="layui-hide" id="List" lay-filter="List"></table>
  81. <script type="text/html" id="recommend">
  82. <div class="layui-btn-container">
  83. {{# layui.each(d.recommend, function(index, item){ }}
  84. <button type="button" class="layui-btn layui-btn-yd layui-btn-normal layui-btn-xs" data-type="recommend" data-id="{{index}}" data-pid="{{d.id}}">yd-{{item}}</button>
  85. {{# }); }}
  86. </div>
  87. <div class="layui-btn-container">
  88. {{# layui.each(d.web_recommend, function(index, item){ }}
  89. <button type="button" class="layui-btn layui-btn-pc layui-btn-normal layui-btn-xs" data-type="recommend" data-id="{{index}}" data-pid="{{d.id}}">pc-{{item}}</button>
  90. {{# }); }}
  91. </div>
  92. </script>
  93. <script type="text/html" id="is_pink">
  94. {{# if(d.is_pink){ }}
  95. <span class="layui-badge layui-bg-blue">开启</span>
  96. {{# }else{ }}
  97. <span class="layui-badge">关闭</span>
  98. {{# } }}
  99. </script>
  100. <script type="text/html" id="is_live_goods">
  101. <input type='checkbox' name='is_live_goods' lay-skin='switch' value="{{d.id}}" lay-filter='is_live_goods' lay-text='是|否' {{ d.is_live_goods == 1 ? 'checked' : '' }}>
  102. </script>
  103. <script type="text/html" id="is_show">
  104. <input type='checkbox' name='id' lay-skin='switch' value="{{d.id}}" lay-filter='is_show' lay-text='上架|下架' {{ d.is_show == 1 ? 'checked' : '' }}>
  105. </script>
  106. <script type="text/html" id="is_mer_visible">
  107. <input type='checkbox' name='id' disabled lay-skin='switch' value="{{d.id}}" lay-filter='is_mer_visible' lay-text='是|否' {{ d.is_mer_visible == 1 ? 'checked' : '' }}>
  108. </script>
  109. <script type="text/html" id="image">
  110. <img lay-event='open_image' width="89" height="50" src="{{d.image}}">
  111. </script>
  112. <script type="text/html" id="quantity">
  113. <p style="font-size: 6px">已选:{{d.quantity}}</p>
  114. <a href="javascript:void(0)" class="layui-badge layui-bg-blue" onclick="$eb.createModalFrame('查看专题','{:Url('special_material')}?id='+{{d.id}}+'&special_type=5'+'&order='+{{d.sort_order}},{w:1200,h:800})">
  115. 查看专题
  116. </a>
  117. </script>
  118. <script type="text/html" id="act">
  119. <button type="button" class="layui-btn layui-btn-normal layui-btn-xs" onclick="dropdown(this)">
  120. <i class="layui-icon">&#xe625;</i>操作
  121. </button>
  122. <ul class="layui-nav-child layui-anim layui-anim-upbit">
  123. <li>
  124. <a href="javascript:void(0)" onclick="action.open_add('{:Url('add')}?id={{d.id}}&special_type={$special_type}','编辑专题')" >
  125. <i class="iconfont icon-bianji"></i> 编辑专题
  126. </a>
  127. </li>
  128. <!-- <li>
  129. <a href="{:Url('ump.store_combination/combina_list')}?cid={{d.id}}&special_type={$special_type}" >
  130. <i class="iconfont icon-chakanpintuan"></i> 查看拼团
  131. </a>
  132. </li> -->
  133. <li>
  134. <a href="javascript:void(0)" onclick="$eb.createModalFrame('{{d.title}}-推荐管理','{:Url('recommend')}?special_id={{d.id}}',{h:300,w:400})">
  135. <i class="iconfont icon-yidongshouye"></i> 推至移动首页
  136. </a>
  137. </li>
  138. <!-- <li>
  139. <a href="javascript:void(0)" onclick="$eb.createModalFrame('{{d.title}}-推荐管理','{:Url('web_recommend')}?special_id={{d.id}}&type=0',{h:300,w:400})">
  140. <i class="iconfont icon-PCshouye"></i> 推至PC首页
  141. </a>
  142. </li> -->
  143. <!-- <li>
  144. <a href="javascript:void(0)" onclick="$eb.createModalFrame('关联练习','{:Url('testPaperRelation')}?id='+{{d.id}}+'&relationship=1',{w:1000,h:800})">
  145. <i class="iconfont icon-guanlianlianxi"></i> 关联练习
  146. </a>
  147. </li> -->
  148. <li>
  149. <a href="javascript:void(0)" onclick="$eb.createModalFrame('关联考试','{:Url('testPaperRelation')}?id='+{{d.id}}+'&relationship=2',{w:1000,h:800})">
  150. <i class="iconfont icon-guanliankaoshi"></i> 关联考试
  151. </a>
  152. </li>
  153. <!-- <li>
  154. <a href="javascript:void(0)" onclick="$eb.createModalFrame('{{d.title}}-拼团管理','{:Url('pink')}?special_id={{d.id}}',{h:500})">
  155. <i class="iconfont icon-pintuanshezhi"></i> 拼团设置
  156. </a>
  157. </li> -->
  158. <li>
  159. <a href="javascript:void(0)" lay-event='learning_records'>
  160. <i class="iconfont icon-xuexijilu"></i> 学习记录
  161. </a>
  162. </li>
  163. <li>
  164. <a href="javascript:void(0);" lay-event='comments'>
  165. <i class="iconfont icon-pinglunchakan"></i> 查看评论
  166. </a>
  167. </li>
  168. <li>
  169. <a lay-event='delect' href="javascript:void(0)">
  170. <i class="iconfont icon-shanchu"></i> 删除专题
  171. </a>
  172. </li>
  173. </ul>
  174. </script>
  175. </div>
  176. </div>
  177. </div>
  178. </div>
  179. </div>
  180. <script src="{__ADMIN_PATH}js/layuiList.js"></script>
  181. {/block}
  182. {block name="script"}
  183. <script>
  184. var $ = layui.jquery;
  185. var layer = layui.layer;
  186. var special_type = {$special_type} ? {$special_type} : 6;
  187. //实例化form
  188. layList.form.render();
  189. layList.date({elem: '#datetime', type: 'datetime', range: '~'});
  190. //加载列表
  191. layList.tableList({o:'List', done:function () {
  192. $('.layui-btn').on('mouseover', function (event) {
  193. var target = event.target;
  194. var type = target.dataset.type;
  195. if ('recommend' === type) {
  196. layer.tips('点击即可取消此推荐', target, {
  197. tips: [1, '#0093dd']
  198. });
  199. }
  200. });
  201. $('.layui-btn').on('mouseout', function (event) {
  202. var target = event.target;
  203. var type = target.dataset.type;
  204. if ('recommend' === type) {
  205. layer.closeAll();
  206. }
  207. });
  208. $('.layui-btn-yd').on('click', function (event) {
  209. var target = event.target;
  210. var type = target.dataset.type;
  211. if ('recommend' === type) {
  212. var id = target.dataset.id;
  213. var pid = target.dataset.pid;
  214. var url = layList.U({ a: 'cancel_recommendation', q: { id: id, special_id: pid } });
  215. $eb.$swal(
  216. 'delete',
  217. function () {
  218. $eb.axios
  219. .get(url)
  220. .then(function (res) {
  221. if (res.data.code == 200) {
  222. $eb.$swal('success', res.data.msg);
  223. layList.reload()
  224. } else {
  225. return Promise.reject(res.data.msg || '取消失败');
  226. }
  227. })
  228. .catch(function (err) {
  229. $eb.$swal('error', err);
  230. });
  231. },
  232. {
  233. title: '确定取消此推荐?',
  234. text: '取消后无法撤销,请谨慎操作!',
  235. confirm: '确定取消'
  236. }
  237. );
  238. }
  239. });
  240. $('.layui-btn-pc').on('click', function (event) {
  241. var target = event.target;
  242. var type = target.dataset.type;
  243. if ('recommend' === type) {
  244. var id = target.dataset.id;
  245. var pid = target.dataset.pid;
  246. var url = layList.U({ a: 'cancel_web_recommendation', q: { id: id, special_id: pid } });
  247. $eb.$swal(
  248. 'delete',
  249. function () {
  250. $eb.axios
  251. .get(url)
  252. .then(function (res) {
  253. if (res.data.code == 200) {
  254. $eb.$swal('success', res.data.msg);
  255. layList.reload()
  256. } else {
  257. return Promise.reject(res.data.msg || '取消失败');
  258. }
  259. })
  260. .catch(function (err) {
  261. $eb.$swal('error', err);
  262. });
  263. },
  264. {
  265. title: '确定取消此推荐?',
  266. text: '取消后无法撤销,请谨慎操作!',
  267. confirm: '确定取消'
  268. }
  269. );
  270. }
  271. });
  272. }},"{:Url('list',['special_type'=>$special_type])}",function (){
  273. return [
  274. {field: 'id', title: '编号',width:'6%',align: 'center'},
  275. {field: 'title', title: '名称',align:'left'},
  276. {field: 'subject_name', title: '分类',align: 'center',width:'6%'},
  277. {field: 'mer_name', title: '讲师',align: 'center',width:'6%'},
  278. {field: 'image', title: '封面',templet:'#image',align: 'center',minWidth:119,width:'8%'},
  279. {field: 'recommend', title: '推荐[yd:移动端]',templet:'#recommend',align: 'center'},//,pc:PC端
  280. {field: 'money', title: '价格',align: 'center',width:'6%'},
  281. // {field: 'member_money', title: '会员价',align: 'center',width:'6%'},
  282. // {field: 'pink_money', title: '拼团价',align: 'center',width:'6%'},
  283. {field: 'quantity', title: '已选专题',align: 'center',width:'7%',templet:'#quantity'},
  284. // {field: 'is_pink', title: '拼团状态',templet:'#is_pink',align: 'center',width:'6%'},
  285. {field: 'sort', title: '排序',sort: true,event:'sort',edit:'sort',align: 'center',width:'6%'},
  286. {field: 'is_show', title: '状态',templet:'#is_show',align: 'center',width:'7%'},
  287. {title: '操作',align:'center',toolbar:'#act',minWidth:81,width:'8%'},
  288. ];
  289. });
  290. //下拉框
  291. $(document).click(function (e) {
  292. $('.layui-nav-child').hide();
  293. })
  294. function dropdown(that){
  295. var oEvent = arguments.callee.caller.arguments[0] || event;
  296. oEvent.stopPropagation();
  297. var offset = $(that).offset();
  298. var top=offset.top-$(window).scrollTop();
  299. var index = $(that).parents('tr').data('index');
  300. $('.layui-nav-child').each(function (key) {
  301. if (key != index) {
  302. $(this).hide();
  303. }
  304. })
  305. if($(document).height() < top+$(that).next('ul').height()){
  306. $(that).next('ul').css({
  307. 'padding': 10,
  308. 'top': - ($(that).parent('td').height() / 2 + $(that).height() + $(that).next('ul').height()/2),
  309. 'min-width': 'inherit',
  310. 'position': 'absolute'
  311. }).toggle();
  312. }else{
  313. $(that).next('ul').css({
  314. 'padding': 10,
  315. 'top':$(that).parent('td').height() / 2 + $(that).height(),
  316. 'min-width': 'inherit',
  317. 'position': 'absolute'
  318. }).toggle();
  319. }
  320. }
  321. //自定义方法
  322. var action= {
  323. set_value: function (field, id, value, model_type) {
  324. layList.baseGet(layList.Url({
  325. a: 'set_value',
  326. q: {field: field, id: id, value: value, model_type:model_type}
  327. }), function (res) {
  328. layList.msg(res.msg);
  329. });
  330. },
  331. //打开新添加页面
  332. open_add: function (url,title) {
  333. layer.open({
  334. type: 2 //Page层类型
  335. ,area: ['100%', '100%']
  336. ,title: title
  337. ,shade: 0.6 //遮罩透明度
  338. ,maxmin: true //允许全屏最小化
  339. ,anim: 1 //0-6的动画形式,-1不开启
  340. ,content: url
  341. ,end:function() {
  342. location.reload();
  343. }
  344. });
  345. }
  346. }
  347. //查询
  348. layList.search('search',function(where){
  349. var arr_time = [];
  350. var start_time = '';
  351. var end_time = '';
  352. if (where.datetime) {
  353. arr_time = where.datetime.split('~');
  354. start_time = arr_time[0].trim();
  355. end_time = arr_time[1].trim();
  356. }
  357. layList.reload({
  358. subject_id: where.subject_id,
  359. mer_id: where.mer_id,
  360. is_show: where.is_show,
  361. start_time: start_time,
  362. end_time: end_time,
  363. store_name: where.store_name
  364. },true);
  365. });
  366. layList.switch('is_show',function (odj,value) {
  367. var is_show_value = 0
  368. if(odj.elem.checked==true){
  369. var is_show_value = 1
  370. }
  371. action.set_value('is_show',value,is_show_value,'special');
  372. });
  373. layList.switch('is_mer_visible',function (odj,value) {
  374. var is_show_value = 0
  375. if(odj.elem.checked==true){
  376. var is_show_value = 1
  377. }
  378. action.set_value('is_mer_visible',value,is_show_value,'special');
  379. });
  380. //快速编辑
  381. layList.edit(function (obj) {
  382. var id=obj.data.id,value=obj.value;
  383. switch (obj.field) {
  384. case 'title':
  385. action.set_value('title',id,value,'special');
  386. break;
  387. case 'sort':
  388. if (value.trim()) {
  389. if (isNaN(value.trim())) {
  390. layList.msg('请输入正确的数字');
  391. } else {
  392. if (value.trim() < 0) {
  393. layList.msg('排序不能小于0');
  394. } else if (value.trim() > 9999) {
  395. layList.msg('排序不能大于9999');
  396. } else if (parseInt(value.trim()) != value.trim()) {
  397. layList.msg('排序不能为小数');
  398. } else {
  399. action.set_value('sort', id, value.trim(), 'special');
  400. }
  401. }
  402. } else {
  403. layList.msg('排序不能为空');
  404. }
  405. break;
  406. case 'fake_sales':
  407. if(value < 0) return layList.msg('虚拟不能小于0');
  408. action.set_value('fake_sales',id,value,'special');
  409. break;
  410. }
  411. });
  412. //监听并执行排序
  413. layList.sort(['id','sort'],true);
  414. //点击事件绑定
  415. layList.tool(function (event,data,obj) {
  416. switch (event) {
  417. case 'delect':
  418. var url=layList.U({a:'delete',q:{id:data.id, model_type:'special'}});
  419. $eb.$swal('delete',function(){
  420. $eb.axios.get(url).then(function(res){
  421. if(res.status == 200 && res.data.code == 200) {
  422. $eb.$swal('success',res.data.msg);
  423. obj.del();
  424. }else
  425. return Promise.reject(res.data.msg || '删除失败')
  426. }).catch(function(err){
  427. $eb.$swal('error',err);
  428. });
  429. })
  430. break;
  431. case 'open_image':
  432. $eb.openImage(data.image);
  433. break;
  434. case 'learning_records':
  435. layer.open({
  436. type: 2,
  437. title: data.title + '—学习记录',
  438. content: '{:Url('learningRecords')}?id=' + data.id,
  439. area: ['80%', '90%'],
  440. maxmin: true
  441. });
  442. break;
  443. case 'comments':
  444. location.href=layList.U({c:'special.special_reply',a:'index',q:{
  445. special_id:data.id
  446. }});
  447. break;
  448. }
  449. })
  450. </script>
  451. {/block}