updated เงินเดือน

This commit is contained in:
Warunee Tamkoo 2024-02-28 15:52:08 +07:00
parent 16a6a4255b
commit 44d22a9b13
4 changed files with 32 additions and 56 deletions

View file

@ -62,6 +62,8 @@ async function getRound() {
? roundOptions.value[0]
: "");
store.roundMainCode = roundFilter.value.shortCode;
await getSnap(roundFilter.value.shortCode);
await getAgency(roundFilter.value.revisionId);
await getAgencyPosition(roundFilter.value.revisionId);
@ -85,7 +87,7 @@ async function getRound() {
/** function เรียกรอบ*/
function getSnap(code: string) {
snapOptions.value =
code === "OCT"
code == "OCT"
? [
{
id: "SNAP1",
@ -210,6 +212,8 @@ async function onChangeRound() {
roundFilter.value.id,
snapFilter.value
);
store.tabType = "PENDING";
store.roundMainCode = roundFilter.value.shortCode
}
}