ปรับ dialog บรรจุ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-08-17 11:40:46 +07:00
parent 508fb3b02b
commit 1881aa1b2f
23 changed files with 1064 additions and 1072 deletions

View file

@ -27,6 +27,7 @@ const {
success,
messageError,
date2Thai,
dialogRemove,
} = mixin;
const selected = ref<ResponseRow[]>([]);
@ -202,7 +203,7 @@ const fecthlistRecevice = async () => {
list.push({
personalId: e.id ?? "",
citizenId: e.citizenId ?? "-",
fullname: e.prefix+e.firstname + " " + e.lastname,
fullname: e.prefix + e.firstname + " " + e.lastname,
organizationName:
e.organizationName +
" " +
@ -265,17 +266,7 @@ const openModalTree = (id: string) => {
};
const openDelete = (id: string) => {
dialogMessage(
$q,
"ลบข้อมูล",
"ต้องการทำการลบข้อมูลนี้ใช่หรือไม่",
"delete",
undefined,
"red",
async () => await fetchDataDelete(id),
undefined,
false
);
dialogRemove($q, async () => await fetchDataDelete(id));
};
const fetchDataDelete = async (id: string) => {