From 7cfd25aebe5869244e40dbbcd6384f115f35e66e Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期三, 14 六月 2023 09:37:21 +0800
Subject: [PATCH] Merge branch 'master' into positec
---
src/utils/asyncLoadComponent.jsx | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/src/utils/asyncLoadComponent.jsx b/src/utils/asyncLoadComponent.jsx
index 74929c1..2d1bcd3 100644
--- a/src/utils/asyncLoadComponent.jsx
+++ b/src/utils/asyncLoadComponent.jsx
@@ -21,12 +21,18 @@
this.setState({component})
}
+ componentWillUnmount () {
+ this.setState = () => {
+ return
+ }
+ }
+
render() {
const C = this.state.component
return C ?
<C {...this.props} /> :
- <Spin style={{position: 'fixed', left: 'calc(50vw - 22px)', top: 'calc(50vh - 70px)'}} size="large" />
+ <Spin style={{position: 'fixed', left: 'calc(50vw - 22px)', top: 'calc(50vh - 70px)', zIndex: 10}} size="large" />
}
}
}
\ No newline at end of file
--
Gitblit v1.8.0