หน้ารายการผู้ประเมิน => เพิ่ม tab

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-05-09 18:32:57 +07:00
parent a99119660b
commit f28baeb158
7 changed files with 472 additions and 114 deletions

View file

@ -1,8 +1,16 @@
import { defineStore } from "pinia";
import { ref } from "vue";
import { ref, reactive } from "vue";
import type { DataOptions } from "./interface/index/Main";
export const useKpiDataStore = defineStore("KPIDate", () => {
const tabMainevaluator = ref<string>("1");
const yearRound = ref<number>(new Date().getFullYear());
const formQuery = reactive({
page: 1,
pageSize: 10,
round: "",
keyword: "",
});
const tabMain = ref<string>("1");
const dataProfile = ref<any>({
profileId: null,
@ -326,5 +334,10 @@ export const useKpiDataStore = defineStore("KPIDate", () => {
excusiveIndicator2ScoreVal,
excusiveIndicatorScore,
excusiveIndicatorScoreVal,
//รายการการประเมินผลการปฏิบัติราชการระดับบุคคล
tabMainevaluator,
formQuery,
yearRound,
};
});