diff --git a/src/i18n/langs/cn.js b/src/i18n/langs/cn.js
index 0ef98da19..75921f479 100644
--- a/src/i18n/langs/cn.js
+++ b/src/i18n/langs/cn.js
@@ -263,7 +263,7 @@ const cn = {
'remote_app_detail': '远程应用详情',
'update_remote_app': '更新远程应用',
'name': '名称',
- 'app_type': '应用类型',
+ 'appType': '应用类型',
'asset': '资产',
'action': '操作',
'update': '更新',
diff --git a/src/router/index.js b/src/router/index.js
index 39d9e027d..d6d7f8ed3 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -175,14 +175,14 @@ export const constantRoutes = [
children: [
{
path: 'remote-apps',
- name: 'remoteAppList',
- component: () => import('@/views/tree/index'),
+ name: 'RemoteAppList',
+ component: () => import('@/views/applications/RemoteAppList'),
meta: { title: 'RemoteApp' }
},
{
path: 'database-apps',
name: 'DatabaseAppList',
- component: () => import('@/views/tree/index'),
+ component: () => import('@/views/applications/DatabaseAppList'),
meta: { title: 'DatabaseApp' }
}
]
diff --git a/src/views/applications/DatabaseAppList.vue b/src/views/applications/DatabaseAppList.vue
new file mode 100644
index 000000000..fa47350ed
--- /dev/null
+++ b/src/views/applications/DatabaseAppList.vue
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
diff --git a/src/views/applications/RemoteAppList.vue b/src/views/applications/RemoteAppList.vue
new file mode 100644
index 000000000..c959291c0
--- /dev/null
+++ b/src/views/applications/RemoteAppList.vue
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
diff --git a/src/views/assets/CommandFilterList.vue b/src/views/assets/CommandFilterList.vue
index 75abd3b4a..1d8dea975 100644
--- a/src/views/assets/CommandFilterList.vue
+++ b/src/views/assets/CommandFilterList.vue
@@ -32,7 +32,7 @@ export default {
label: this.$t('assets.systemUser')
},
{
- prop: '',
+ prop: 'comment',
label: this.$t('assets.comment')
}
],
diff --git a/src/views/assets/PlatformList.vue b/src/views/assets/PlatformList.vue
index 5baa88a9a..8945b8c6e 100644
--- a/src/views/assets/PlatformList.vue
+++ b/src/views/assets/PlatformList.vue
@@ -21,14 +21,14 @@ export default {
label: this.$t('assets.name'),
formatter: DetailFormatter,
sortable: true,
- route: 'CommandFilterDetail'
+ route: 'PlatformDetail'
},
{
prop: 'base',
label: this.$t('assets.BasePlatform')
},
{
- prop: '',
+ prop: 'comment',
label: this.$t('assets.comment')
}
],
@@ -40,7 +40,7 @@ export default {
headerActions: {
hasDelete: false,
hasUpdate: false,
- createRoute: 'CommandFilterCreate'
+ createRoute: 'PlatformCreate'
}
}
}