แก้ ตำแหน่งเงินเดือน
This commit is contained in:
parent
a9adabb6a2
commit
2aa55bc642
1 changed files with 11 additions and 6 deletions
|
|
@ -1505,7 +1505,6 @@ watch(visibleColumns, async (count: String[], prevCount: String[]) => {
|
|||
onMounted(async () => {
|
||||
// await fetchPosition();
|
||||
await getPosition();
|
||||
await fetchType();
|
||||
// await nodeTree();
|
||||
await fetchData();
|
||||
});
|
||||
|
|
@ -2398,11 +2397,17 @@ async function fetchType() {
|
|||
hideLoader();
|
||||
});
|
||||
}
|
||||
// watch(()=>modal.value,()=>{
|
||||
// if(modal.value == true){
|
||||
// getPosition()
|
||||
// }
|
||||
// })
|
||||
watch(
|
||||
() => modal.value,
|
||||
() => {
|
||||
if (modal.value == true) {
|
||||
positionTypeOptions.value = [];
|
||||
positionLevelOptions.value = [];
|
||||
positionLevelOptionsFilter.value = [];
|
||||
fetchType();
|
||||
}
|
||||
}
|
||||
);
|
||||
</script>
|
||||
<style lang="scss">
|
||||
.modalfix {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue