เพิ่ม currency input

This commit is contained in:
AnandaTon 2023-10-19 13:47:54 +07:00
parent e300009dc3
commit cd1a733ef6
4 changed files with 235 additions and 246 deletions

View file

@ -65,7 +65,7 @@ interface Occupation {
org: string | null;
pile: string | null;
group: string | null;
salary: string | null;
salary: number | undefined;
position: string | null;
positionType: string | null;
tel: string | null;
@ -229,7 +229,7 @@ const defaultOccupation = ref<Occupation>({
org: null,
pile: null,
group: null,
salary: null,
salary: undefined,
position: null,
positionType: null,
tel: null,