fix
Helius
2022-07-11 1352972797a0e781aa8f3b3a9753dd61cf4badfe
src/main/java/com/xcong/farmer/cms/core/node/Template.java
@@ -31,7 +31,7 @@
    // 页面中包含的标签
    public static Set<String> TAGS;
    public static boolean HAS_PAGING = false;
    public volatile static boolean HAS_PAGING = false;
    public Template() {
        TAGS = new HashSet<>();
@@ -97,7 +97,7 @@
            sb.append(partNode.getHtml());
        }
        document = Jsoup.parse(sb.toString());
        String outPath = path(outputPath);
        String outPath = path(outputPath) + system.get("companyCode");
        String html = document.html();
        try {