diff --git a/apps/vben5/apps/app-antd/.vite/deps/_metadata.json b/apps/vben5/apps/app-antd/.vite/deps/_metadata.json new file mode 100644 index 000000000..5f0b346a8 --- /dev/null +++ b/apps/vben5/apps/app-antd/.vite/deps/_metadata.json @@ -0,0 +1,8 @@ +{ + "hash": "62932afa", + "configHash": "fdef0d8d", + "lockfileHash": "5ba0e736", + "browserHash": "cfcea6c4", + "optimized": {}, + "chunks": {} +} \ No newline at end of file diff --git a/apps/vben5/apps/app-antd/.vite/deps/package.json b/apps/vben5/apps/app-antd/.vite/deps/package.json new file mode 100644 index 000000000..3dbc1ca59 --- /dev/null +++ b/apps/vben5/apps/app-antd/.vite/deps/package.json @@ -0,0 +1,3 @@ +{ + "type": "module" +} diff --git a/apps/vben5/apps/app-antd/src/locales/langs/en-US/abp.json b/apps/vben5/apps/app-antd/src/locales/langs/en-US/abp.json index a7a462088..199e139ab 100644 --- a/apps/vben5/apps/app-antd/src/locales/langs/en-US/abp.json +++ b/apps/vben5/apps/app-antd/src/locales/langs/en-US/abp.json @@ -7,7 +7,8 @@ "user": "User", "role": "Role", "claimTypes": "Claim Types", - "securityLogs": "Security Logs" + "securityLogs": "Security Logs", + "organizationUnits": "Organization Units" } } } diff --git a/apps/vben5/apps/app-antd/src/locales/langs/zh-CN/abp.json b/apps/vben5/apps/app-antd/src/locales/langs/zh-CN/abp.json index ef6be38c5..fd9d57776 100644 --- a/apps/vben5/apps/app-antd/src/locales/langs/zh-CN/abp.json +++ b/apps/vben5/apps/app-antd/src/locales/langs/zh-CN/abp.json @@ -7,7 +7,8 @@ "user": "用户", "role": "角色", "claimTypes": "身份标识", - "securityLogs": "安全日志" + "securityLogs": "安全日志", + "organizationUnits": "组织机构" } } } diff --git a/apps/vben5/apps/app-antd/src/router/routes/modules/abp.ts b/apps/vben5/apps/app-antd/src/router/routes/modules/abp.ts index acae5784f..6fd11549e 100644 --- a/apps/vben5/apps/app-antd/src/router/routes/modules/abp.ts +++ b/apps/vben5/apps/app-antd/src/router/routes/modules/abp.ts @@ -32,7 +32,7 @@ const routes: RouteRecordRaw[] = [ path: '/manage/identity', children: [ { - component: () => import('#/views/identity/user/index.vue'), + component: () => import('#/views/identity/users/index.vue'), name: 'Users', path: '/manage/identity/users', meta: { @@ -41,7 +41,7 @@ const routes: RouteRecordRaw[] = [ }, }, { - component: () => import('#/views/identity/role/index.vue'), + component: () => import('#/views/identity/roles/index.vue'), name: 'Roles', path: '/manage/identity/roles', meta: { @@ -69,6 +69,16 @@ const routes: RouteRecordRaw[] = [ icon: 'carbon:security', }, }, + { + component: () => + import('#/views/identity/organization-units/index.vue'), + name: 'OrganizationUnits', + path: '/manage/identity/organization-units', + meta: { + title: $t('abp.manage.identity.organizationUnits'), + icon: 'clarity:organization-line', + }, + }, ], }, ], diff --git a/apps/vben5/apps/app-antd/src/views/identity/claim-types/index.vue b/apps/vben5/apps/app-antd/src/views/identity/claim-types/index.vue index 7d36dd612..4dfebe2c3 100644 --- a/apps/vben5/apps/app-antd/src/views/identity/claim-types/index.vue +++ b/apps/vben5/apps/app-antd/src/views/identity/claim-types/index.vue @@ -2,6 +2,10 @@ import { Page } from '@vben/common-ui'; import { ClaimTypeTable } from '@abp/identity'; + +defineOptions({ + name: 'IdentityClaimTypes', +});