SIT ระบบเงินเดือน/ค่าจ้าง>>เลื่อนค่าจ้าง ลูกจ้างฯ (Check Box แก้ไขคุณสมบัติ)
This commit is contained in:
parent
f9f1bff20e
commit
10bccab4b7
1 changed files with 5 additions and 5 deletions
|
|
@ -1,5 +1,5 @@
|
|||
<script setup lang="ts">
|
||||
import { ref, watch } from "vue";
|
||||
import { ref, watch } from "vue";
|
||||
import { useQuasar } from "quasar";
|
||||
|
||||
import { useCounterMixin } from "@/stores/mixin";
|
||||
|
|
@ -83,10 +83,10 @@ function onSubmit() {
|
|||
watch(
|
||||
() => modal.value,
|
||||
() => {
|
||||
isPunish.value = props.isPunish;
|
||||
isSuspension.value = props.isSuspension;
|
||||
isAbsent.value = props.isAbsent;
|
||||
isLeave.value = props.isLeave;
|
||||
isPunish.value = props.isPunish ? props.isPunish : false;
|
||||
isSuspension.value = props.isSuspension ? props.isSuspension : false;
|
||||
isAbsent.value = props.isAbsent ? props.isAbsent : false;
|
||||
isLeave.value = props.isLeave ? props.isLeave : false;
|
||||
}
|
||||
);
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue