From ccbd86bc5f747b748b5bde257a789d748b8cefbb Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Thu, 11 Sep 2025 17:41:35 +0800
Subject: [PATCH] ``` refactor(service): 在设置活动类别名称前增加非空检查在AdminHappyActivityServiceImpl.java中,对happyActivity的categoryId进行了非空检查,并且确认categoryMap中包含该categoryId后,再设置其categoryName。这样可以避免因为空值或不存在的键导致的潜在异常。 ```
---
src/main/resources/templates/febs/views/modules/socialCircle/groupAdd.html | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/src/main/resources/templates/febs/views/modules/socialCircle/groupAdd.html b/src/main/resources/templates/febs/views/modules/socialCircle/groupAdd.html
index d590bc5..7877b16 100644
--- a/src/main/resources/templates/febs/views/modules/socialCircle/groupAdd.html
+++ b/src/main/resources/templates/febs/views/modules/socialCircle/groupAdd.html
@@ -35,6 +35,7 @@
<blockquote class="layui-elem-quote layui-quote-nm" style="margin-top: 10px;">
<div class="layui-upload-list" id="bannerImgUploadBack"></div>
</blockquote>
+ <div class="layui-word-aux">双击图片删除</div>
</div>
</div>
</div>
@@ -100,11 +101,33 @@
}
,done: function(res){
$("#backImage").val(res.data.src);
+ imgUnBind(".single-image");
+ imgSingleBind();
}
});
+
+
form.render();
+ function imgUnBind(className) {
+ $(className).each(function() {
+ $(this).unbind('dblclick');
+ })
+ }
+ function imgSingleBind() {
+ $(".single-image").each(function(index, element) {
+ $(this).on("dblclick", function() {
+ var imgThumb = $(".single-image")[index];
+ $(imgThumb).remove();
+ $("#backImage").val("");
+
+ imgUnBind(".single-image");
+ imgSingleBind();
+ });
+ })
+ }
+
form.on('submit(groupSc-add-form-submit)', function (data) {
$.ajax({
'url':ctx + 'admin/socialCircle/addGroup',
--
Gitblit v1.9.1