diff --git a/docs/architecture-strategy.md b/docs/architecture-strategy.md index 5dca897..a74f7b8 100644 --- a/docs/architecture-strategy.md +++ b/docs/architecture-strategy.md @@ -130,7 +130,7 @@ src/ │ ├── components/ │ ├── sections/ ← 新增:Section / Shelf 層 -│ │ ├── SectionSearchPanel.vue +│ │ ├ │ │ ├── SectionDataTable.vue │ │ └── SectionFormPanel.vue │ │ diff --git a/docs/frontend-layering.md b/docs/frontend-layering.md index 67a4896..6dff596 100644 --- a/docs/frontend-layering.md +++ b/docs/frontend-layering.md @@ -114,7 +114,6 @@ router -> App.vue -> AppShell -> layout -> view -> page component -> section -> `components/sections` 是頁面區塊容器: -- [SectionSearchPanel.vue](../src/components/sections/SectionSearchPanel.vue) - [SectionDataTable.vue](../src/components/sections/SectionDataTable.vue) - [SectionFormPanel.vue](../src/components/sections/SectionFormPanel.vue) - [SectionFormPage.vue](../src/components/sections/SectionFormPage.vue) diff --git a/src/components/maint/EditableGrid.vue b/src/components/maint/EditableGrid.vue index 36f7276..50616ce 100644 --- a/src/components/maint/EditableGrid.vue +++ b/src/components/maint/EditableGrid.vue @@ -9,7 +9,7 @@ 筆數 {{ filteredStudents.length }} 條件搜尋顯示條件搜尋 @@ -19,37 +19,31 @@ -
學號
-
-
姓名
-
-
系所
-
@@ -374,6 +368,8 @@ - - diff --git a/src/router/routes.ts b/src/router/routes.ts index 9e528eb..f09b329 100644 --- a/src/router/routes.ts +++ b/src/router/routes.ts @@ -5,7 +5,7 @@ export const routes: RouteRecordRaw[] = [ path: '/', name: 'home', component: () => import('@/views/Home.vue'), - meta: { layout: 'default', requiresAuth: true }, + meta: { layout: 'default', requiresAuth: false }, }, { path: '/settings', @@ -17,7 +17,7 @@ export const routes: RouteRecordRaw[] = [ path: '/login', name: 'login', component: () => import('@/views/Login.vue'), - meta: { layout: 'none', guestOnly: true }, + meta: { layout: 'none', guestOnly: false }, }, { path: '/single-record-maintenance', diff --git a/src/views/maint/MasterDetailA.vue b/src/views/maint/MasterDetailA.vue index e47cb25..c7cb1a4 100644 --- a/src/views/maint/MasterDetailA.vue +++ b/src/views/maint/MasterDetailA.vue @@ -1,4 +1,6 @@