ผังบัญชีค่าจ้างลูกจ้างประจำ => บัญชีโครงสร้าง
This commit is contained in:
parent
64683fc074
commit
febf161d81
10 changed files with 896 additions and 12 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue