diff --git a/frontend/src/models/setting/user.ts b/frontend/src/models/setting/user.ts index 2105ff30ea..546603de46 100644 --- a/frontend/src/models/setting/user.ts +++ b/frontend/src/models/setting/user.ts @@ -105,4 +105,5 @@ export interface OrgsItem { id: string; name: string; children?: OrgsItem[]; + leafNode: boolean; } diff --git a/frontend/src/router/routes/modules/apiTest.ts b/frontend/src/router/routes/modules/apiTest.ts index e2dc14d46c..3383956122 100644 --- a/frontend/src/router/routes/modules/apiTest.ts +++ b/frontend/src/router/routes/modules/apiTest.ts @@ -17,7 +17,7 @@ const ApiTest: AppRouteRecordRaw = { children: [ { path: 'index', - name: 'ApiTestIndex', + name: 'apiTestIndex', component: () => import('@/views/api-test/index.vue'), meta: { roles: ['*'], diff --git a/frontend/src/router/routes/modules/bugManagement.ts b/frontend/src/router/routes/modules/bugManagement.ts index 71aedbb43b..f2565b10e8 100644 --- a/frontend/src/router/routes/modules/bugManagement.ts +++ b/frontend/src/router/routes/modules/bugManagement.ts @@ -17,7 +17,7 @@ const BugManagement: AppRouteRecordRaw = { children: [ { path: 'index', - name: 'BugManagementIndex', + name: 'bugManagementIndex', component: () => import('@/views/bug-management/index.vue'), meta: { roles: ['*'], diff --git a/frontend/src/router/routes/modules/featureTest.ts b/frontend/src/router/routes/modules/featureTest.ts index a9fbc28129..cd1995aa36 100644 --- a/frontend/src/router/routes/modules/featureTest.ts +++ b/frontend/src/router/routes/modules/featureTest.ts @@ -17,7 +17,7 @@ const FeatureTest: AppRouteRecordRaw = { children: [ { path: 'index', - name: 'FeatureTestIndex', + name: 'featureTestIndex', component: () => import('@/views/feature-test/index.vue'), meta: { roles: ['*'], diff --git a/frontend/src/router/routes/modules/uiTest.ts b/frontend/src/router/routes/modules/uiTest.ts index 663a965223..3e1eab1888 100644 --- a/frontend/src/router/routes/modules/uiTest.ts +++ b/frontend/src/router/routes/modules/uiTest.ts @@ -17,7 +17,7 @@ const UiTest: AppRouteRecordRaw = { children: [ { path: 'index', - name: 'UiTestIndex', + name: 'uiTestIndex', component: () => import('@/views/ui-test/index.vue'), meta: { roles: ['*'], diff --git a/frontend/src/router/routes/modules/workbench.ts b/frontend/src/router/routes/modules/workbench.ts index 33d7d3f59b..adf014c8ef 100644 --- a/frontend/src/router/routes/modules/workbench.ts +++ b/frontend/src/router/routes/modules/workbench.ts @@ -17,7 +17,7 @@ const Workbench: AppRouteRecordRaw = { children: [ { path: 'index', - name: 'WorkbenchIndex', + name: 'workbenchIndex', component: () => import('@/views/workbench/index.vue'), meta: { roles: ['*'], diff --git a/frontend/src/views/setting/system/log/components/logCards.vue b/frontend/src/views/setting/system/log/components/logCards.vue index 5ce46e2bc4..ccfdf7e6c8 100644 --- a/frontend/src/views/setting/system/log/components/logCards.vue +++ b/frontend/src/views/setting/system/log/components/logCards.vue @@ -76,7 +76,11 @@