refactor: show namePrefix
This commit is contained in:
parent
7ffb259320
commit
0fb882b308
1 changed files with 5 additions and 1 deletions
|
|
@ -1202,7 +1202,11 @@ const emptyCreateDialog = ref(false);
|
||||||
{{
|
{{
|
||||||
props.row.customerType === 'CORP'
|
props.row.customerType === 'CORP'
|
||||||
? props.row.branch[0]?.registerName || '-'
|
? props.row.branch[0]?.registerName || '-'
|
||||||
: props.row.branch[0]?.firstName +
|
: optionStore.mapOption(
|
||||||
|
props.row.branch[0].namePrefix,
|
||||||
|
) +
|
||||||
|
' ' +
|
||||||
|
props.row.branch[0]?.firstName +
|
||||||
' ' +
|
' ' +
|
||||||
props.row.branch[0]?.lastName || '-'
|
props.row.branch[0]?.lastName || '-'
|
||||||
}}
|
}}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue