diff --git a/src/i18n/langs/cn.json b/src/i18n/langs/cn.json
index 11b2932dc..0356fbd80 100644
--- a/src/i18n/langs/cn.json
+++ b/src/i18n/langs/cn.json
@@ -426,7 +426,7 @@
"options": "选项",
"taskName": "任务名称",
"dateStart": "开始日期",
- "versionDetail": ""
+ "versionDetail": "版本详情"
},
"perms": {
"assetPermissions": "资产授权",
diff --git a/src/views/xpack/Organization.vue b/src/views/xpack/Organization.vue
deleted file mode 100644
index 79d434ce4..000000000
--- a/src/views/xpack/Organization.vue
+++ /dev/null
@@ -1,13 +0,0 @@
-
- hello
-
-
-
-
-
diff --git a/src/views/xpack/org/OrganizationDetail/index.vue b/src/views/xpack/org/OrganizationDetail/index.vue
new file mode 100644
index 000000000..c30243272
--- /dev/null
+++ b/src/views/xpack/org/OrganizationDetail/index.vue
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/xpack/router.js b/src/views/xpack/router.js
index 70a305604..0744f8b18 100644
--- a/src/views/xpack/router.js
+++ b/src/views/xpack/router.js
@@ -24,6 +24,33 @@ export default {
component: () => import('@/views/xpack/GatherUser'),
name: 'GatherUser',
meta: { title: 'GatherUser' }
+ },
+ {
+ path: 'orgs',
+ component: () => import('@/views/xpack/org/OrganizationList'),
+ name: 'OrganizationList',
+ meta: { title: 'OrganizationList' }
+ },
+ {
+ path: 'orgs/create',
+ component: () => import('@/views/xpack/org/OrganizationCreateUpdate'),
+ name: 'OrganizationCreate',
+ hidden: true,
+ meta: { title: 'OrganizationCreate', activeMenu: '/xpack/orgs', action: 'create' }
+ },
+ {
+ path: 'orgs/:id/update',
+ component: () => import('@/views/xpack/org/OrganizationCreateUpdate'),
+ name: 'OrganizationUpdate',
+ hidden: true,
+ meta: { title: 'OrganizationUpdate', activeMenu: '/xpack/orgs', action: 'update' }
+ },
+ {
+ path: 'orgs/:id',
+ component: () => import('@/views/xpack/org/OrganizationDetail/index'),
+ name: 'OrganizationDetail',
+ hidden: true,
+ meta: { title: 'OrganizationDetail', activeMenu: '/xpack/orgs', action: 'detail' }
}
]
}