{{ item.name === '赋能场景' ? '典型赋能场景' : '打包模式' }}
@@ -15,26 +20,55 @@
-
-
+
+
-
@@ -43,357 +77,382 @@
diff --git a/front/src/views/home/integrationServicesDetails.vue b/front/src/views/home/integrationServicesDetails.vue
index 836ed89c..af1ad0d3 100644
--- a/front/src/views/home/integrationServicesDetails.vue
+++ b/front/src/views/home/integrationServicesDetails.vue
@@ -96,6 +96,21 @@
>
{{ i == 0 ? '基础设施' : i == 1 ? '组件服务' : '数据资源' }}
+
+
+ 共
+ {{
+ i == 0
+ ? infrastructureCount
+ : i == 1
+ ? componentCount
+ : dataSourceCount
+ }}条数据,示例数据如下:
+
+
@@ -171,6 +186,9 @@
const solution = ref([])
const step = ref([])
const bgImg = ref('')
+ const dataSourceCount = ref(0)
+ const infrastructureCount = ref(0)
+ const componentCount = ref(0)
const id = router.currentRoute.value.query.id
document.documentElement.style.transition = 'all 0.3s ease'
document.documentElement.scrollTop = 0
@@ -283,6 +301,9 @@
return message.error(res.data.msg)
}
detailInfoObj.value = res.data.data || {}
+ dataSourceCount.value = res.data.data.dataSourceCount || 0
+ infrastructureCount.value = res.data.data.infrastructureCount|| 0
+ componentCount.value = res.data.data.componentCount || 0
// 资源属性
let fuseAttrList = res.data.data.fuseAttrList || []
// 融合关系
@@ -667,6 +688,8 @@
// width: 100%;
font-size: 16px;
}
+ .data-count {
+ }
}
.name-box {