Merge pull request #1511 from Frappet/fix/recruiting
fix(qualify):set default yearly
This commit is contained in:
commit
1f52c9772a
1 changed files with 1 additions and 2 deletions
|
|
@ -8,7 +8,6 @@ import { useRouter, useRoute } from "vue-router";
|
||||||
import http from "@/plugins/http";
|
import http from "@/plugins/http";
|
||||||
import config from "@/app.config";
|
import config from "@/app.config";
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
import { calculateFiscalYear } from "@/utils/function";
|
|
||||||
|
|
||||||
import type {
|
import type {
|
||||||
RequestPosition,
|
RequestPosition,
|
||||||
|
|
@ -75,7 +74,7 @@ const checkDocument = ref<boolean>(false);
|
||||||
const checkDisability = ref<boolean>(false);
|
const checkDisability = ref<boolean>(false);
|
||||||
const announcementExam = ref<boolean>(true);
|
const announcementExam = ref<boolean>(true);
|
||||||
const round = ref<number>(1);
|
const round = ref<number>(1);
|
||||||
const yearly = ref<number>(calculateFiscalYear(new Date()));
|
const yearly = ref<number>(new Date().getFullYear());
|
||||||
const nameRaw = ref<number | null>(null);
|
const nameRaw = ref<number | null>(null);
|
||||||
const roundRaw = ref<number | null>(null);
|
const roundRaw = ref<number | null>(null);
|
||||||
const yearlyRaw = ref<number | null>(null);
|
const yearlyRaw = ref<number | null>(null);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue