2024-03-08 16:46:36 +07:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { ref } from "vue";
|
|
|
|
|
|
|
|
|
|
/** importComponents*/
|
2024-08-01 12:12:28 +07:00
|
|
|
import PositionSalary from "@/modules/04_registryPerson/components/detail/Salary/01_PositionSalary.vue";
|
|
|
|
|
import NotReceiveSalary from "@/modules/04_registryPerson/components/detail/Salary/02_NotReceiveSalary.vue";
|
2024-03-08 16:46:36 +07:00
|
|
|
|
|
|
|
|
const tab = ref<string>("1");
|
|
|
|
|
</script>
|
|
|
|
|
<template>
|
2024-04-23 17:56:51 +07:00
|
|
|
<div class="row items-center q-my-md">
|
|
|
|
|
<div class="text-dark row items-center q-px-md">
|
|
|
|
|
<q-icon name="mdi-account" class="q-mr-md" size="22px" />
|
|
|
|
|
<div class="text-subtitle1 text-weight-bold">ข้อมูลเงินเดือน/ค่าจ้าง</div>
|
2024-03-08 16:46:36 +07:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<q-separator />
|
|
|
|
|
<q-tabs
|
|
|
|
|
v-model="tab"
|
2024-04-23 17:56:51 +07:00
|
|
|
active-color="blue-8"
|
2024-03-11 11:25:42 +07:00
|
|
|
align="left"
|
2024-03-08 16:46:36 +07:00
|
|
|
bordered
|
2024-04-23 17:56:51 +07:00
|
|
|
narrow-indicator
|
|
|
|
|
indicator-color="transparent"
|
|
|
|
|
dense
|
|
|
|
|
class="text-grey q-pl-sm"
|
2024-03-08 16:46:36 +07:00
|
|
|
>
|
|
|
|
|
<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">
|
|
|
|
|
<PositionSalary />
|
|
|
|
|
</q-tab-panel>
|
|
|
|
|
<q-tab-panel name="2">
|
|
|
|
|
<NotReceiveSalary />
|
|
|
|
|
</q-tab-panel>
|
|
|
|
|
</q-tab-panels>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped></style>
|