Merge pull request #2562 from dataease/pr@dev@fix_plugin_log

fix(系统管理): 授权插件菜单的操作在记录日志时无法获取到菜单名称
This commit is contained in:
fit2cloud-chenyw 2022-07-04 11:12:07 +08:00 committed by GitHub
commit 1f92503fc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -155,7 +155,11 @@
<if test="type == 11">
menu_id as id ,title as name
from sys_menu
from (
select menu_id, title from sys_menu
union all
select menu_id, title from plugin_sys_menu
) plugin_union
<where>
menu_id in
<foreach collection="ids" item="id" index="index" open="(" separator="," close=")">