fix bug
This commit is contained in:
parent
dbe620c549
commit
78bd5c0f7b
2 changed files with 1 additions and 2 deletions
|
|
@ -24,7 +24,6 @@ const $q = useQuasar();
|
|||
const filterLeaveType = ref(["ลาป่วย", "ลากิจส่วนตัว", "ลาพักผ่อน"]);
|
||||
|
||||
const itemPie = ref<LeaveItem[]>([]);
|
||||
const knob = ref(80);
|
||||
const columns = ref<QTableProps["columns"]>([
|
||||
{
|
||||
name: "no",
|
||||
|
|
|
|||
|
|
@ -289,7 +289,7 @@ async function saveStep1() {
|
|||
fullName: `${formDetail.value.firstName} ${formDetail.value.lastName}`,
|
||||
position: formDetail.value.position,
|
||||
oc: formDetail.value.oc,
|
||||
salary: formDetail.value.salary.toString(),
|
||||
salary: formDetail.value.salary ? formDetail.value.salary.toString() : null,
|
||||
positionLevel: formDetail.value.positionLevel,
|
||||
posNo: formDetail.value.posNo,
|
||||
birthDate: formDetail.value.birthDate,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue