60 lines
2.1 KiB
Vue
60 lines
2.1 KiB
Vue
<script setup lang="ts">
|
|
import { useRouter } from "vue-router";
|
|
const router = useRouter();
|
|
|
|
/**
|
|
* ฟังก์ชัน Redirect ไปหน้ารายงานที่เลือก
|
|
* @param type ประเภทรายงาน
|
|
*/
|
|
function nextPage(type: string) {
|
|
router.push(`/insignia/report/${type}`);
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="toptitle text-dark col-12 row items-center">
|
|
รายงานเครื่องราชอิสริยาภรณ์
|
|
</div>
|
|
<div>
|
|
<q-card flat bordered class="col-12 q-mt-sm">
|
|
<div class="q-pa-md">
|
|
<q-item clickable @click="nextPage('45')" dense class="hover-green">
|
|
<q-item-section avatar>
|
|
<q-icon color="primary" name="mdi-file" size="xs" />
|
|
</q-item-section>
|
|
<q-item-section class="text-dark">
|
|
บัญชีรายชื่อข้าราชการผู้ขอพระราชทานเครื่องราชอิสริยาภรณ์
|
|
</q-item-section>
|
|
</q-item>
|
|
|
|
<q-item clickable @click="nextPage('43')" dense class="hover-green">
|
|
<q-item-section avatar>
|
|
<q-icon color="primary" name="mdi-file" size="xs" />
|
|
</q-item-section>
|
|
<q-item-section class="text-dark">
|
|
บัญชีระดับผลการประเมินผลการปฏิบัติราชการในรอบ 5 ปี
|
|
</q-item-section>
|
|
</q-item>
|
|
|
|
<q-item clickable @click="nextPage('44')" dense class="hover-green">
|
|
<q-item-section avatar>
|
|
<q-icon color="primary" name="mdi-file" size="xs" />
|
|
</q-item-section>
|
|
<q-item-section class="text-dark">
|
|
บัญชีแสดงจำนวนชั้นตราเครื่องราชฯ
|
|
</q-item-section>
|
|
</q-item>
|
|
</div>
|
|
</q-card>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scope>
|
|
.q-item.hover-green:hover {
|
|
background-color: #d5f1ee57;
|
|
border-radius: 2px;
|
|
}
|
|
.q-item.hover-green {
|
|
padding: 10px;
|
|
}
|
|
</style>
|