gdc_cmod/app/Views/v2/admin/dialog_print.php

24 lines
959 B
PHP

<dialog class="modal" :open="isDialogPrintOpen">
<template x-if="printAccessnumber">
<div class="modal-box w-11/12 max-w-7xl h-[90vh] flex flex-col p-0 overflow-hidden bg-base-100">
<!-- Header -->
<div class="flex justify-between items-center p-3 bg-base-200 border-b border-base-300">
<h3 class="font-bold text-lg flex items-center gap-2">
<i class="fa fa-print text-primary"></i>
Print Preview
<span class="badge badge-neutral text-xs" x-text="printType ? printType.toUpperCase() : ''"></span>
<span class="badge badge-ghost text-xs" x-text="printAccessnumber"></span>
</h3>
<button class="btn btn-sm btn-circle btn-ghost" @click="closePrintDialog()">
<i class="fa fa-times"></i>
</button>
</div>
<!-- Content -->
<div class="flex-1 bg-base-300 relative p-1">
<iframe :src="getPrintUrl()" class="w-full h-full rounded shadow-sm bg-white"></iframe>
</div>
</div>
</template>
</dialog>