fix(qualify):set default yearly
This commit is contained in:
parent
27d3e30b82
commit
af1adef8ff
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 config from "@/app.config";
|
||||
import { useCounterMixin } from "@/stores/mixin";
|
||||
import { calculateFiscalYear } from "@/utils/function";
|
||||
|
||||
import type {
|
||||
RequestPosition,
|
||||
|
|
@ -75,7 +74,7 @@ const checkDocument = ref<boolean>(false);
|
|||
const checkDisability = ref<boolean>(false);
|
||||
const announcementExam = ref<boolean>(true);
|
||||
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 roundRaw = ref<number | null>(null);
|
||||
const yearlyRaw = ref<number | null>(null);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue