แก้ไข รายงานเครื่องราช
This commit is contained in:
parent
77a930ed78
commit
a62f64b355
4 changed files with 29 additions and 8 deletions
|
|
@ -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,
|
||||
};
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue