Add AgentCompetenceGradeDetailPage
This commit is contained in:
parent
82a0cf8daa
commit
9674abfa94
|
|
@ -17,9 +17,11 @@ const dashboardStore = useDashboardStore();
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
agentRole: string;
|
agentRole: string;
|
||||||
courseSlug: string;
|
courseSlug: string;
|
||||||
|
competenceCertificateId: string;
|
||||||
|
courseSessionId: string;
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
log.debug("AgentStatisticParentPage created", props);
|
log.debug("AgentCompetenceGradeDetailPage created", props);
|
||||||
|
|
||||||
const loading = ref(true);
|
const loading = ref(true);
|
||||||
const courseId = ref<string | undefined>(undefined);
|
const courseId = ref<string | undefined>(undefined);
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,6 @@ import { useDashboardStore } from "@/stores/dashboard";
|
||||||
import LoadingSpinner from "@/components/ui/LoadingSpinner.vue";
|
import LoadingSpinner from "@/components/ui/LoadingSpinner.vue";
|
||||||
import _ from "lodash";
|
import _ from "lodash";
|
||||||
import { percentToRoundedGrade } from "@/services/assignmentService";
|
import { percentToRoundedGrade } from "@/services/assignmentService";
|
||||||
import { a } from "vitest/dist/suite-BWgaIsVn";
|
|
||||||
|
|
||||||
const dashboardStore = useDashboardStore();
|
const dashboardStore = useDashboardStore();
|
||||||
|
|
||||||
|
|
@ -19,7 +18,7 @@ const props = defineProps<{
|
||||||
courseSlug: string;
|
courseSlug: string;
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
log.debug("AgentStatisticParentPage created", props);
|
log.debug("AgentCompetenceGradePage created", props);
|
||||||
|
|
||||||
const loading = ref(true);
|
const loading = ref(true);
|
||||||
const courseId = ref<string | undefined>(undefined);
|
const courseId = ref<string | undefined>(undefined);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue