From c3ed9a07b0765834136afb6400d350d895584b51 Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Mon, 01 Jul 2024 14:03:23 +0800 Subject: [PATCH] 后台 --- src/main/resources/templates/febs/views/modules/product/categoryList.html | 37 +++++++++++++++++++++++-------------- 1 files changed, 23 insertions(+), 14 deletions(-) diff --git a/src/main/resources/templates/febs/views/modules/product/categoryList.html b/src/main/resources/templates/febs/views/modules/product/categoryList.html index 77ed76e..5172cd5 100644 --- a/src/main/resources/templates/febs/views/modules/product/categoryList.html +++ b/src/main/resources/templates/febs/views/modules/product/categoryList.html @@ -8,6 +8,7 @@ <div class="layui-col-md10"> <div class="layui-form-item"> <div class="layui-inline"> + <label class="layui-form-label">名称:</label> <div class="layui-input-inline"> <input type="text" placeholder="名称" name="name" autocomplete="off" class="layui-input"> </div> @@ -27,7 +28,7 @@ </div> </div> </form> - <table lay-filter="userTable" lay-data="{id: 'userTable'}"></table> + <table lay-filter="categoryTable" lay-data="{id: 'categoryTable'}"></table> <style type="text/css"> .layui-table-cell{ text-align:center; @@ -44,12 +45,11 @@ </div> </div> <!-- 表格操作栏 start --> -<script type="text/html" id="user-option"> - <span shiro:lacksPermission="user:view,user:update,user:delete"> - <span class="layui-badge-dot febs-bg-orange"></span> 无权限 - </span> - <a lay-event="edit" shiro:hasPermission="user:update"><i - class="layui-icon febs-edit-area febs-blue"></i></a> +<script type="text/html" id="tableCategoryBar-option"> + <div class="layui-btn-container"> + <button class="layui-btn layui-btn-normal layui-btn-xs" type="button" shiro:hasPermission="categoryBar:update" lay-event="see">编辑</button> + <button class="layui-btn layui-btn-normal layui-btn-xs" type="button" shiro:hasPermission="categoryBar:delete" lay-event="delCategary">删除</button> + </div> </script> <!-- 表格操作栏 end --> <script data-th-inline="none" type="text/javascript"> @@ -66,14 +66,15 @@ $searchForm = $view.find('form'), sortObject = {field: 'phone', type: null}, tableIns; - + //结合表格操作栏是否有内容,来控制数据列是否显示 + let tableCategoryBarOption = $.trim($("#tableCategoryBar-option").html())==="" ? true : false; form.render(); // 表格初始化 initTable(); // 初始化表格操作栏各个按钮功能 - table.on('tool(userTable)', function (obj) { + table.on('tool(categoryTable)', function (obj) { var data = obj.data, layEvent = obj.event; @@ -86,6 +87,11 @@ btn2: function () { layer.closeAll(); } + }); + } + if (layEvent === 'delCategary') { + febs.modal.confirm('删除', '确认删除?', function () { + delCategary(data.id); }); } if (layEvent === 'seeImges') { @@ -105,6 +111,12 @@ } }); + function delCategary(id) { + febs.get(ctx + 'admin/goodsCategory/delCategary/' + id, null, function () { + febs.alert.success('操作成功'); + $query.click(); + }); + } // 查询按钮 $query.on('click', function () { @@ -134,7 +146,7 @@ function initTable() { tableIns = febs.table.init({ elem: $view.find('table'), - id: 'userTable', + id: 'categoryTable', url: ctx + 'admin/goodsCategory/categoryList', cols: [[ {field: 'name', title: '名称', minWidth: 150,align:'left'}, @@ -143,10 +155,7 @@ templet: function (d) { return '<a lay-event="seeImges"><img id="seeImges'+d.id+'" src="'+d.image+'" alt=""></a>'; }, minWidth: 100,align:'center'}, - {title: '操作', - templet: function (d) { - return '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="see" shiro:hasPermission="user:update">编辑</button>' - },minWidth: 300,align:'center'} + {title: '操作', minWidth: 200 ,toolbar: '#tableCategoryBar-option',hide:tableCategoryBarOption} ]] }); } -- Gitblit v1.9.1