diff --git a/src/views/FrontView.vue b/src/views/FrontView.vue index df2081f..3ca5696 100644 --- a/src/views/FrontView.vue +++ b/src/views/FrontView.vue @@ -3,7 +3,7 @@ import ShowApi from "@/axios/ShowApi"; import { ref } from "vue"; //众筹活动 -const activity = ref(); +const activity = ref({}); const percent = ref(); function loadParticipants() { @@ -24,7 +24,7 @@ loadParticipants();
-
+
关于{{ activity.title }}众筹
@@ -33,8 +33,7 @@ loadParticipants();
众筹状态 - 众筹中 - 已完成 + {{ activity.status == 0 ? '众筹中' : '已完成'}}