From 0bd1a4d6a9893e45438505514a063d9deee91f21 Mon Sep 17 00:00:00 2001
From: Xingchen Song(宋星辰) <xingchensong1996@163.com>
Date: 星期二, 11 六月 2024 14:00:10 +0800
Subject: [PATCH] [fix] better solution for handling empty result (#1796)

---
 web-pages/src/store/modules/common.js |   16 ++--------------
 1 files changed, 2 insertions(+), 14 deletions(-)

diff --git a/web-pages/src/store/modules/common.js b/web-pages/src/store/modules/common.js
index f49ea0a..2a7def3 100644
--- a/web-pages/src/store/modules/common.js
+++ b/web-pages/src/store/modules/common.js
@@ -1,19 +1,7 @@
 const common = {
-    state: {
-        isLoading: false,
-        loadingText: '',
-        loadingSpinner: '',
-        loadingBackground: ''
-    },
+    state: {},
 
-    mutations: {
-        SET_IS_LOADING: (state, { isLoading, loadingText, loadingSpinner, loadingBackground }) => {
-            state.isLoading = isLoading
-            state.loadingText = loadingText || '鍔犺浇涓�...'
-            state.loadingSpinner = loadingSpinner || 'icon-loading-1'
-            state.loadingBackground = loadingBackground || 'rgba(0, 0, 0, 0.8)'
-        }
-    }
+    mutations: {}
 }
 
 export default common

--
Gitblit v1.9.1