完善我的成长

This commit is contained in:
kron
2026-02-10 11:47:09 +08:00
parent 303e1830d3
commit 812879d252
3 changed files with 26 additions and 49 deletions

View File

@@ -16,8 +16,8 @@ const total = ref(0);
onLoad(async (options) => {
if (options.id) {
const result = await getPractiseAPI(options.id);
arrows.value = result.arrows;
total.value = result.completed_arrows;
arrows.value = result.details;
total.value = result.details.length;
}
});
</script>