Commit 558f4bb7 authored by 李德才's avatar 李德才

区分显示菜单和跳转菜单

parent 4062b413
...@@ -1929,4 +1929,15 @@ ...@@ -1929,4 +1929,15 @@
</sql> </sql>
</version> </version>
<version edition="76" description="添加task表字段">
<sql creator="lidecai" createDate="20200901" note="设置菜单排序默认值">
alter table AS_MENU modify GROUP_ORDER default 0;
</sql>
</version>
</update> </update>
\ No newline at end of file
...@@ -295,7 +295,7 @@ select * from AS_MENU where ID in ( ...@@ -295,7 +295,7 @@ select * from AS_MENU where ID in (
select MENU_ID from AS_ROLE_MENU where ROLE_ID in ( select MENU_ID from AS_ROLE_MENU where ROLE_ID in (
select r.ID from AS_ROLE r, AS_ROLE_USER ru where r.ID=ru.ROLE_ID and ru.USER_ID=#para(userId) select r.ID from AS_ROLE r, AS_ROLE_USER ru where r.ID=ru.ROLE_ID and ru.USER_ID=#para(userId)
) )
) order by GROUP_ORDER; ) order by GROUP_ORDER DESC;
#end #end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment