新增两组件
This commit is contained in:
@@ -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(() => {
|
||||
|
||||
Reference in New Issue
Block a user