55 lines
1.2 KiB
Vue
55 lines
1.2 KiB
Vue
<script setup lang="ts">
|
|
import { ref } from "vue";
|
|
|
|
import DialogHeader from "@/components/DialogHeader.vue";
|
|
import ViewPDF from "@/modules/06_evaluate/components/viewstep/viewPDF.vue";
|
|
|
|
const props = defineProps({
|
|
pdfSrc: {
|
|
type: String,
|
|
},
|
|
urlDownloadFile: {
|
|
type: String,
|
|
},
|
|
});
|
|
const modalPerview = ref<boolean>(false);
|
|
</script>
|
|
|
|
<template>
|
|
<div class="col-12 row">
|
|
<q-space />
|
|
<q-btn
|
|
flat
|
|
round
|
|
color="primary"
|
|
icon="download"
|
|
target="_blank"
|
|
:href="props.urlDownloadFile"
|
|
>
|
|
<q-tooltip>ดาวน์โหลด</q-tooltip>
|
|
</q-btn>
|
|
<q-btn
|
|
flat
|
|
round
|
|
color="primary"
|
|
icon="mdi-fullscreen"
|
|
@click="modalPerview = true"
|
|
><q-tooltip>ดูเต็มจอ</q-tooltip></q-btn
|
|
>
|
|
</div>
|
|
<ViewPDF :pdfSrc="props.pdfSrc" />
|
|
|
|
<q-dialog v-model="modalPerview" full-width fullHeight>
|
|
<q-card>
|
|
<q-card-section>
|
|
<DialogHeader :close="() => (modalPerview = false)" />
|
|
</q-card-section>
|
|
|
|
<q-card-section class="q-pt-none">
|
|
<ViewPDF :pdfSrc="props.pdfSrc" :type="'popup'" />
|
|
</q-card-section>
|
|
</q-card>
|
|
</q-dialog>
|
|
</template>
|
|
|
|
<style scoped></style>
|