แก้ไขการแสดงผลรายการกรรมการของวินัย

This commit is contained in:
Warunee Tamkoo 2024-01-24 16:22:39 +07:00
parent 568635fe65
commit 61d8e40fc2
4 changed files with 27 additions and 27 deletions

View file

@ -295,8 +295,8 @@ export const useInvestigateDisStore = defineStore(
firstName: e.firstName,
lastName: e.lastName,
position: e.position,
email: e.email,
phone: e.phone,
email: e.email == '' ? '-' : e.email,
phone: e.phone == '' ? '-' : e.phone,
}));
rows2.value = datalistDirector;
selected.value = rows2.value;