From 282f2cb6c4920ac940164f17b22a4d60c2ddb66f Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Wed, 22 Sep 2021 10:29:55 +0800 Subject: [PATCH] 20210922 --- src/main/resources/templates/febs/views/modules/goods/goodsList.html | 58 +++++++++++++++++++++++----------------------------------- 1 files changed, 23 insertions(+), 35 deletions(-) diff --git a/src/main/resources/templates/febs/views/modules/goods/goodsList.html b/src/main/resources/templates/febs/views/modules/goods/goodsList.html index 7b040b9..6ccd99b 100644 --- a/src/main/resources/templates/febs/views/modules/goods/goodsList.html +++ b/src/main/resources/templates/febs/views/modules/goods/goodsList.html @@ -66,14 +66,14 @@ table.on('tool(userTable)', function (obj) { var data = obj.data, layEvent = obj.event; - if (layEvent === 'close') { - febs.modal.confirm('禁用', '确认禁用该账号?', function () { - closeAccount(data.id); + if (layEvent === 'downGoods') { + febs.modal.confirm('下架', '确认下架该商品?', function () { + downGoods(data.id); }); } - if (layEvent === 'open') { - febs.modal.confirm('开启', '确认开启该账号?', function () { - openAccount(data.id); + if (layEvent === 'upGoods') { + febs.modal.confirm('上架', '确认上架该商品?', function () { + downGoods(data.id); }); } if (layEvent === 'see') { @@ -82,15 +82,17 @@ }); } }); - function closeAccount(id) { - febs.get(ctx + 'admin/mallMember/closeAccount/' + id, null, function () { - febs.alert.success('禁用成功'); + function downGoods(id) { + febs.get(ctx + 'admin/goods/downMallGoods/' + id, null, function () { + febs.alert.success('下架成功'); $query.click(); }); } - function openAccount(id) { - febs.get(ctx + 'admin/mallMember/openAccount/' + id, null, function () { - febs.alert.success('开启成功'); + + + function upGoods(id) { + febs.get(ctx + 'admin/goods/upMallGoods/' + id, null, function () { + febs.alert.success('上架成功'); $query.click(); }); } @@ -109,17 +111,6 @@ tableIns.reload({where: getQueryParams(), page: {curr: 1}, initSort: sortObject}); }); - // $add.on('click', function () { - // febs.modal.open('新增', 'modules/goods/goodsAdd/', { - // btn: ['提交', '取消'], - // yes: function (index, layero) { - // $('#goods-add').find('#submit').trigger('click'); - // }, - // btn2: function () { - // layer.closeAll(); - // } - // }); - // }); $add.on('click', function () { febs.view.tab.change("/modules/goods/goodsAddNew/"); }); @@ -152,18 +143,15 @@ // } // }, minWidth: 80,align:'center'}, // {field: 'createdTime', title: '注册时间', minWidth: 180,align:'center'}, - // {title: '操作', - // templet: function (d) { - // if (d.accountStatus === 1) { - // return '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="see" shiro:hasPermission="user:update">详情</button>' - // +'<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="close" shiro:hasPermission="user:update">禁用</button>' - // - // }else{ - // return '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="see" shiro:hasPermission="user:update">详情</button>' - // +'<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="open" shiro:hasPermission="user:update">启用</button>' - // - // } - // },minWidth: 300,align:'center'} + {title: '操作', + templet: function (d) { + if (d.isSale === 1) { + return '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="downGoods" shiro:hasPermission="user:update">下架</button>' + }else{ + return '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="upGoods" shiro:hasPermission="user:update">上架</button>' + + } + },minWidth: 300,align:'center'} ]] }); } -- Gitblit v1.9.1