เงินเดือน => premission รายการเลื่อนเงินเดือนข้าราชการ ฯ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-08-13 11:48:45 +07:00
parent dcdc8c5d4b
commit 8bb6fedd32
5 changed files with 97 additions and 50 deletions

View file

@ -1,5 +1,5 @@
<script setup lang="ts">
import { onMounted, ref, nextTick } from "vue";
import { onMounted, ref } from "vue";
import { useQuasar } from "quasar";
import config from "@/app.config";
import http from "@/plugins/http";
@ -47,12 +47,9 @@ const isDisable = ref<boolean>(false);
const page = ref<number>(1);
const pageSize = ref<number>(50);
const lastPage = ref<number>(0);
const loading = ref(false);
const nextPage = ref<number>(1);
/**function เรียกข้อมูลรอบการขึ้นเงินเดือน*/
function getRound() {
showLoader();
isDisable.value = false;
http
.get(
@ -100,9 +97,6 @@ function getRound() {
})
.catch((e) => {
messageError($q, e);
})
.finally(() => {
hideLoader();
});
}