This commit is contained in:
Warunee Tamkoo 2025-03-19 12:34:49 +07:00
parent 98acdd66bf
commit ced0326a49
2 changed files with 56 additions and 0 deletions

View file

@ -20,6 +20,8 @@ const Page01_Detail = () =>
// edit
const EditListPage = () =>
import("@/modules/04_registryPerson/views/edit/list.vue");
const EditListSalaryPage = () =>
import("@/modules/04_registryPerson/views/edit/salary.vue");
export default [
{
@ -135,4 +137,14 @@ export default [
Role: "STAFF",
},
},
{
path: "/registry/edit/salary/:id",
name: "registryEditSalary",
component: EditListSalaryPage,
meta: {
Auth: true,
Key: "SYS_REGISTRY_EDIT",
Role: "STAFF",
},
},
];

View file

@ -0,0 +1,44 @@
<script setup lang="ts">
import { ref, reactive, onMounted, watch, defineAsyncComponent } from "vue";
import { useQuasar } from "quasar";
import http from "@/plugins/http";
import config from "@/app.config";
import { useRegistryNewDataStore } from "@/modules/04_registryPerson/store";
import { useCounterMixin } from "@/stores/mixin";
import { useRoute, useRouter } from "vue-router";
/** importType*/
import type {
DataNodeData,
QueryParams,
} from "@/modules/04_registryPerson/interface/request/Main";
import type {
DataPerson,
DataType,
} from "@/modules/04_registryPerson/interface/response/Main";
const $q = useQuasar();
const store = useRegistryNewDataStore();
const { showLoader, hideLoader, messageError } = useCounterMixin();
const route = useRoute();
const router = useRouter();
const empType = ref<string>("officer"); // officer / employee / perm
const dataPersonMain = ref<DataPerson[]>([]); //
const isLoad = ref<boolean>(false); //
/** hook เมื่อมีการเรียกใช้ Components*/
onMounted(async () => {});
</script>
<template>
<div class="row items-center q-gutter-sm q-mb-xs">
<div class="toptitle text-dark row items-center q-py-xs">
รายการประวตำแหน/เงนเดอน
</div>
</div>
</template>
<style scoped></style>