diff --git a/Yi.Ai.Vue3/src/config/design.ts b/Yi.Ai.Vue3/src/config/design.ts
index d7af973e..44995efd 100644
--- a/Yi.Ai.Vue3/src/config/design.ts
+++ b/Yi.Ai.Vue3/src/config/design.ts
@@ -1,11 +1,11 @@
-export type LayoutType = 'vertical';
+export type LayoutType = | 'vertical' | 'blankPage';
// 仿豆包折叠逻辑
-export type CollapseType =
- | 'alwaysCollapsed' // 始终折叠
- | 'followSystem' // 跟随系统视口宽度
- | 'alwaysExpanded' // 始终打开
- | 'narrowExpandWideCollapse'; // 系统视口 宽小则张,宽大则收
+export type CollapseType
+ = | 'alwaysCollapsed' // 始终折叠
+ | 'followSystem' // 跟随系统视口宽度
+ | 'alwaysExpanded' // 始终打开
+ | 'narrowExpandWideCollapse'; // 系统视口 宽小则张,宽大则收
export interface DesignConfigState {
// 系统主题
diff --git a/Yi.Ai.Vue3/src/layouts/LayoutBlankPage/index.vue b/Yi.Ai.Vue3/src/layouts/LayoutBlankPage/index.vue
new file mode 100644
index 00000000..be2aa541
--- /dev/null
+++ b/Yi.Ai.Vue3/src/layouts/LayoutBlankPage/index.vue
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
diff --git a/Yi.Ai.Vue3/src/layouts/index.vue b/Yi.Ai.Vue3/src/layouts/index.vue
index a818e995..f3894097 100644
--- a/Yi.Ai.Vue3/src/layouts/index.vue
+++ b/Yi.Ai.Vue3/src/layouts/index.vue
@@ -1,6 +1,7 @@