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 filterLeaveType = ref(["ลาป่วย", "ลากิจส่วนตัว", "ลาพักผ่อน"]);
|
||||||
|
|
||||||
const itemPie = ref<LeaveItem[]>([]);
|
const itemPie = ref<LeaveItem[]>([]);
|
||||||
const knob = ref(80);
|
|
||||||
const columns = ref<QTableProps["columns"]>([
|
const columns = ref<QTableProps["columns"]>([
|
||||||
{
|
{
|
||||||
name: "no",
|
name: "no",
|
||||||
|
|
|
||||||
|
|
@ -289,7 +289,7 @@ async function saveStep1() {
|
||||||
fullName: `${formDetail.value.firstName} ${formDetail.value.lastName}`,
|
fullName: `${formDetail.value.firstName} ${formDetail.value.lastName}`,
|
||||||
position: formDetail.value.position,
|
position: formDetail.value.position,
|
||||||
oc: formDetail.value.oc,
|
oc: formDetail.value.oc,
|
||||||
salary: formDetail.value.salary.toString(),
|
salary: formDetail.value.salary ? formDetail.value.salary.toString() : null,
|
||||||
positionLevel: formDetail.value.positionLevel,
|
positionLevel: formDetail.value.positionLevel,
|
||||||
posNo: formDetail.value.posNo,
|
posNo: formDetail.value.posNo,
|
||||||
birthDate: formDetail.value.birthDate,
|
birthDate: formDetail.value.birthDate,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue