updated รายการเงินเดือน

This commit is contained in:
Warunee Tamkoo 2024-02-28 07:58:34 +07:00
parent 874685954c
commit 3d4acad8e5
5 changed files with 202 additions and 4 deletions

View file

@ -42,7 +42,7 @@ const itemsTabGroup = ref([
const itemsTabType = ref([
{
lable: "รายชื่อถือครอง",
lable: "รายชื่อคนครอง",
name: "tab1",
type: "PENDING",
},
@ -98,6 +98,7 @@ async function fetchKeycloakPosition() {
.then((res) => {
const data = res.data.result;
rootId.value = data.rootId;
store.rootId = data.rootId
fetchSalalyPeriod(rootId.value);
})
.catch((err) => {
@ -264,7 +265,7 @@ onMounted(async () => {
v-model="store.tabType"
vertical
dense
class="text-grey"
class="text-grey-black"
active-color="blue-5"
active-class="bg-blue-1"
indicator-color="blue-5"
@ -274,6 +275,8 @@ onMounted(async () => {
v-for="(item, index) in itemsTabType"
:key="index"
class="row"
:style="index==1?'border-top: 1px solid #ccc;':index==3?'border-bottom: 1px solid #ccc':''"
>
<q-tab
@ -346,6 +349,6 @@ onMounted(async () => {
}
.q-tabs--vertical .q-tab {
padding: 0 50px;
padding: 0 20px;
}
</style>