From bc56aae219a574eabfdb391d219116baaa8ba5ed Mon Sep 17 00:00:00 2001 From: 若依 <yzz_ivy@163.com> Date: 星期五, 10 七月 2020 10:28:57 +0800 Subject: [PATCH] !33 RedisCache中所有方法参数添加final,并优化list和set存取效率,添加其它常用redis方法 RedisCache中所有方法参数添加final,并优化list和set存取效率,添加其它常用redis方法 --- ruoyi-ui/src/layout/components/Navbar.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-ui/src/layout/components/Navbar.vue b/ruoyi-ui/src/layout/components/Navbar.vue index 5c4a315..22427a8 100644 --- a/ruoyi-ui/src/layout/components/Navbar.vue +++ b/ruoyi-ui/src/layout/components/Navbar.vue @@ -33,8 +33,8 @@ <router-link to="/user/profile"> <el-dropdown-item>个人中心</el-dropdown-item> </router-link> - <el-dropdown-item> - <span @click="setting = true">布局设置</span> + <el-dropdown-item @click.native="setting = true"> + <span>布局设置</span> </el-dropdown-item> <el-dropdown-item divided @click.native="logout"> <span>退出登录</span> -- Gitblit v1.9.2