diff --git a/jpress-web/src/main/webapp/WEB-INF/views/admin/user/mgroup.html b/jpress-web/src/main/webapp/WEB-INF/views/admin/user/mgroup.html index 0d763ea161ad12085a87eb81bb6913ffba47ec6f..88b23cd1b438d2d8dd0e007e8073e9ed19aff341 100755 --- a/jpress-web/src/main/webapp/WEB-INF/views/admin/user/mgroup.html +++ b/jpress-web/src/main/webapp/WEB-INF/views/admin/user/mgroup.html @@ -75,7 +75,7 @@ - #(group.description ??) + #(group.summary ??) #end diff --git a/jpress-web/src/main/webapp/WEB-INF/views/admin/user/mgroup_edit.html b/jpress-web/src/main/webapp/WEB-INF/views/admin/user/mgroup_edit.html index 9d8b4f07e8a4a1afe0d5f5be3eff4ac9a5c327c5..f54ca0311f5b84b8cf6bc24a6b08f221d8823051 100755 --- a/jpress-web/src/main/webapp/WEB-INF/views/admin/user/mgroup_edit.html +++ b/jpress-web/src/main/webapp/WEB-INF/views/admin/user/mgroup_edit.html @@ -55,7 +55,7 @@ initEditor('contenteditor', 300);
+ placeholder="会员描述,包括会员的权益、福利等">#CKEditorContent(group.content ??)
@@ -138,7 +138,7 @@ initEditor('contenteditor', 300);
-

单位:元。用户参与分销后,该推广用户所获得的金额。

@@ -168,7 +168,7 @@ initEditor('contenteditor', 300);
- diff --git a/module-product/module-product-web/src/main/java/io/jpress/module/product/directive/ProductDirective.java b/module-product/module-product-web/src/main/java/io/jpress/module/product/directive/ProductDirective.java index a0d7ceba8588a63a5eca8e3f6e84bcbdd12cd36e..9f63afd548d5c41883cdb13d971865e8fb4bae41 100644 --- a/module-product/module-product-web/src/main/java/io/jpress/module/product/directive/ProductDirective.java +++ b/module-product/module-product-web/src/main/java/io/jpress/module/product/directive/ProductDirective.java @@ -40,7 +40,7 @@ public class ProductDirective extends JbootDirectiveBase { @Override public void onRender(Env env, Scope scope, Writer writer) { String idOrSlug = getPara(0, scope); - Product article = getArticle(idOrSlug); + Product article = getProduct(idOrSlug); if (article == null) { return; @@ -50,7 +50,7 @@ public class ProductDirective extends JbootDirectiveBase { renderBody(env, scope, writer); } - private Product getArticle(String idOrSlug) { + private Product getProduct(String idOrSlug) { return StrUtil.isNumeric(idOrSlug) ? service.findById(idOrSlug) : service.findFirstBySlug(idOrSlug);