ปรับวินัย ในส่วนของกรรมการ

This commit is contained in:
Warunee Tamkoo 2023-12-27 15:51:21 +07:00
parent 6e1a72db63
commit e0704ea359
3 changed files with 27 additions and 13 deletions

View file

@ -96,8 +96,8 @@ export const useDisciplineDirectorDataStore = defineStore(
id: item.id,
fullName: `${item.prefix}${item.firstName} ${item.lastName}`,
position: item.position,
email: item.email,
phone: item.phone,
email: item.email ? item.email : '-',
phone: item.phone ? item.phone : '-',
totalInvestigate: item.totalInvestigate,
totalDisciplinary: item.totalDisciplinary,
})