【更新】细节优化

This commit is contained in:
WeiXiao
2026-05-28 09:37:59 +08:00
parent f10cd505c7
commit a3718151c1
2 changed files with 2 additions and 5 deletions

View File

@@ -101,9 +101,6 @@ public class FormServiceImpl extends ServiceImpl<FormMapper, FormEntity> impleme
@Autowired
private FormSummaryMapper summaryMapper;
@Autowired
private IFormButtonService formButtonService;
@Autowired
private IEnhanceJsService jsService;
@@ -620,7 +617,7 @@ public class FormServiceImpl extends ServiceImpl<FormMapper, FormEntity> impleme
DbFormConfigVo dbFormConfig = this.getDetailDbFormConfig(dbFormId, typeList, selfFieldList);
//获取按钮增强
List<FormButtonEntity> buttonList = formButtonService.getButtonList(dbFormId);
List<FormButtonEntity> buttonList = buttonService.getButtonList(dbFormId);
//获取Js增强
List<EnhanceJsEntity> jsList = jsService.getJsList(dbFormId);

View File

@@ -96,7 +96,7 @@ public class Func extends FuncBase {
public static boolean isJeeLowCodeUrl(HttpServletRequest request) {
List<String> jeeLowCodeUrlList = new ArrayList<>();
jeeLowCodeUrlList.add(JeeLowCodeBaseConstant.REQUEST_URL_START+"/** ");
jeeLowCodeUrlList.add(JeeLowCodeBaseConstant.REQUEST_URL_START+"/**");
if(isEmpty(request)){
return false;
}