hookehuyr

fix(useCheckin): 将路由参数从type改为task_type以保持一致性

...@@ -28,7 +28,7 @@ export function useCheckin() { ...@@ -28,7 +28,7 @@ export function useCheckin() {
28 const maxCount = ref(5) 28 const maxCount = ref(5)
29 29
30 // 打卡类型 30 // 打卡类型
31 - const checkinType = computed(() => route.query.type) 31 + const checkinType = computed(() => route.query.task_type)
32 32
33 // 用于记忆不同类型的文件列表 33 // 用于记忆不同类型的文件列表
34 const fileListMemory = ref({ 34 const fileListMemory = ref({
......