7336_devToTest #354

Merged
alexm merged 359 commits from 7336_devToTest into test 2024-05-07 06:34:00 +00:00
2 changed files with 10 additions and 1 deletions
Showing only changes of commit 71a4a20f20 - Show all commits

View File

@ -9,6 +9,10 @@ const $props = defineProps({
type: String,
default: '',
},
isHimself: {
type: Boolean,
default: false,
},
});
const emit = defineEmits(['onSubmit']);
@ -36,6 +40,7 @@ const closeForm = () => {
v-model="reasonFormData"
type="textarea"
autogrow
:disable="!isHimself"
/>
</template>
</FormPopup>

View File

@ -609,7 +609,11 @@ onMounted(async () => {
<WorkerTimeForm v-bind="workerTimeFormProps" @on-data-saved="updateData()" />
</QDialog>
<QDialog ref="workerTimeReasonFormDialogRef">
<WorkerTimeReasonForm @on-submit="isUnsatisfied($event)" :reason="reason" />
<WorkerTimeReasonForm
@on-submit="isUnsatisfied($event)"
:reason="reason"
:is-him-self="isHimSelf"
/>
</QDialog>
</QPage>
</template>