hrms-mgt/src/modules/04_registryNew/components/detail/Other/Main.vue

45 lines
1.2 KiB
Vue
Raw Normal View History

<script setup lang="ts">
import { ref } from "vue";
/** importComponents*/
import OtherInformation from "@/modules/04_registryNew/components/detail/Other/01_OtherInformation.vue";
import Documentipline from "@/modules/04_registryNew/components/detail/Other/02_Document.vue";
const tab = ref<string>("1");
</script>
<template>
<div class="row items-center q-mb-lg">
<div class="text-dark row items-center text-weight-bold" style="font-size: 20px">
<q-icon name="mdi-bookmark" class="q-mr-md" />
<span>เอกสารหลกฐานและอนๆ</span>
</div>
</div>
<q-separator />
<q-tabs
v-model="tab"
dense
class="text-grey"
active-color="blue"
indicator-color="white"
align="left"
narrow-indicator
bordered
>
<q-tab name="1" label="ข้อมูลอื่นๆ" />
<q-tab name="2" label="เอกสารหลักฐาน" />
</q-tabs>
<q-separator />
<q-tab-panels v-model="tab" animated>
<q-tab-panel name="1">
<OtherInformation />
</q-tab-panel>
<q-tab-panel name="2">
<Documentipline />
</q-tab-panel>
</q-tab-panels>
</template>
<style scoped></style>