From 7cac09fcadbb53fc0441d738bfd336555b8c16ab Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 30 Oct 2023 16:23:40 +0800 Subject: [PATCH] 用户收益列表 --- src/main/resources/templates/febs/views/modules/chat/userPerkList.html | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/resources/templates/febs/views/modules/chat/userPerkList.html b/src/main/resources/templates/febs/views/modules/chat/userPerkList.html index 26add41..3c743be 100644 --- a/src/main/resources/templates/febs/views/modules/chat/userPerkList.html +++ b/src/main/resources/templates/febs/views/modules/chat/userPerkList.html @@ -3,7 +3,7 @@ <div class="layui-col-md12"> <div class="layui-card"> <div class="layui-card-body febs-table-full"> - <form class="layui-form layui-table-form" lay-filter="user-table-form"> + <form class="layui-form layui-table-form" lay-filter="user-perk-table-form"> <div class="layui-row"> <div class="layui-col-md10"> <div class="layui-form-item"> @@ -47,7 +47,7 @@ </div> </div> </form> - <table lay-filter="userChatTable" lay-data="{id: 'userChatTable'}"></table> + <table lay-filter="userPerkTable" lay-data="{id: 'userPerkTable'}"></table> </div> </div> </div> @@ -135,7 +135,7 @@ function initTable() { tableIns = febs.table.init({ elem: $view.find('table'), - id: 'userChatTable', + id: 'userPerkTable', url: ctx + 'admin/chat/getUserPerkList', toolbar:"#toolbar", defaultToolbar:[], @@ -160,7 +160,7 @@ }); } - table.on('toolbar(userChatTable)', function(obj){ + table.on('toolbar(userPerkTable)', function(obj){ var data = obj.data, layEvent = obj.event; @@ -172,7 +172,7 @@ // } if (layEvent === 'registerMember') { - var checkData = table.checkStatus('userChatTable').data; + var checkData = table.checkStatus('userPerkTable').data; if (checkData.length <= 0) { febs.alert.warn('请选择需要的用户'); return; @@ -185,7 +185,7 @@ } if (layEvent === 'balance') { - var checkData = table.checkStatus('userChatTable').data; + var checkData = table.checkStatus('userPerkTable').data; if (checkData.length <= 0) { febs.alert.warn('请选择需要的用户'); return; -- Gitblit v1.9.1