แก้ไข รายงานเครื่องราช

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-09-26 13:09:48 +07:00
parent 77a930ed78
commit a62f64b355
4 changed files with 29 additions and 8 deletions

View file

@ -6,6 +6,10 @@ const mixin = useCounterMixin();
const { date2Thai } = mixin;
export const useInsigniaDataStore = defineStore("insignia", () => {
interface OptionReport {
id: string;
title: string;
}
const roundId = ref<string>("");
const optionRound = ref<any>([]);
const isLock = ref<boolean>(false);
@ -26,6 +30,13 @@ export const useInsigniaDataStore = defineStore("insignia", () => {
{ name: "ลูกจ้างประจำ", id: "perm" },
]);
//รางาน
const optionReport = ref<OptionReport[]>([
{ id: '45', title: "บัญชีรายชื่อข้าราชการผู้ขอพระราชทานเครื่องราชอิสริยาภรณ์" },
{ id: '43', title: 'บัญชีระดับผลการประเมินผลการปฏิบัติราชการในรอบ 5 ปี' },
{ id: '44', title: 'บัญชีแสดงจำนวนชั้นตราเครื่องราชฯ' }
])
const typeReport = ref<string>("");
const titleReport = ref<string>("");
const mainTab = ref<string | undefined>("pending");
@ -153,5 +164,6 @@ export const useInsigniaDataStore = defineStore("insignia", () => {
requestId,
roleUser,
requestStatus,
optionReport,
};
});