From 647af5b485e322db6515aa4d685a72315c0ef32a Mon Sep 17 00:00:00 2001 From: RuoYi <yzz_ivy@163.com> Date: 星期二, 29 十二月 2020 17:27:48 +0800 Subject: [PATCH] 菜单组件修改允许空字符串 --- ruoyi-system/src/main/resources/mapper/system/SysMenuMapper.xml | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ruoyi-system/src/main/resources/mapper/system/SysMenuMapper.xml b/ruoyi-system/src/main/resources/mapper/system/SysMenuMapper.xml index d9b6a72..9d2cd0a 100644 --- a/ruoyi-system/src/main/resources/mapper/system/SysMenuMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/SysMenuMapper.xml @@ -131,7 +131,7 @@ <if test="parentId != null">parent_id = #{parentId},</if> <if test="orderNum != null and orderNum != ''">order_num = #{orderNum},</if> <if test="path != null and path != ''">path = #{path},</if> - <if test="component != null and component != ''">component = #{component},</if> + <if test="component != null">component = #{component},</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> -- Gitblit v1.9.2