mirror of
https://gitee.com/jeelowcode/JeeLowCode.git
synced 2026-09-03 05:13:46 +08:00
【更新】细节优化
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user