From 7b6fdb3a893275ff82ba5c868287a1e12dcd75f1 Mon Sep 17 00:00:00 2001
From: RuoYi <yzz_ivy@163.com>
Date: Sun, 27 Apr 2025 11:56:21 +0800
Subject: [PATCH] remove all semicolons
---
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