ผังบัญชีค่าจ้างลูกจ้างประจำ => บัญชีโครงสร้าง

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-03-12 16:23:23 +07:00
parent 64683fc074
commit febf161d81
10 changed files with 896 additions and 12 deletions

View file

@ -1,3 +1,41 @@
<script setup lang="ts">
import TabStructure from "@/modules/13_salary/components/salaryEmployeeChart/TabStructure.vue";
import TabCriteris from "@/modules/13_salary/components/salaryEmployeeChart/TabCriteria.vue";
import { useSalaryEmployeeChartDataStore } from "@/modules/13_salary/store/SalaryEmployeeChart";
const store = useSalaryEmployeeChartDataStore();
</script>
<template>
<div>งบญชกจางประจำ</div>
<div class="row items-center">
<div class="toptitle text-dark row items-center q-py-xs">
งบญชาจางลกจางประจำ
</div>
</div>
<q-card flat bordered>
<q-tabs
v-model="store.mainTab"
dense
align="left"
class="text-grey"
active-color="primary"
indicator-color="primary"
>
<q-tab name="structure" label="บัญชีโครงสร้างอัตราค่าจ้าง" />
<q-tab name="criteria" label="หลักเกณฑ์" />
</q-tabs>
<q-separator />
<q-tab-panels v-model="store.mainTab" animated>
<q-tab-panel name="structure">
<TabStructure />
</q-tab-panel>
<q-tab-panel name="criteria">
<TabCriteris />
</q-tab-panel>
</q-tab-panels>
</q-card>
</template>