fix
This commit is contained in:
parent
abad3fd4fc
commit
fceabfa99c
1 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@ const router = useRouter();
|
||||||
|
|
||||||
const isData = ref<boolean>(false);
|
const isData = ref<boolean>(false);
|
||||||
|
|
||||||
async function getSurveyData() {
|
async function fetchCheckData() {
|
||||||
isData.value = false;
|
isData.value = false;
|
||||||
await http
|
await http
|
||||||
.get(config.API.summaryDetail())
|
.get(config.API.summaryDetail())
|
||||||
|
|
@ -28,7 +28,7 @@ async function getSurveyData() {
|
||||||
}
|
}
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
getSurveyData();
|
fetchCheckData();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue