|
@@ -97,7 +97,7 @@ import { useAppStore } from "@/store";
|
|
const appStore = useAppStore();
|
|
const appStore = useAppStore();
|
|
const route = useRoute();
|
|
const route = useRoute();
|
|
const router = useRouter();
|
|
const router = useRouter();
|
|
-const applyId = route.params.applyId;
|
|
|
|
|
|
+const { examSiteId, timePeriodId } = route.query;
|
|
const info = ref({
|
|
const info = ref({
|
|
applyId: "",
|
|
applyId: "",
|
|
applyTaskId: "",
|
|
applyTaskId: "",
|
|
@@ -122,7 +122,7 @@ const info = ref({
|
|
});
|
|
});
|
|
|
|
|
|
function _getAdmissionInfo() {
|
|
function _getAdmissionInfo() {
|
|
- getAdmissionInfo({ applyId }).then((res) => {
|
|
|
|
|
|
+ getAdmissionInfo({ examSiteId, timePeriodId }).then((res) => {
|
|
res && (info.value = res);
|
|
res && (info.value = res);
|
|
});
|
|
});
|
|
}
|
|
}
|