支持一级菜单(和主页同级)在main区域显示

This commit is contained in:
RuoYi
2020-06-04 16:15:57 +08:00
parent 8520ec0e27
commit a25ab90b5a
2 changed files with 81 additions and 8 deletions

View File

@@ -42,6 +42,18 @@ public class UserConstants
/** 是否菜单外链(否) */
public static final String NO_FRAME = "1";
/** 菜单类型(目录) */
public static final String TYPE_DIR = "M";
/** 菜单类型(菜单) */
public static final String TYPE_MENU = "C";
/** 菜单类型(按钮) */
public static final String TYPE_BUTTON = "F";
/** Layout组件标识 */
public final static String LAYOUT = "Layout";
/** 校验返回结果码 */
public final static String UNIQUE = "0";
public final static String NOT_UNIQUE = "1";