From 413a57e2524cb0b839d5d83d961de3b59814eb6e Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Fri, 24 Oct 2025 16:53:11 +0800
Subject: [PATCH] feat(ai): 实现产品依赖解锁功能 - 在AiMemberAnswerServiceImpl中注入AiProductDependencyService和AiMemberProductUnlockService - 修改insure方法,根据答题分数解锁符合条件的产品 - 新增selectListByProductIds和insertList方法到AiMemberProductUnlockService - 实现产品依赖关系查询方法selectListByProductId到AiProductDependencyService- 在AiProductServiceImpl中增加产品状态判断逻辑,支持锁定和解锁状态显示 - 添加memberId字段到ApiProductPageDto用于查询用户已解锁产品 - 在ApiProductVo中新增state字段表示产品锁定/解锁状态
---
src/main/resources/templates/febs/views/modules/vip/vipBenefits-list.html | 27 ++++++++++++++-------------
1 files changed, 14 insertions(+), 13 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 aeec71e..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
@@ -40,6 +40,14 @@
<a lay-event="edit" shiro:hasPermission="vipBenefits:update"><i
class="layui-icon febs-edit-area febs-blue"></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">
// 引入组件并初始化
@@ -128,6 +136,7 @@
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'},
{
@@ -147,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