fix: telephoneNo can null
This commit is contained in:
parent
3c60a902b4
commit
44ad8fe08f
1 changed files with 2 additions and 2 deletions
|
|
@ -2307,11 +2307,11 @@ watch(isMainPage, () => {
|
|||
detail: [
|
||||
{
|
||||
icon: 'mdi-cellphone',
|
||||
value: props.row.branch[0].telephoneNo,
|
||||
value: props.row.branch[0]?.telephoneNo || '-',
|
||||
},
|
||||
{
|
||||
icon: 'mdi-account',
|
||||
value: props.row.personName,
|
||||
value: props.row.personName || '-',
|
||||
},
|
||||
],
|
||||
}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue