From fbe6ab3f9dee466b1b6557f27c862322ef45a89b Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Sun, 02 Mar 2025 14:15:18 +0800 Subject: [PATCH] refactor(mallMember): 注释掉会员列表页面的三个按钮- 注释掉了"碳币拨付"、"碳积分拨付"和"修改会员等级"三个按钮 - 保留了"添加会员"、"登录密码重置"和"资金密码重置"按钮 --- src/main/resources/templates/febs/views/modules/runVip/systemSetting.html | 23 ----------------------- 1 files changed, 0 insertions(+), 23 deletions(-) diff --git a/src/main/resources/templates/febs/views/modules/runVip/systemSetting.html b/src/main/resources/templates/febs/views/modules/runVip/systemSetting.html index 45c58f7..cc5827a 100644 --- a/src/main/resources/templates/febs/views/modules/runVip/systemSetting.html +++ b/src/main/resources/templates/febs/views/modules/runVip/systemSetting.html @@ -6,9 +6,6 @@ </div> - <div class="layui-card-footer"> - <button class="layui-btn layui-btn-normal save-btn" lay-submit="" lay-filter="system-setting-form-submit" id="submit">保存</button> - </div> </div> </form> </div> @@ -70,25 +67,5 @@ } }); } - - form.on('submit(system-setting-form-submit)', function (data) { - $.ajax({ - 'url':ctx + 'admin/runVip/bonusSystemSetting', - 'type':'post', - 'dataType':'json', - 'headers' : {'Content-Type' : 'application/json;charset=utf-8'}, - 'traditional': true, - 'data':JSON.stringify(data.field), - 'success':function (data) { - if (data.code == 200) { - febs.alert.success(data.message); - } - }, - 'error':function () { - febs.alert.warn('服务器繁忙'); - } - }) - return false; - }); }); </script> \ No newline at end of file -- Gitblit v1.9.1