From c2a08e408b08e21a7595eaeaaf8483c5df030d24 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Sun, 26 Sep 2021 16:47:06 +0800 Subject: [PATCH] add agent auto level up --- src/main/resources/templates/febs/views/modules/goods/goodsList.html | 77 +++++++++++++++++++------------------- 1 files changed, 38 insertions(+), 39 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..8798741 100644 --- a/src/main/resources/templates/febs/views/modules/goods/goodsList.html +++ b/src/main/resources/templates/febs/views/modules/goods/goodsList.html @@ -66,35 +66,45 @@ 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 () { + upGoods(data.id); }); } - if (layEvent === 'see') { - febs.modal.open( '个人信息', 'modules/mallMember/detail/' + data.id, { + if (layEvent === 'delGoods') { + febs.modal.confirm('删除', '确认删除该商品?', function () { + delGoods(data.id); + }); + } + if (layEvent === 'detailGoods') { + febs.modal.open( '商品详情', 'modules/goods/detailGoods/' + data.id, { maxmin: true, }); } }); - 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 delGoods(id) { + febs.get(ctx + 'admin/goods/delMallGoods/' + id, null, function () { + febs.alert.success('删除成功'); $query.click(); }); } - + function upGoods(id) { + febs.get(ctx + 'admin/goods/upMallGoods/' + id, null, function () { + febs.alert.success('上架成功'); + $query.click(); + }); + } // 查询按钮 $query.on('click', function () { @@ -109,17 +119,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 +151,18 @@ // } // }, 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>' + + '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="detailGoods" 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>' + + '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="delGoods" shiro:hasPermission="user:update">删除</button>' + + '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="updateGoods" shiro:hasPermission="user:update">编辑</button>' + + } + },minWidth: 300,align:'center'} ]] }); } @@ -171,7 +170,7 @@ // 获取查询参数 function getQueryParams() { return { - name: $searchForm.find('input[name="goodsName"]').val().trim(), + goodsName: $searchForm.find('input[name="goodsName"]').val().trim(), }; } -- Gitblit v1.9.1