@@ -70,11 +87,11 @@ const logoSource = computed(() => preferences.logo.source);
/>
-
- {{ pageTitle || $t('authentication.pageTitle') }}
+
+ {{ pageTitle }}
-
- {{ pageDescription || $t('authentication.pageDesc') }}
+
+ {{ pageDescription }}
@@ -84,10 +101,15 @@ const logoSource = computed(() => preferences.logo.source);
@@ -95,10 +117,15 @@ const logoSource = computed(() => preferences.logo.source);
-
-
+
+
+
+
@@ -109,9 +136,21 @@ const logoSource = computed(() => preferences.logo.source);
background: linear-gradient(
154deg,
#07070915 30%,
- hsl(var(--primary) / 15%) 48%,
+ hsl(var(--primary) / 30%) 48%,
#07070915 64%
);
filter: blur(100px);
}
+
+.dark {
+ .login-background {
+ background: linear-gradient(
+ 154deg,
+ #07070915 30%,
+ hsl(var(--primary) / 20%) 48%,
+ #07070915 64%
+ );
+ filter: blur(100px);
+ }
+}
diff --git a/packages/effects/layouts/src/authentication/form.vue b/packages/effects/layouts/src/authentication/form.vue
index 6bf46893..80c90749 100644
--- a/packages/effects/layouts/src/authentication/form.vue
+++ b/packages/effects/layouts/src/authentication/form.vue
@@ -1,8 +1,4 @@
+
+
+
+
+
+
+
diff --git a/playground/src/layouts/index.ts b/playground/src/layouts/index.ts
index 23d79d6e..a4320780 100644
--- a/playground/src/layouts/index.ts
+++ b/playground/src/layouts/index.ts
@@ -1,8 +1,6 @@
const BasicLayout = () => import('./basic.vue');
+const AuthPageLayout = () => import('./auth.vue');
const IFrameView = () => import('@vben/layouts').then((m) => m.IFrameView);
-const AuthPageLayout = () =>
- import('@vben/layouts').then((m) => m.AuthPageLayout);
-
export { AuthPageLayout, BasicLayout, IFrameView };
diff --git a/playground/src/views/dashboard/analytics/analytics-trends.vue b/playground/src/views/dashboard/analytics/analytics-trends.vue
index 35e90276..fadfc917 100644
--- a/playground/src/views/dashboard/analytics/analytics-trends.vue
+++ b/playground/src/views/dashboard/analytics/analytics-trends.vue
@@ -55,12 +55,27 @@ onMounted(() => {
},
trigger: 'axis',
},
+ // xAxis: {
+ // axisTick: {
+ // show: false,
+ // },
+ // boundaryGap: false,
+ // data: Array.from({ length: 18 }).map((_item, index) => `${index + 6}:00`),
+ // type: 'category',
+ // },
xAxis: {
axisTick: {
show: false,
},
boundaryGap: false,
data: Array.from({ length: 18 }).map((_item, index) => `${index + 6}:00`),
+ splitLine: {
+ lineStyle: {
+ type: 'solid',
+ width: 1,
+ },
+ show: true,
+ },
type: 'category',
},
yAxis: [
@@ -69,7 +84,10 @@ onMounted(() => {
show: false,
},
max: 80_000,
-
+ splitArea: {
+ show: true,
+ },
+ splitNumber: 4,
type: 'value',
},
],