From 3293e2fb564fbc3cff4a9268b6595ff7f99b37b2 Mon Sep 17 00:00:00 2001
From: RuoYi <yzz_ivy@163.com>
Date: Fri, 23 May 2025 10:19:47 +0800
Subject: [PATCH] 账号密码支持自定义更新周期
---
ruoyi-ui/src/plugins/modal.js | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/ruoyi-ui/src/plugins/modal.js b/ruoyi-ui/src/plugins/modal.js
index 503a16f..99cea2e 100644
--- a/ruoyi-ui/src/plugins/modal.js
+++ b/ruoyi-ui/src/plugins/modal.js
@@ -1,6 +1,6 @@
import { Message, MessageBox, Notification, Loading } from 'element-ui'
-let loadingInstance;
+let loadingInstance
export default {
// 消息提示
@@ -41,7 +41,7 @@
},
// 错误通知
notifyError(content) {
- Notification.error(content);
+ Notification.error(content)
},
// 成功通知
notifySuccess(content) {
@@ -78,6 +78,6 @@
},
// 关闭遮罩层
closeLoading() {
- loadingInstance.close();
+ loadingInstance.close()
}
}
--
Gitblit v1.9.3