超级管理员

2025-11-20 15:34

暂不支持,后续考虑扩展

2025-11-20 09:08

替换我上面发的,然后有两次错误,修改一下传入的属性就可以了

2025-11-19 17:51

演示环境复现一下,这样子看不出什么

2025-11-19 16:14

应该是主题色来回切换有问题,后续优化

2025-11-19 15:49

演示环境未发现该问题

image.png


可以强制配置一下控件主题

image.png

2025-11-19 13:55

    private void checkTreehasChildren(FormEntity formEntity, List<Map<String, Object>> treeDataList) {

        if (Func.isEmpty(treeDataList)) {

            return;

        }

        ForkJoinPool pool = null;

        try {

            pool = FuncBase.jeelowcodeForkJoinPool();

            pool.submit(() -> treeDataList.parallelStream().forEach(dataMap -> {

                Long id = Func.getMap2Long(dataMap, "id");


                Map<String, Object> params = new HashMap<>();

                params.put("pid",id);

                SqlInfoQueryWrapper.Wrapper wrapper = this.getDataQueryWrapper(formEntity, params);

                Map<String, Object> subMap = sqlService.getDataOneByPlus(wrapper);

                boolean hasChildren = Func.isNotEmpty(subMap);

                dataMap.put("hasChildren", hasChildren);

                dataMap.put("leaf", !hasChildren);

            })).get();

        } catch (InterruptedException | ExecutionException e) {

            throw new RuntimeException(e.getMessage());

        } finally {

            if (pool != null) {

                pool.shutdown();

            }

        }

    }


2025-11-19 11:00

这边后台看到是非会员来的,代码是2.0x版本。需要用主账号提问


2025-11-18 14:59

设计器没有做国际化,表单显示支持,如果需要可以自行修改代码补充国际化

2025-11-17 16:42

可以问一下ai或者找一下Knife4j相关的资料看看

2025-11-17 16:09

https://doc.jeelowcode.com/my/version?projectId=1

可以通过git对比看一下修改哪些文件

用上一个版本创建git,在现在这个版本覆盖就可以了

2025-11-17 15:51

image.png
试了,没有问题,你那边是不是打包后的,打包后Knife4j为了 安全,不给访问了,只有在dev的情况下才能访问接口文档

2025-11-17 15:17

这个的话,在商业版已经修复了,开源版的话,等后面有空了再补上去。错误原因是因为传的是刷新token,后台解析错误了

添加客服
图片未加载,请刷新后再试
联系我们