hookehuyr

fix(PointsCollector): 允许familyId接受String或Number类型

......@@ -53,7 +53,7 @@ const props = defineProps({
default: 0
},
familyId: {
type: String,
type: [String, Number],
required: true
}
})
......