Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
T
topology
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
姜立玮
topology
Commits
abeb8d7f
提交
abeb8d7f
authored
9月 20, 2020
作者:
RuoYi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
菜单新增是否缓存keep-alive
上级
478fae0d
变更
9
展开全部
隐藏空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
155 行增加
和
103 行删除
+155
-103
SysMenu.java
...ain/java/com/ruoyi/common/core/domain/entity/SysMenu.java
+14
-0
SysRole.java
...ain/java/com/ruoyi/common/core/domain/entity/SysRole.java
+4
-2
sql.vm
ruoyi-generator/src/main/resources/vm/sql/sql.vm
+12
-12
MetaVo.java
...stem/src/main/java/com/ruoyi/system/domain/vo/MetaVo.java
+22
-0
SysMenuServiceImpl.java
...ava/com/ruoyi/system/service/impl/SysMenuServiceImpl.java
+2
-2
SysMenuMapper.xml
...system/src/main/resources/mapper/system/SysMenuMapper.xml
+8
-4
index.js
ruoyi-ui/src/router/index.js
+1
-1
index.vue
ruoyi-ui/src/views/system/menu/index.vue
+9
-0
ry_20200920.sql
sql/ry_20200920.sql
+83
-82
没有找到文件。
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysMenu.java
浏览文件 @
abeb8d7f
...
@@ -41,6 +41,9 @@ public class SysMenu extends BaseEntity
...
@@ -41,6 +41,9 @@ public class SysMenu extends BaseEntity
/** 是否为外链(0是 1否) */
/** 是否为外链(0是 1否) */
private
String
isFrame
;
private
String
isFrame
;
/** 是否缓存(0缓存 1不缓存) */
private
String
isCache
;
/** 类型(M目录 C菜单 F按钮) */
/** 类型(M目录 C菜单 F按钮) */
private
String
menuType
;
private
String
menuType
;
...
@@ -144,6 +147,16 @@ public class SysMenu extends BaseEntity
...
@@ -144,6 +147,16 @@ public class SysMenu extends BaseEntity
this
.
isFrame
=
isFrame
;
this
.
isFrame
=
isFrame
;
}
}
public
String
getIsCache
()
{
return
isCache
;
}
public
void
setIsCache
(
String
isCache
)
{
this
.
isCache
=
isCache
;
}
@NotBlank
(
message
=
"菜单类型不能为空"
)
@NotBlank
(
message
=
"菜单类型不能为空"
)
public
String
getMenuType
()
public
String
getMenuType
()
{
{
...
@@ -216,6 +229,7 @@ public class SysMenu extends BaseEntity
...
@@ -216,6 +229,7 @@ public class SysMenu extends BaseEntity
.
append
(
"path"
,
getPath
())
.
append
(
"path"
,
getPath
())
.
append
(
"component"
,
getComponent
())
.
append
(
"component"
,
getComponent
())
.
append
(
"isFrame"
,
getIsFrame
())
.
append
(
"isFrame"
,
getIsFrame
())
.
append
(
"IsCache"
,
getIsCache
())
.
append
(
"menuType"
,
getMenuType
())
.
append
(
"menuType"
,
getMenuType
())
.
append
(
"visible"
,
getVisible
())
.
append
(
"visible"
,
getVisible
())
.
append
(
"status "
,
getStatus
())
.
append
(
"status "
,
getStatus
())
...
...
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysRole.java
浏览文件 @
abeb8d7f
...
@@ -37,10 +37,10 @@ public class SysRole extends BaseEntity
...
@@ -37,10 +37,10 @@ public class SysRole extends BaseEntity
@Excel
(
name
=
"数据范围"
,
readConverterExp
=
"1=所有数据权限,2=自定义数据权限,3=本部门数据权限,4=本部门及以下数据权限"
)
@Excel
(
name
=
"数据范围"
,
readConverterExp
=
"1=所有数据权限,2=自定义数据权限,3=本部门数据权限,4=本部门及以下数据权限"
)
private
String
dataScope
;
private
String
dataScope
;
/** 菜单树选择项是否关联显示(
0:父子互相关联显示 1:父子不
互相关联显示) */
/** 菜单树选择项是否关联显示(
0:父子不互相关联显示 1:父子
互相关联显示) */
private
boolean
menuCheckStrictly
;
private
boolean
menuCheckStrictly
;
/** 部门树选择项是否关联显示(0:父子
互相关联显示 1:父子不互相关联显示
) */
/** 部门树选择项是否关联显示(0:父子
不互相关联显示 1:父子互相关联显示
) */
private
boolean
deptCheckStrictly
;
private
boolean
deptCheckStrictly
;
/** 角色状态(0正常 1停用) */
/** 角色状态(0正常 1停用) */
...
@@ -212,6 +212,8 @@ public class SysRole extends BaseEntity
...
@@ -212,6 +212,8 @@ public class SysRole extends BaseEntity
.
append
(
"roleKey"
,
getRoleKey
())
.
append
(
"roleKey"
,
getRoleKey
())
.
append
(
"roleSort"
,
getRoleSort
())
.
append
(
"roleSort"
,
getRoleSort
())
.
append
(
"dataScope"
,
getDataScope
())
.
append
(
"dataScope"
,
getDataScope
())
.
append
(
"menuCheckStrictly"
,
isMenuCheckStrictly
())
.
append
(
"deptCheckStrictly"
,
isDeptCheckStrictly
())
.
append
(
"status"
,
getStatus
())
.
append
(
"status"
,
getStatus
())
.
append
(
"delFlag"
,
getDelFlag
())
.
append
(
"delFlag"
,
getDelFlag
())
.
append
(
"createBy"
,
getCreateBy
())
.
append
(
"createBy"
,
getCreateBy
())
...
...
ruoyi-generator/src/main/resources/vm/sql/sql.vm
浏览文件 @
abeb8d7f
-- 菜单 SQL
-- 菜单 SQL
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame,
is_cache,
menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
values('${functionName}', '${parentMenuId}', '1', '${businessName}', '${moduleName}/${businessName}/index', 1, 'C', '0', '0', '${permissionPrefix}:list', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '${functionName}菜单');
values('${functionName}', '${parentMenuId}', '1', '${businessName}', '${moduleName}/${businessName}/index', 1,
0,
'C', '0', '0', '${permissionPrefix}:list', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '${functionName}菜单');
-- 按钮父菜单ID
-- 按钮父菜单ID
SELECT @parentId := LAST_INSERT_ID();
SELECT @parentId := LAST_INSERT_ID();
-- 按钮 SQL
-- 按钮 SQL
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame,
is_cache,
menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
values('${functionName}查询', @parentId, '1', '#', '', 1,
'F', '0',
'0', '${permissionPrefix}:query', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '');
values('${functionName}查询', @parentId, '1', '#', '', 1,
0, 'F', '0',
'0', '${permissionPrefix}:query', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '');
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame,
is_cache,
menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
values('${functionName}新增', @parentId, '2', '#', '', 1,
'F', '0',
'0', '${permissionPrefix}:add', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '');
values('${functionName}新增', @parentId, '2', '#', '', 1,
0, 'F', '0',
'0', '${permissionPrefix}:add', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '');
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame,
is_cache,
menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
values('${functionName}修改', @parentId, '3', '#', '', 1,
'F', '0',
'0', '${permissionPrefix}:edit', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '');
values('${functionName}修改', @parentId, '3', '#', '', 1,
0, 'F', '0',
'0', '${permissionPrefix}:edit', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '');
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame,
is_cache,
menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
values('${functionName}删除', @parentId, '4', '#', '', 1,
'F', '0',
'0', '${permissionPrefix}:remove', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '');
values('${functionName}删除', @parentId, '4', '#', '', 1,
0, 'F', '0',
'0', '${permissionPrefix}:remove', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '');
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
values('${functionName}导出', @parentId, '5', '#', '', 1, 'F', '0', '0', '${permissionPrefix}:export', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '');
values('${functionName}导出', @parentId, '5', '#', '', 1, 0, 'F', '0', '0', '${permissionPrefix}:export', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '');
\ No newline at end of file
\ No newline at end of file
ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/MetaVo.java
浏览文件 @
abeb8d7f
...
@@ -17,6 +17,11 @@ public class MetaVo
...
@@ -17,6 +17,11 @@ public class MetaVo
*/
*/
private
String
icon
;
private
String
icon
;
/**
* 设置为true,则不会被 <keep-alive>缓存
*/
private
boolean
noCache
;
public
MetaVo
()
public
MetaVo
()
{
{
}
}
...
@@ -27,6 +32,23 @@ public class MetaVo
...
@@ -27,6 +32,23 @@ public class MetaVo
this
.
icon
=
icon
;
this
.
icon
=
icon
;
}
}
public
MetaVo
(
String
title
,
String
icon
,
boolean
noCache
)
{
this
.
title
=
title
;
this
.
icon
=
icon
;
this
.
noCache
=
noCache
;
}
public
boolean
isNoCache
()
{
return
noCache
;
}
public
void
setNoCache
(
boolean
noCache
)
{
this
.
noCache
=
noCache
;
}
public
String
getTitle
()
public
String
getTitle
()
{
{
return
title
;
return
title
;
...
...
ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysMenuServiceImpl.java
浏览文件 @
abeb8d7f
...
@@ -150,7 +150,7 @@ public class SysMenuServiceImpl implements ISysMenuService
...
@@ -150,7 +150,7 @@ public class SysMenuServiceImpl implements ISysMenuService
router
.
setName
(
getRouteName
(
menu
));
router
.
setName
(
getRouteName
(
menu
));
router
.
setPath
(
getRouterPath
(
menu
));
router
.
setPath
(
getRouterPath
(
menu
));
router
.
setComponent
(
getComponent
(
menu
));
router
.
setComponent
(
getComponent
(
menu
));
router
.
setMeta
(
new
MetaVo
(
menu
.
getMenuName
(),
menu
.
getIcon
()));
router
.
setMeta
(
new
MetaVo
(
menu
.
getMenuName
(),
menu
.
getIcon
()
,
StringUtils
.
equals
(
"1"
,
menu
.
getIsCache
())
));
List
<
SysMenu
>
cMenus
=
menu
.
getChildren
();
List
<
SysMenu
>
cMenus
=
menu
.
getChildren
();
if
(!
cMenus
.
isEmpty
()
&&
cMenus
.
size
()
>
0
&&
UserConstants
.
TYPE_DIR
.
equals
(
menu
.
getMenuType
()))
if
(!
cMenus
.
isEmpty
()
&&
cMenus
.
size
()
>
0
&&
UserConstants
.
TYPE_DIR
.
equals
(
menu
.
getMenuType
()))
{
{
...
@@ -165,7 +165,7 @@ public class SysMenuServiceImpl implements ISysMenuService
...
@@ -165,7 +165,7 @@ public class SysMenuServiceImpl implements ISysMenuService
children
.
setPath
(
menu
.
getPath
());
children
.
setPath
(
menu
.
getPath
());
children
.
setComponent
(
menu
.
getComponent
());
children
.
setComponent
(
menu
.
getComponent
());
children
.
setName
(
StringUtils
.
capitalize
(
menu
.
getPath
()));
children
.
setName
(
StringUtils
.
capitalize
(
menu
.
getPath
()));
children
.
setMeta
(
new
MetaVo
(
menu
.
getMenuName
(),
menu
.
getIcon
()));
children
.
setMeta
(
new
MetaVo
(
menu
.
getMenuName
(),
menu
.
getIcon
()
,
StringUtils
.
equals
(
"1"
,
menu
.
getIsCache
())
));
childrenList
.
add
(
children
);
childrenList
.
add
(
children
);
router
.
setChildren
(
childrenList
);
router
.
setChildren
(
childrenList
);
}
}
...
...
ruoyi-system/src/main/resources/mapper/system/SysMenuMapper.xml
浏览文件 @
abeb8d7f
...
@@ -13,6 +13,7 @@
...
@@ -13,6 +13,7 @@
<result
property=
"path"
column=
"path"
/>
<result
property=
"path"
column=
"path"
/>
<result
property=
"component"
column=
"component"
/>
<result
property=
"component"
column=
"component"
/>
<result
property=
"isFrame"
column=
"is_frame"
/>
<result
property=
"isFrame"
column=
"is_frame"
/>
<result
property=
"isCache"
column=
"is_cache"
/>
<result
property=
"menuType"
column=
"menu_type"
/>
<result
property=
"menuType"
column=
"menu_type"
/>
<result
property=
"visible"
column=
"visible"
/>
<result
property=
"visible"
column=
"visible"
/>
<result
property=
"status"
column=
"status"
/>
<result
property=
"status"
column=
"status"
/>
...
@@ -26,7 +27,7 @@
...
@@ -26,7 +27,7 @@
</resultMap>
</resultMap>
<sql
id=
"selectMenuVo"
>
<sql
id=
"selectMenuVo"
>
select menu_id, menu_name, parent_id, order_num, path, component, is_frame, menu_type, visible, status, ifnull(perms,'') as perms, icon, create_time
select menu_id, menu_name, parent_id, order_num, path, component, is_frame,
is_cache,
menu_type, visible, status, ifnull(perms,'') as perms, icon, create_time
from sys_menu
from sys_menu
</sql>
</sql>
...
@@ -47,13 +48,13 @@
...
@@ -47,13 +48,13 @@
</select>
</select>
<select
id=
"selectMenuTreeAll"
resultMap=
"SysMenuResult"
>
<select
id=
"selectMenuTreeAll"
resultMap=
"SysMenuResult"
>
select distinct m.menu_id, m.parent_id, m.menu_name, m.path, m.component, m.visible, m.status, ifnull(m.perms,'') as perms, m.is_frame, m.menu_type, m.icon, m.order_num, m.create_time
select distinct m.menu_id, m.parent_id, m.menu_name, m.path, m.component, m.visible, m.status, ifnull(m.perms,'') as perms, m.is_frame, m.
is_cache, m.
menu_type, m.icon, m.order_num, m.create_time
from sys_menu m where m.menu_type in ('M', 'C') and m.status = 0
from sys_menu m where m.menu_type in ('M', 'C') and m.status = 0
order by m.parent_id, m.order_num
order by m.parent_id, m.order_num
</select>
</select>
<select
id=
"selectMenuListByUserId"
parameterType=
"SysMenu"
resultMap=
"SysMenuResult"
>
<select
id=
"selectMenuListByUserId"
parameterType=
"SysMenu"
resultMap=
"SysMenuResult"
>
select distinct m.menu_id, m.parent_id, m.menu_name, m.path, m.component, m.visible, m.status, ifnull(m.perms,'') as perms, m.is_frame, m.menu_type, m.icon, m.order_num, m.create_time
select distinct m.menu_id, m.parent_id, m.menu_name, m.path, m.component, m.visible, m.status, ifnull(m.perms,'') as perms, m.is_frame, m.
is_cache, m.
menu_type, m.icon, m.order_num, m.create_time
from sys_menu m
from sys_menu m
left join sys_role_menu rm on m.menu_id = rm.menu_id
left join sys_role_menu rm on m.menu_id = rm.menu_id
left join sys_user_role ur on rm.role_id = ur.role_id
left join sys_user_role ur on rm.role_id = ur.role_id
...
@@ -72,7 +73,7 @@
...
@@ -72,7 +73,7 @@
</select>
</select>
<select
id=
"selectMenuTreeByUserId"
parameterType=
"Long"
resultMap=
"SysMenuResult"
>
<select
id=
"selectMenuTreeByUserId"
parameterType=
"Long"
resultMap=
"SysMenuResult"
>
select distinct m.menu_id, m.parent_id, m.menu_name, m.path, m.component, m.visible, m.status, ifnull(m.perms,'') as perms, m.is_frame, m.menu_type, m.icon, m.order_num, m.create_time
select distinct m.menu_id, m.parent_id, m.menu_name, m.path, m.component, m.visible, m.status, ifnull(m.perms,'') as perms, m.is_frame, m.
is_cache, m.
menu_type, m.icon, m.order_num, m.create_time
from sys_menu m
from sys_menu m
left join sys_role_menu rm on m.menu_id = rm.menu_id
left join sys_role_menu rm on m.menu_id = rm.menu_id
left join sys_user_role ur on rm.role_id = ur.role_id
left join sys_user_role ur on rm.role_id = ur.role_id
...
@@ -132,6 +133,7 @@
...
@@ -132,6 +133,7 @@
<if
test=
"path != null and path != ''"
>
path = #{path},
</if>
<if
test=
"path != null and path != ''"
>
path = #{path},
</if>
<if
test=
"component != null and component != ''"
>
component = #{component},
</if>
<if
test=
"component != null and component != ''"
>
component = #{component},
</if>
<if
test=
"isFrame != null and isFrame != ''"
>
is_frame = #{isFrame},
</if>
<if
test=
"isFrame != null and isFrame != ''"
>
is_frame = #{isFrame},
</if>
<if
test=
"isCache != null and isCache != ''"
>
is_cache = #{isCache},
</if>
<if
test=
"menuType != null and menuType != ''"
>
menu_type = #{menuType},
</if>
<if
test=
"menuType != null and menuType != ''"
>
menu_type = #{menuType},
</if>
<if
test=
"visible != null"
>
visible = #{visible},
</if>
<if
test=
"visible != null"
>
visible = #{visible},
</if>
<if
test=
"status != null"
>
status = #{status},
</if>
<if
test=
"status != null"
>
status = #{status},
</if>
...
@@ -153,6 +155,7 @@
...
@@ -153,6 +155,7 @@
<if
test=
"path != null and path != ''"
>
path,
</if>
<if
test=
"path != null and path != ''"
>
path,
</if>
<if
test=
"component != null and component != ''"
>
component,
</if>
<if
test=
"component != null and component != ''"
>
component,
</if>
<if
test=
"isFrame != null and isFrame != ''"
>
is_frame,
</if>
<if
test=
"isFrame != null and isFrame != ''"
>
is_frame,
</if>
<if
test=
"isCache != null and isCache != ''"
>
is_cache,
</if>
<if
test=
"menuType != null and menuType != ''"
>
menu_type,
</if>
<if
test=
"menuType != null and menuType != ''"
>
menu_type,
</if>
<if
test=
"visible != null"
>
visible,
</if>
<if
test=
"visible != null"
>
visible,
</if>
<if
test=
"status != null"
>
status,
</if>
<if
test=
"status != null"
>
status,
</if>
...
@@ -169,6 +172,7 @@
...
@@ -169,6 +172,7 @@
<if
test=
"path != null and path != ''"
>
#{path},
</if>
<if
test=
"path != null and path != ''"
>
#{path},
</if>
<if
test=
"component != null and component != ''"
>
#{component},
</if>
<if
test=
"component != null and component != ''"
>
#{component},
</if>
<if
test=
"isFrame != null and isFrame != ''"
>
#{isFrame},
</if>
<if
test=
"isFrame != null and isFrame != ''"
>
#{isFrame},
</if>
<if
test=
"isCache != null and isCache != ''"
>
#{isCache},
</if>
<if
test=
"menuType != null and menuType != ''"
>
#{menuType},
</if>
<if
test=
"menuType != null and menuType != ''"
>
#{menuType},
</if>
<if
test=
"visible != null"
>
#{visible},
</if>
<if
test=
"visible != null"
>
#{visible},
</if>
<if
test=
"status != null"
>
#{status},
</if>
<if
test=
"status != null"
>
#{status},
</if>
...
...
ruoyi-ui/src/router/index.js
浏览文件 @
abeb8d7f
...
@@ -17,7 +17,7 @@ import Layout from '@/layout'
...
@@ -17,7 +17,7 @@ import Layout from '@/layout'
* redirect: noRedirect // 当设置 noRedirect 的时候该路由在面包屑导航中不可被点击
* redirect: noRedirect // 当设置 noRedirect 的时候该路由在面包屑导航中不可被点击
* name:'router-name' // 设定路由的名字,一定要填写不然使用<keep-alive>时会出现各种问题
* name:'router-name' // 设定路由的名字,一定要填写不然使用<keep-alive>时会出现各种问题
* meta : {
* meta : {
roles: ['admin','editor'] // 设置该路由进入的权限,支持多个权限叠加
noCache: true // 如果设置为true,则不会被 <keep-alive> 缓存(默认 false)
title: 'title' // 设置该路由在侧边栏和面包屑中展示的名字
title: 'title' // 设置该路由在侧边栏和面包屑中展示的名字
icon: 'svg-name' // 设置该路由的图标,对应路径src/assets/icons/svg
icon: 'svg-name' // 设置该路由的图标,对应路径src/assets/icons/svg
breadcrumb: false // 如果设置为false,则不会在breadcrumb面包屑中显示
breadcrumb: false // 如果设置为false,则不会在breadcrumb面包屑中显示
...
...
ruoyi-ui/src/views/system/menu/index.vue
浏览文件 @
abeb8d7f
...
@@ -187,6 +187,14 @@
...
@@ -187,6 +187,14 @@
</el-radio-group>
</el-radio-group>
</el-form-item>
</el-form-item>
</el-col>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
v-if=
"form.menuType == 'C'"
label=
"是否缓存"
>
<el-radio-group
v-model=
"form.isCache"
>
<el-radio
label=
"0"
>
缓存
</el-radio>
<el-radio
label=
"1"
>
不缓存
</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
</el-row>
</el-row>
</el-form>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<div
slot=
"footer"
class=
"dialog-footer"
>
...
@@ -316,6 +324,7 @@ export default {
...
@@ -316,6 +324,7 @@ export default {
menuType
:
"M"
,
menuType
:
"M"
,
orderNum
:
undefined
,
orderNum
:
undefined
,
isFrame
:
"1"
,
isFrame
:
"1"
,
isCache
:
"0"
,
visible
:
"0"
,
visible
:
"0"
,
status
:
"0"
status
:
"0"
};
};
...
...
sql/ry_202009
19
.sql
→
sql/ry_202009
20
.sql
浏览文件 @
abeb8d7f
此差异已折叠。
点击以展开。
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论