fix bug
This commit is contained in:
parent
905a2ce70e
commit
69af042ee6
3 changed files with 12 additions and 6 deletions
|
|
@ -371,7 +371,7 @@ watch(
|
|||
class="photo-profile"
|
||||
v-if="props.row.avatar"
|
||||
/>
|
||||
<q-img :src="avatar" class="photo-profile" v-else"/>
|
||||
<q-img :src="avatar" class="photo-profile" v-else/>
|
||||
</q-avatar>
|
||||
</q-item-section>
|
||||
|
||||
|
|
@ -383,6 +383,7 @@ watch(
|
|||
</q-item-section>
|
||||
</q-item>
|
||||
</template>
|
||||
|
||||
<template v-else-if="col.name === 'examNumber'">
|
||||
<div class="text-weight-medium">
|
||||
{{
|
||||
|
|
@ -426,6 +427,7 @@ watch(
|
|||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template v-else-if="col.name === 'positionCandidate'">
|
||||
<div
|
||||
class="text-weight-medium"
|
||||
|
|
@ -437,6 +439,7 @@ watch(
|
|||
{{ props.row.positionCandidate }}
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template v-else-if="col.name === 'reportingDate'">
|
||||
<div class="text-weight-medium">
|
||||
{{
|
||||
|
|
@ -446,16 +449,19 @@ watch(
|
|||
}}
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template v-else-if="col.name === 'bmaOfficer'">
|
||||
<div class="text-weight-medium">
|
||||
{{ props.row.bmaOfficer }}
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template v-else-if="col.name === 'draft'">
|
||||
<div class="text-weight-medium">
|
||||
{{ props.row.draft }}
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template v-else-if="col.name === 'statusName'">
|
||||
<div class="text-weight-medium">
|
||||
{{ props.row.statusName }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue