ประกาศเกษียณอายุราชการ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-09-19 16:45:07 +07:00
parent 1530da36cf
commit f592008bbe
6 changed files with 438 additions and 580 deletions

View file

@ -235,13 +235,15 @@ const addNote = async (body: any) => {
await http
.put(config.API.noteAdd(props.roundId), body)
.then(() => {
success($q, "เพิ่มราชชื่อสำเร็จ");
success($q, "บันทึกข้อมูลสำเร็จ");
})
.catch((err) => {
messageError($q, err);
})
.finally(() => {
props.close();
if (props.close) {
props.close();
}
});
}
};