From c76e8d2677de1fe4585528eab77e4a0dfa934f80 Mon Sep 17 00:00:00 2001 From: kuaifan Date: Fri, 8 Jul 2022 09:14:56 +0800 Subject: [PATCH] no message --- resources/assets/js/functions/web.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/resources/assets/js/functions/web.js b/resources/assets/js/functions/web.js index 9951e9ded..9f784c484 100755 --- a/resources/assets/js/functions/web.js +++ b/resources/assets/js/functions/web.js @@ -729,10 +729,16 @@ }, messageWarning(msg) { + if (typeof msg === "string" && msg === "Network exception") { + return; + } $A.Message.warning($A.L(msg)); }, messageError(msg) { + if (typeof msg === "string" && msg === "Network exception") { + return; + } $A.Message.error($A.L(msg)); },