diff --git a/src/i18n/langs/en.json b/src/i18n/langs/en.json
index bf84b9c3a..cc13d1199 100644
--- a/src/i18n/langs/en.json
+++ b/src/i18n/langs/en.json
@@ -469,6 +469,7 @@
"ReLoginErr": "Login time has exceeded 5 minutes, please login again"
},
"common": {
+ "Assets": "Assets",
"BatchProcessing": "Select {Number} items",
"Generate": "Generate",
"BatchProcessing": "Batch processing(select {Number} items)",
diff --git a/src/i18n/langs/ja.json b/src/i18n/langs/ja.json
index d4cbbcb90..caa2a0977 100644
--- a/src/i18n/langs/ja.json
+++ b/src/i18n/langs/ja.json
@@ -469,6 +469,7 @@
"ReLoginErr": "ログイン時間が 5 分を超えました。もう一度ログインしてください"
},
"common": {
+ "Assets": "資産",
"BatchProcessing": "選択 {Number} 項目",
"Generate": "生成",
"BatchProcessing": "一括処理(選択 {Number} 項目)",
diff --git a/src/i18n/langs/zh.json b/src/i18n/langs/zh.json
index 249f716d7..d1d8d5b16 100644
--- a/src/i18n/langs/zh.json
+++ b/src/i18n/langs/zh.json
@@ -465,6 +465,7 @@
"ReLoginErr": "登录时长已超过 5 分钟,请重新登录"
},
"common": {
+ "Assets": "资产",
"OtherRules": "其它规则",
"MatchedCount": "匹配结果",
"SelectAttrs": "选择属性",
diff --git a/src/views/assets/Platform/PlatformDetail/Assets.vue b/src/views/assets/Platform/PlatformDetail/Assets.vue
new file mode 100644
index 000000000..1fa221d48
--- /dev/null
+++ b/src/views/assets/Platform/PlatformDetail/Assets.vue
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
diff --git a/src/views/assets/Platform/PlatformDetail/index.vue b/src/views/assets/Platform/PlatformDetail/index.vue
index f1a003f92..52e7c1f3a 100644
--- a/src/views/assets/Platform/PlatformDetail/index.vue
+++ b/src/views/assets/Platform/PlatformDetail/index.vue
@@ -10,13 +10,15 @@
import { GenericDetailPage, TabPage } from '@/layout/components'
import Detail from './Detail.vue'
import Automation from './Automation.vue'
+import Assets from './Assets.vue'
export default {
components: {
GenericDetailPage,
TabPage,
Detail,
- Automation
+ Automation,
+ Assets
},
data() {
return {
@@ -30,6 +32,10 @@ export default {
title: this.$t('common.BasicInfo'),
name: 'Detail'
},
+ {
+ title: this.$t('common.Assets'),
+ name: 'Assets'
+ },
{
title: this.$t('common.Automations'),
name: 'Automation'