From 21265aa9834cbb838f6d58df17eb3f08355305e8 Mon Sep 17 00:00:00 2001 From: fangfangdong Date: Fri, 2 Jun 2023 17:23:21 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=B5=84=E4=BA=A7=E5=B9=B3=E5=8F=B0?= =?UTF-8?q?=E8=AF=A6=E6=83=85=E6=B7=BB=E5=8A=A0=E8=B5=84=E4=BA=A7=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E9=A1=B5=EF=BC=88=E5=8F=AA=E6=98=BE=E7=A4=BA=E5=BD=93?= =?UTF-8?q?=E5=89=8D=E7=BB=84=E7=BB=87=E4=B8=8B=E7=9A=84=E8=B5=84=E4=BA=A7?= =?UTF-8?q?=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/i18n/langs/en.json | 1 + src/i18n/langs/ja.json | 1 + src/i18n/langs/zh.json | 1 + .../assets/Platform/PlatformDetail/Assets.vue | 39 +++++++++++++++++++ .../assets/Platform/PlatformDetail/index.vue | 8 +++- 5 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 src/views/assets/Platform/PlatformDetail/Assets.vue 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'