From 9b51a95fa8bc9b3a86108c6900e17fc55f8db467 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Mon, 19 May 2025 17:02:07 +0800
Subject: [PATCH] refactor(vip): 优化积分和返佣计算逻辑

---
 src/main/resources/templates/febs/views/modules/vip/vipBenefits-list.html |   58 ++++++++++++++++++++++++++--------------------------------
 1 files changed, 26 insertions(+), 32 deletions(-)

diff --git a/src/main/resources/templates/febs/views/modules/vip/vipBenefits-list.html b/src/main/resources/templates/febs/views/modules/vip/vipBenefits-list.html
index b6be61c..4748cb6 100644
--- a/src/main/resources/templates/febs/views/modules/vip/vipBenefits-list.html
+++ b/src/main/resources/templates/febs/views/modules/vip/vipBenefits-list.html
@@ -32,13 +32,6 @@
         background-color: #5FB878 !important;
     }
 </style>
-<script type="text/html" id="isTopSwitch">
-    {{# if(d.isTop === 1) { }}
-    <input type="checkbox" value={{d.id}} lay-text="是|否" checked lay-skin="switch" lay-filter="isTopSwitch">
-    {{# } else { }}
-    <input type="checkbox" value={{d.id}} lay-text="是|否" lay-skin="switch" lay-filter="isTopSwitch">
-    {{# } }}
-</script>
 <!-- 表格操作栏 start -->
 <script type="text/html" id="user-option">
     <span shiro:lacksPermission="vipBenefits:view,vipBenefits:update,vipBenefits:delete">
@@ -46,6 +39,14 @@
     </span>
     <a lay-event="edit" shiro:hasPermission="vipBenefits:update"><i
             class="layui-icon febs-edit-area febs-blue">&#xe7a5;</i></a>
+</script>
+
+<script type="text/html" id="isShowSwitch">
+    {{# if(d.isShow === 1) { }}
+    <input type="checkbox" value={{d.id}} lay-text="显示|隐藏" checked lay-skin="switch" lay-filter="isShowSwitch">
+    {{# } else { }}
+    <input type="checkbox" value={{d.id}} lay-text="显示|隐藏" lay-skin="switch" lay-filter="isShowSwitch">
+    {{# } }}
 </script>
 <!-- 表格操作栏 end -->
 <script data-th-inline="none" type="text/javascript">
@@ -72,26 +73,26 @@
         table.on('tool(vipBenefitsTable)', function (obj) {
             var data = obj.data,
                 layEvent = obj.event;
-            if (layEvent === 'newsInfoUpdate') {
-                febs.modal.open('编辑', 'modules/news/newsInfoUpdate/' + data.id, {
+            if (layEvent === 'benefitsUpdate') {
+                febs.modal.open('编辑', 'modules/vip/config/editBenefits/' + data.id, {
                     btn: ['提交', '取消'],
                     yes: function (index, layero) {
-                        $('#newsInfo-update').find('#submit').trigger('click');
+                        $('#febs-vipBenefits-edit').find('#submit').trigger('click');
                     },
                     btn2: function () {
                         layer.closeAll();
                     }
                 });
             }
-            if (layEvent === 'delNewsInfo') {
+            if (layEvent === 'delBenefits') {
                 febs.modal.confirm('删除', '确认删除?', function () {
-                    delNewsInfo(data.id);
+                    delBenefits(data.id);
                 });
             }
         });
 
-        function delNewsInfo(id) {
-            febs.get(ctx + 'admin/news/delNewsInfo/' + id, null, function () {
+        function delBenefits(id) {
+            febs.get(ctx + 'admin/vip/benefits/delBenefits/' + id, null, function () {
                 febs.alert.success('操作成功');
                 $query.click();
             });
@@ -111,10 +112,10 @@
         });
 
         $add.on('click', function () {
-            febs.modal.open('新增', 'modules/news/newsInfoAdd/', {
+            febs.modal.open('新增', 'modules/vip/config/vipBenefitsAdd/', {
                 btn: ['提交', '取消'],
                 yes: function (index, layero) {
-                    $('#newsInfo-add').find('#submit').trigger('click');
+                    $('#febs-vipBenefits-add').find('#submit').trigger('click');
                 },
                 btn2: function () {
                     layer.closeAll();
@@ -132,16 +133,17 @@
                     {
                         field: 'icon', title: 'ICON',
                         templet: function (d) {
-                            return '';
+                            return '<a lay-event="seeImgThumb"><img id="seeImgThumb'+d.id+'" src="'+d.icon+'" alt=""></a>';
                         }, minWidth: 150, align: 'center'
                     },
+                    {templet: '#isShowSwitch', title: '是否在小程序显示', minWidth: 120, align: 'center'},
                     {field: 'remark', title: '备注', minWidth: 120, align: 'center'},
                     {field: 'createdTime', title: '创建时间', minWidth: 120, align: 'center'},
                     {
                         title: '操作',
                         templet: function (d) {
-                            return '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="newsInfoUpdate" shiro:hasPermission="user:update">编辑</button>'
-                                + '<button class="layui-btn layui-btn-danger layui-btn-xs" lay-event="delNewsInfo" shiro:hasPermission="user:update">删除</button>'
+                            return '<button class="layui-btn layui-btn-normal layui-btn-xs" lay-event="benefitsUpdate" shiro:hasPermission="user:update">编辑</button>'
+                                + '<button class="layui-btn layui-btn-danger layui-btn-xs" lay-event="delBenefits" shiro:hasPermission="user:update">删除</button>'
                         }, minWidth: 300, align: 'center'
                     }
                 ]]
@@ -154,19 +156,11 @@
             };
         }
 
-        form.on('switch(isTopSwitch)', function (data) {
-            console.log(data.value);
-            if (data.elem.checked) {
-                febs.post(ctx + 'admin/news/topNews/' + data.value, null, function () {
-                    febs.alert.success('设置成功');
-                    $query.click();
-                });
-            } else {
-                febs.post(ctx + 'admin/news/unTopNews/' + data.value, null, function () {
-                    febs.alert.success('设置成功');
-                    $query.click();
-                });
-            }
+        form.on('switch(isShowSwitch)', function (data) {
+            febs.post(ctx + 'admin/vip/benefits/switchBenefitsShow/' + data.value, null, function () {
+                febs.alert.success('设置成功');
+                $query.click();
+            });
         })
     })
 </script>
\ No newline at end of file

--
Gitblit v1.9.1