fix(02): admin img
This commit is contained in:
parent
b309f91ca4
commit
434d5d8bda
1 changed files with 8 additions and 8 deletions
|
|
@ -1173,10 +1173,10 @@ watch(
|
|||
<q-img
|
||||
:ratio="1"
|
||||
:src="
|
||||
props.row.userRole.includes('system')
|
||||
? '/img-admin.png'
|
||||
: props.row.profileImageUrl
|
||||
? props.row.profileImageUrl
|
||||
props.row.profileImageUrl
|
||||
? props.row.profileImageUrl
|
||||
: props.row.userRole.includes('system')
|
||||
? '/img-admin.png'
|
||||
: props.row.gender === 'male'
|
||||
? '/no-img-man.png'
|
||||
: '/no-img-female.png'
|
||||
|
|
@ -1410,10 +1410,10 @@ watch(
|
|||
$i18n.locale === 'en-US'
|
||||
? `${props.row.firstNameEN} ${props.row.lastNameEN}`.trim()
|
||||
: `${props.row.firstName} ${props.row.lastName}`.trim(),
|
||||
img: props.row.userRole.includes('system')
|
||||
? '/img-admin.png'
|
||||
: props.row.profileImageUrl
|
||||
? props.row.profileImageUrl
|
||||
img: props.row.profileImageUrl
|
||||
? props.row.profileImageUrl
|
||||
: props.row.userRole.includes('system')
|
||||
? '/img-admin.png'
|
||||
: props.row.gender === 'male'
|
||||
? '/no-img-man.png'
|
||||
: '/no-img-female.png',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue