新增两组件

This commit is contained in:
2025-12-18 15:36:43 +08:00
parent 391d34cc10
commit e6ae3c4a28
28 changed files with 3425 additions and 154 deletions

View File

@@ -53,6 +53,11 @@ const props = defineProps({
period: {
type: String,
required: true
},
// 维度id身份证 / cell手机号
dimension: {
type: String,
default: 'id'
}
})
@@ -69,7 +74,9 @@ const COLORS = [
]
// 获取非银机构数详情
const nbankOrgs = computed(() => getNBankOrgDetails(props.data, props.period))
const nbankOrgs = computed(() =>
getNBankOrgDetails(props.data, props.period, props.dimension)
)
// 计算非银机构总数
const nbankTotal = computed(() => {