เพิ่ม -
This commit is contained in:
parent
612cd87689
commit
389b5ee30d
1 changed files with 13 additions and 7 deletions
|
|
@ -415,19 +415,23 @@ const openModalCalendar = (rows: any) => {
|
|||
{{ props.rowIndex + 1 }}
|
||||
</q-td>
|
||||
<q-td key="fullname" :props="props">
|
||||
{{ props.row.fullname }}
|
||||
{{ props.row.fullname ? props.row.fullname : "-" }}
|
||||
</q-td>
|
||||
<q-td key="realReason" :props="props">
|
||||
{{ props.row.realReason }}
|
||||
{{ props.row.realReason ? props.row.realReason : "-" }}
|
||||
</q-td>
|
||||
<q-td key="notExitFactor" :props="props">
|
||||
{{ props.row.notExitFactor }}
|
||||
{{ props.row.notExitFactor ? props.row.notExitFactor : "-" }}
|
||||
</q-td>
|
||||
<q-td key="futureWork" :props="props">
|
||||
{{ props.row.futureWork ? "ใช่" : "ไม่" }}
|
||||
</q-td>
|
||||
<q-td key="futureWorkReason" :props="props">
|
||||
{{ props.row.futureWorkReason }}
|
||||
{{
|
||||
props.row.futureWorkReason
|
||||
? props.row.futureWorkReason
|
||||
: "-"
|
||||
}}
|
||||
</q-td>
|
||||
<q-td key="havejob" :props="props">
|
||||
{{ props.row.havejob ? "ใช่" : "ไม่" }}
|
||||
|
|
@ -435,16 +439,18 @@ const openModalCalendar = (rows: any) => {
|
|||
|
||||
<q-td key="havejobReason" :props="props">
|
||||
<div class="table_ellipsis">
|
||||
{{ props.row.havejobReason }}
|
||||
{{
|
||||
props.row.havejobReason ? props.row.havejobReason : "-"
|
||||
}}
|
||||
</div>
|
||||
</q-td>
|
||||
<q-td key="appointDate" :props="props">
|
||||
{{
|
||||
props.row.appointDate == null ? "-" : props.row.appointDate
|
||||
props.row.appointDate ? props.row.appointDate : "-"
|
||||
}}
|
||||
</q-td>
|
||||
<q-td key="datetext" :props="props">
|
||||
{{ props.row.datetext }}
|
||||
{{ props.row.datetext ? props.row.datetext : "-" }}
|
||||
</q-td>
|
||||
</q-tr>
|
||||
</template>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue