แก้ไขการแสดงผลรายการกรรมการของวินัย
This commit is contained in:
parent
568635fe65
commit
61d8e40fc2
4 changed files with 27 additions and 27 deletions
|
|
@ -281,14 +281,14 @@ watch(props.data, async () => {
|
|||
id: item.id ? item.id : "-",
|
||||
directorId: item.directorId ? item.directorId : "-",
|
||||
name: `${item.prefix}${item.firstName} ${item.lastName}`,
|
||||
prefix: item.prefix ? item.prefix : "-",
|
||||
firstName: item.firstName ? item.firstName : "-",
|
||||
lastName: item.lastName ? item.lastName : "-",
|
||||
position: item.position ? item.position : "-",
|
||||
email: item.email ? item.email : "-",
|
||||
phone: item.phone ? item.phone : "-",
|
||||
commandNo: item.commandNo ? item.commandNo : "-",
|
||||
duty: item.duty ? item.duty : "-",
|
||||
prefix: item.prefix,
|
||||
firstName: item.firstName,
|
||||
lastName: item.lastName,
|
||||
position: item.position == '' ? "-" : item.position,
|
||||
email: item.email == '' ? '-' : item.email,
|
||||
phone: item.phone == '' ? '-' : item.phone,
|
||||
commandNo: item.commandNo == '' ? '-' : item.commandNo,
|
||||
duty: item.duty == '' ? '-' : item.duty,
|
||||
check: "props",
|
||||
}));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue