diff --git a/src/components/func/geetest.vue b/src/components/func/geetest.vue index 253d7744..4fbe9f66 100644 --- a/src/components/func/geetest.vue +++ b/src/components/func/geetest.vue @@ -107,7 +107,7 @@ defineExpose({ displayBox }); .geetest-overlay { position: fixed; - z-index: 999; + z-index: 100; top: 0; left: 0; display: flex; @@ -115,7 +115,7 @@ defineExpose({ displayBox }); height: 100%; align-items: center; justify-content: center; - backdrop-filter: blur(10px); + backdrop-filter: blur(20px); background: rgb(0 0 0 / 50%); } diff --git a/src/components/func/loading.ts b/src/components/func/loading.ts index 7fee7c17..03cb6a83 100644 --- a/src/components/func/loading.ts +++ b/src/components/func/loading.ts @@ -11,7 +11,7 @@ import loading from "./loading.vue"; const loadingId = "tg-func-loading"; -export type LoadingParams = { show: boolean; title: string; subtitle?: string; empty?: boolean }; +export type LoadingParams = { show: boolean; title: string; subtitle: string; empty?: boolean }; /** * @description 自定义 loading 组件 diff --git a/src/components/func/loading.vue b/src/components/func/loading.vue index e823d928..50a6b033 100644 --- a/src/components/func/loading.vue +++ b/src/components/func/loading.vue @@ -6,9 +6,12 @@
@@ -111,7 +114,7 @@ defineExpose({ displayBox });
height: 100%;
align-items: center;
justify-content: center;
- backdrop-filter: blur(20px);
+ backdrop-filter: blur(10px);
background: rgb(0 0 0 / 50%);
}
@@ -150,25 +153,6 @@ defineExpose({ displayBox });
font-weight: 600;
}
-.loading-circle {
- width: 40px;
- height: 40px;
- border: 5px solid #f4d8a8;
- border-radius: 100%;
- border-top-color: transparent;
- animation: circle infinite 0.75s linear;
-}
-
-@keyframes circle {
- 0% {
- transform: rotate(0deg);
- }
-
- 100% {
- transform: rotate(360deg);
- }
-}
-
.loading-subtitle {
width: 100%;
height: 25px;
@@ -190,3 +174,76 @@ defineExpose({ displayBox });
}
}
+
+
diff --git a/src/components/main/t-postcard.vue b/src/components/main/t-postcard.vue
index 39e70a80..2959fc3d 100644
--- a/src/components/main/t-postcard.vue
+++ b/src/components/main/t-postcard.vue
@@ -5,7 +5,7 @@