refactor: add btn
This commit is contained in:
parent
e853f6bf91
commit
3ff42316cf
1 changed files with 38 additions and 1 deletions
|
|
@ -1,5 +1,12 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { EmployeeOtherCreate } from 'stores/employee/types';
|
import { EmployeeOtherCreate } from 'stores/employee/types';
|
||||||
|
import {
|
||||||
|
AddButton,
|
||||||
|
EditButton,
|
||||||
|
DeleteButton,
|
||||||
|
SaveButton,
|
||||||
|
UndoButton,
|
||||||
|
} from 'components/button';
|
||||||
|
|
||||||
defineProps<{
|
defineProps<{
|
||||||
dense?: boolean;
|
dense?: boolean;
|
||||||
|
|
@ -14,7 +21,7 @@ const employeeOther = defineModel<EmployeeOtherCreate>('employeeOther');
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<div class="col-12" v-if="employeeOther">
|
<div class="col-12" v-if="employeeOther">
|
||||||
<div class="col-12 q-pb-sm text-weight-bold text-body1">
|
<div class="col-12 row items-center q-pb-sm text-weight-bold text-body1">
|
||||||
<q-icon
|
<q-icon
|
||||||
flat
|
flat
|
||||||
size="xs"
|
size="xs"
|
||||||
|
|
@ -24,6 +31,36 @@ const employeeOther = defineModel<EmployeeOtherCreate>('employeeOther');
|
||||||
style="background-color: var(--surface-3)"
|
style="background-color: var(--surface-3)"
|
||||||
/>
|
/>
|
||||||
{{ $t('formDialogTitleFamilyHistory') }}
|
{{ $t('formDialogTitleFamilyHistory') }}
|
||||||
|
|
||||||
|
<div class="row q-ml-auto">
|
||||||
|
<UndoButton
|
||||||
|
v-if="!readonly && !!employeeOther.id && !employeeOther.statusSave"
|
||||||
|
id="btn-info-health-undo"
|
||||||
|
icon-only
|
||||||
|
@click="$emit('undo')"
|
||||||
|
type="button"
|
||||||
|
/>
|
||||||
|
<SaveButton
|
||||||
|
icon-only
|
||||||
|
id="btn-info-health-save"
|
||||||
|
v-if="!readonly && !employeeOther.statusSave"
|
||||||
|
@click="$emit('save')"
|
||||||
|
/>
|
||||||
|
<EditButton
|
||||||
|
icon-only
|
||||||
|
id="btn-info-health-edit"
|
||||||
|
v-if="!readonly && employeeOther.statusSave"
|
||||||
|
@click="$emit('edit')"
|
||||||
|
type="button"
|
||||||
|
/>
|
||||||
|
<DeleteButton
|
||||||
|
icon-only
|
||||||
|
id="btn-info-health-delete"
|
||||||
|
v-if="readonly"
|
||||||
|
@click="$emit('delete')"
|
||||||
|
type="button"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-12 row q-col-gutter-y-sm">
|
<div class="col-12 row q-col-gutter-y-sm">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue