From b5b8d941f32395cf968cda40852382f2b0614a13 Mon Sep 17 00:00:00 2001 From: 也曾为你、像超人 <1553592282@qq.com> Date: 星期二, 17 五月 2022 10:08:37 +0800 Subject: [PATCH] update ruoyi-system/src/main/resources/mapper/system/SysOperLogMapper.xml. 问题:查业务类型为其他(businessType = 0)的数据时,会查到所有数据 --- ruoyi-ui/src/views/register.vue | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ruoyi-ui/src/views/register.vue b/ruoyi-ui/src/views/register.vue index 7ee0a79..5bda989 100644 --- a/ruoyi-ui/src/views/register.vue +++ b/ruoyi-ui/src/views/register.vue @@ -61,7 +61,7 @@ </el-form> <!-- 底部 --> <div class="el-register-footer"> - <span>Copyright © 2018-2021 ruoyi.vip All Rights Reserved.</span> + <span>Copyright © 2018-2022 ruoyi.vip All Rights Reserved.</span> </div> </div> </template> @@ -127,7 +127,8 @@ register(this.registerForm).then(res => { const username = this.registerForm.username; this.$alert("<font color='red'>恭喜你,您的账号 " + username + " 注册成功!</font>", '系统提示', { - dangerouslyUseHTMLString: true + dangerouslyUseHTMLString: true, + type: 'success' }).then(() => { this.$router.push("/login"); }).catch(() => {}); -- Gitblit v1.9.2