hrms-recruit/src/modules/01_exam/components/ExamPayment.vue

35 lines
1 KiB
Vue
Raw Normal View History

<template>
2023-03-16 13:55:50 +07:00
<div class="d-flex justify-content-center align-items-center min-vh-100">
<div>
<div class="text-h5 text-center text-primary q-pb-lg">ชำระคาธรรมเนยมการสอบ</div>
<div class="q-pa-nond text-center">
<div class="q-pa-md">
<q-img
src="https://www.bangkokbank.com/-/media/feature/page-content/bbl-corporate/image-carousel-slides/digital-banking/bualuang-mbanking/how-to-use/payment/others/7_en.png"
:ratio="1"
style="max-width: 500px; height: 750px"
/>
</div>
<q-uploader
url="http://localhost:4444/upload"
class="q-mx-auto"
label="กรุณาอัพโหลดหลักฐานการชำระเงิน"
flat
color="blue"
bordered
/>
</div>
</div>
</div>
</template>
<script setup lang="ts">
import { onMounted, ref } from 'vue'
</script>
2023-03-16 13:55:50 +07:00
<style lang="scss" scoped>
.q-img {
margin: 0 auto;
}
</style>