From 38d547d91d7eee81ed56ca6ceba7fd393952a082 Mon Sep 17 00:00:00 2001 From: Administrator <15274802129@163.com> Date: Mon, 12 May 2025 16:12:15 +0800 Subject: [PATCH] feat(sign): 增加签到获得会员经验或积分的功能 - 在 ApiSignVo 中添加 mostSignIn 字段,用于区分签到获得的类型 - 在 ScoreFlowTypeEnum 中新增 SIGN_EXPERIENCE 和 SIGN_SCORE 类型 - 修改 ScoreServiceImpl 中的签到逻辑,支持获得会员经验和积分 - 更新 ScoreSettingDto,添加 mostSignIn 字段用于配置签到获得类型 - 在前端设置页面添加签到获得类型的选项 --- src/main/resources/templates/febs/views/modules/levelView/levelList.html | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/templates/febs/views/modules/levelView/levelList.html b/src/main/resources/templates/febs/views/modules/levelView/levelList.html index f5c1f61..9ac2222 100644 --- a/src/main/resources/templates/febs/views/modules/levelView/levelList.html +++ b/src/main/resources/templates/febs/views/modules/levelView/levelList.html @@ -1,4 +1,4 @@ -<div class="layui-fluid layui-anim febs-anim" id="febs-level" lay-title="会员级别列表"> +<div class="layui-fluid layui-anim febs-anim" id="febs-level" lay-title="会员体系管理"> <div class="layui-row febs-container"> <div class="layui-col-md12"> <div class="layui-card"> @@ -158,7 +158,7 @@ {type: 'numbers', title: '', width: 80}, {title: '操作', toolbar: '#memberLevelOption', minWidth: 200, align: 'center'}, {field: 'name', title: '名称', minWidth: 150,align:'center'}, - {field: 'indexImg',title: '会员图标', + {field: 'iconPng',title: '会员图标', templet: function (d) { return '<a lay-event="seeIconPng">' + '<img id="seeIconPng' + d.id + '" src="' + d.iconPng + -- Gitblit v1.9.1