แก้ 1 => 1.1

This commit is contained in:
setthawutttty 2024-10-18 13:22:42 +07:00
parent 55c5542ef9
commit 8dadcb450a

View file

@ -47,11 +47,11 @@ const commandYear = ref<number>(new Date().getFullYear());
const commandAffectDate = ref<Date | null>(null); //
const commandExcecuteDate = ref<Date | null>(null); //
const group = ref<string>("GROUP1"); //
const group = ref<string>("GROUP1.1"); //
const isCheckOrgPublishDate = ref<boolean>(false); //
const groupDataOp = ref<DataOption[]>([
{
id: "GROUP1",
id: "GROUP1.1",
name: "กลุ่มที่ 1.1 : ปฏิบัติงาน ชำนาญงาน ปฏิบัติการ ชำนาญการ",
},
{
@ -163,7 +163,7 @@ function closeModal() {
commandYear.value = new Date().getFullYear();
commandAffectDate.value = null;
commandExcecuteDate.value = null;
group.value = "GROUP1";
group.value = "GROUP1.1";
isCheckOrgPublishDate.value = false;
rows.value = [];
selected.value = [];
@ -235,7 +235,7 @@ watch(modal, async () => {
if (isOfficer.value) {
group.value = "GROUP1.2";
groupDataOp.value = groupDataOp.value.filter(
(item) => item.id !== "GROUP1"
(item) => item.id !== "GROUP1.1"
);
}
getPerson();