123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- {extend name="public/container"}
- {block name="content"}
- <div class="layui-fluid">
- <div class="layui-card">
- <div class="layui-card-header">学习步骤</div>
- <div class="layui-card-body">
- <div class="layui-btn-container">
- <button type="button" class="layui-btn layui-btn-normal layui-btn-sm" data-type="addsteps">
- <i class="layui-icon layui-icon-add-1"></i>添加学习步骤
- </button>
- <button type="button" class="layui-btn layui-btn-normal layui-btn-sm" data-type="refresh">
- <i class="layui-icon layui-icon-refresh-1"></i>刷新
- </button>
- </div>
- <table id="List" lay-filter="List"></table>
- <script type="text/html" id="act">
- <button type="button" class="layui-btn layui-btn-normal layui-btn-xs" onclick="dropdown(this)">
- <i class="layui-icon"></i>操作
- </button>
- <ul class="layui-nav-child layui-anim layui-anim-upbit">
- <li>
- <a href="javascript:void(0)" lay-event="edit">
- <i class="iconfont icon-bianji"></i> 编辑
- </a>
- </li>
- <li>
- <a lay-event='delstor' href="javascript:void(0)">
- <i class="iconfont icon-shanchu"></i> 删除
- </a>
- </li>
- </ul>
- </script>
- </div>
- </div>
- </div>
- <script src="{__ADMIN_PATH}js/layuiList.js"></script>
- {/block}
- {block name="script"}
- <script>
- let $eb = parent.parent._mpApi;
- let pid = {$pid};
- var $ = layui.jquery;
- var layer = layui.layer;
- //实例化form
- layList.form.render();
- //加载列表
- layList.tableList({o:'List', done:function () {
- $('.layui-btn').on('mouseout', function (event) {
- var target = event.target;
- var type = target.dataset.type;
- if ('recommend' === type) {
- layer.closeAll();
- }
- });
- }},"{:Url('steps', ['op'=>'getlist', 'pid'=> $pid])}",function (){
- return [
- {field: 'sort', title: '排序', align: 'center'},
- {field: 'stepname', title: '步骤名称',align: 'left'},
- {field: 'introduction', title: '步骤介绍',align:'left'},
- {field: 'right', title: '操作',align:'center',toolbar:'#act',minWidth:81},
- ];
- });
- //下拉框
- $(document).click(function (e) {
- $('.layui-nav-child').hide();
- })
- function dropdown(that){
- var oEvent = arguments.callee.caller.arguments[0] || event;
- oEvent.stopPropagation();
- var offset = $(that).offset();
- var top=offset.top-$(window).scrollTop();
- var index = $(that).parents('tr').data('index');
- $('.layui-nav-child').each(function (key) {
- if (key != index) {
- $(this).hide();
- }
- })
- if($(document).height() < top+$(that).next('ul').height()){
- $(that).next('ul').css({
- 'padding': 10,
- 'top': - ($(that).parent('td').height() / 2 + $(that).height() + $(that).next('ul').height()/2),
- 'min-width': 'inherit',
- 'position': 'absolute'
- }).toggle();
- }else{
- $(that).next('ul').css({
- 'padding': 10,
- 'top':$(that).parent('td').height() / 2 + $(that).height(),
- 'min-width': 'inherit',
- 'position': 'absolute'
- }).toggle();
- }
- }
- //自定义方法
- var action= {
- set_value: function (field, id, value) {
- layList.baseGet(layList.Url({
- a: 'set_value',
- q: {field: field, id: id, value: value}
- }), function (res) {
- layList.msg(res.msg);
- });
- },
- }
- //查询
- layList.search('search',function(where){
- layList.reload(where,true);
- });
- //快速编辑
- // layList.edit(function (obj) {
- // var id=obj.data.id,value=obj.value;
- // switch (obj.field) {
- // case 'sort':
- // if (value.trim()) {
- // if (isNaN(value.trim())) {
- // layList.msg('请输入正确的数字');
- // } else {
- // if (value.trim() < 0) {
- // layList.msg('排序不能小于0');
- // } else if (value.trim() > 9999) {
- // layList.msg('排序不能大于9999');
- // } else if (parseInt(value.trim()) != value.trim()) {
- // layList.msg('排序不能为小数');
- // } else {
- // action.set_value('sort', id, value.trim());
- // }
- // }
- // } else {
- // layList.msg('排序不能为空');
- // }
- // break;
- // }
- // });
- //监听并执行排序
- //layList.sort(['id','sort'],true);
- //点击事件绑定
- layList.tool(function (event,data,obj) {
- switch (event) {
- case 'delstor':
- var url=layList.U({a:'deletestep',q:{id:data.id}});
- $eb.$swal('delete',function(){
- $eb.axios.get(url).then(function(res){
- if(res.status == 200 && res.data.code == 200) {
- $eb.$swal('success',res.data.msg);
- obj.del();
- }else
- return Promise.reject(res.data.msg || '删除失败')
- }).catch(function(err){
- $eb.$swal('error',err);
- });
- })
- break;
- case 'open_image':
- $eb.openImage(data.plan_head);
- break;
- case 'open_images':
- $eb.openImage(data.image);
- break;
- case 'edit':
- layer.open({
- type: 2,
- title: '编辑学习步骤',
- content: '{:Url('createsteps')}?id=' + data.id + "&pid=" + data.pid,
- area: ['100%', '100%'],
- maxmin: true
- });
- break;
- }
- })
- //是否显示快捷按钮操作
- layList.switch('is_show',function (odj,value) {
- if(odj.elem.checked==true){
- layList.baseGet(layList.Url({a:'set_show',p:{is_show:1,id:value}}),function (res) {
- layList.msg(res.msg);
- });
- }else{
- layList.baseGet(layList.Url({a:'set_show',p:{is_show:0,id:value}}),function (res) {
- layList.msg(res.msg);
- });
- }
- });
- $(document).on('click', '.layui-btn', function (event) {
- var type = $(this).data('type');
- var id = $(this).data('id');
- if (type === 'addsteps') {
- layer.open({
- type: 2,
- title: '添加学习步骤',
- content: "{:Url('createsteps')}?pid=" + pid,
- area: ['100%', '100%'],
- maxmin: true,
- end: function () {
- location.reload();
- }
- });
- } else if (type === 'refresh') {
- layList.reload();
- }
- });
- </script>
- {/block}
|