Compare commits
63 Commits
5bd56a90af
...
c884dd1ca8
Author | SHA1 | Date |
---|---|---|
|
c884dd1ca8 | 3 weeks ago |
|
320080cae1 | 4 weeks ago |
|
c72b29ca71 | 4 weeks ago |
|
fa9b09d3d0 | 4 weeks ago |
|
e95249cbae | 1 month ago |
|
809df003d0 | 1 month ago |
|
d6ddebe1f7 | 1 month ago |
|
f244777943 | 1 month ago |
|
fa7a5139d8 | 1 month ago |
|
79e9115357 | 1 month ago |
|
0ac9502022 | 1 month ago |
|
a6e0c4c16f | 1 month ago |
|
747aa5c3b1 | 1 month ago |
|
1e30506eb8 | 1 month ago |
|
282f51dff6 | 1 month ago |
|
2f3f8d069a | 1 month ago |
|
3aa10edb79 | 1 month ago |
|
6b69c62f85 | 1 month ago |
|
4cb8fb6b1d | 1 month ago |
|
cc559c316d | 1 month ago |
|
e0b5f092fb | 1 month ago |
|
560f6cfe38 | 1 month ago |
|
e1efc3ae0e | 1 month ago |
|
b2ee4bea1e | 1 month ago |
|
b0d65fbd78 | 1 month ago |
|
4dc18f5d48 | 1 month ago |
|
c78c7a47c1 | 2 months ago |
|
651ac827ec | 2 months ago |
|
c200741244 | 2 months ago |
|
53f03502a2 | 2 months ago |
|
01be8bfeaf | 2 months ago |
|
541f59e392 | 2 months ago |
|
883ce51ff6 | 2 months ago |
|
4ff6afeafb | 2 months ago |
|
06a6a8f6e6 | 2 months ago |
|
414e970044 | 2 months ago |
|
e47fce7d4c | 2 months ago |
|
3deceaf034 | 2 months ago |
|
e0fcbc9aea | 2 months ago |
|
6437031581 | 2 months ago |
|
df8dd7f545 | 2 months ago |
|
b71998d2ea | 2 months ago |
|
ff8a5dd02c | 2 months ago |
|
d201169659 | 2 months ago |
|
00a08a2e8e | 2 months ago |
|
a8052ea901 | 2 months ago |
|
aa1bfc32ac | 2 months ago |
|
9b619cceb7 | 2 months ago |
|
e024589c7c | 2 months ago |
|
deeaa34a2d | 2 months ago |
|
30f57d700c | 2 months ago |
|
9db63b3f30 | 2 months ago |
|
d88a2ce677 | 2 months ago |
|
c3b925cd13 | 2 months ago |
|
8586792dad | 2 months ago |
|
3db49db716 | 2 months ago |
|
16da522b0c | 2 months ago |
|
a37caebf7f | 2 months ago |
|
6187af1ee2 | 2 months ago |
|
1770bdb32b | 2 months ago |
|
3572fb2f24 | 2 months ago |
|
81dc97e023 | 2 months ago |
|
8b0a722772 | 2 months ago |
20 changed files with 448 additions and 76 deletions
@ -0,0 +1,39 @@
|
||||
package com.fr.design.mainframe.share; |
||||
|
||||
import com.fr.config.ConfigContext; |
||||
import com.fr.config.DefaultConfiguration; |
||||
import com.fr.config.Identifier; |
||||
import com.fr.config.holder.Conf; |
||||
import com.fr.config.holder.factory.Holders; |
||||
|
||||
/** |
||||
* ComponentShare 全局配置 |
||||
* |
||||
* @author Zhanying |
||||
* @since 11.0 |
||||
* Created on 2025/4/7 |
||||
*/ |
||||
public class ComponentShareConfig extends DefaultConfiguration { |
||||
private static ComponentShareConfig config = null; |
||||
|
||||
public static ComponentShareConfig getInstance() { |
||||
if (config == null) { |
||||
config = ConfigContext.getConfigInstance(ComponentShareConfig.class); |
||||
} |
||||
return config; |
||||
} |
||||
|
||||
/** |
||||
* 是否显示在线组件 |
||||
*/ |
||||
@Identifier("showOnlineWidget") |
||||
private Conf<Boolean> showOnlineWidget = Holders.simple(true); |
||||
|
||||
public boolean isShowOnlineWidget() { |
||||
return showOnlineWidget.get(); |
||||
} |
||||
|
||||
public void setShowOnlineWidget(boolean showOnlineWidget) { |
||||
this.showOnlineWidget.set(showOnlineWidget); |
||||
} |
||||
} |
@ -0,0 +1,39 @@
|
||||
package com.fr.design.mainframe.guide; |
||||
|
||||
import com.fr.config.ConfigContext; |
||||
import com.fr.config.DefaultConfiguration; |
||||
import com.fr.config.Identifier; |
||||
import com.fr.config.holder.Conf; |
||||
import com.fr.config.holder.factory.Holders; |
||||
|
||||
/** |
||||
* FvsGuide 全局配置 |
||||
* |
||||
* @author Zhanying |
||||
* @since 11.0 |
||||
* Created on 2025/4/7 |
||||
*/ |
||||
public class FvsGuideConfig extends DefaultConfiguration { |
||||
private static FvsGuideConfig config = null; |
||||
|
||||
public static FvsGuideConfig getInstance() { |
||||
if (config == null) { |
||||
config = ConfigContext.getConfigInstance(FvsGuideConfig.class); |
||||
} |
||||
return config; |
||||
} |
||||
|
||||
/** |
||||
* 是否显示超链跳转 |
||||
*/ |
||||
@Identifier("showGuideLink") |
||||
private Conf<Boolean> showGuideLink = Holders.simple(true); |
||||
|
||||
public boolean isShowGuideLink() { |
||||
return showGuideLink.get(); |
||||
} |
||||
|
||||
public void setShowGuideLink(boolean showGuideLink) { |
||||
this.showGuideLink.set(showGuideLink); |
||||
} |
||||
} |
Loading…
Reference in new issue