fix:registry
This commit is contained in:
parent
18101353a1
commit
4c569a1d3f
10 changed files with 502 additions and 127 deletions
|
|
@ -62,10 +62,10 @@ const formData = reactive<FormDataSalary>({
|
|||
positionPathSide: "", //ด้าน/สาขา
|
||||
positionExecutive: "", //ตำแหน่งทางการบริหาร
|
||||
positionExecutiveField: "", //ด้านทางการบริหาร
|
||||
amount: null, //เงินเดือน
|
||||
amountSpecial: null, //เงินค่าตอบแทนพิเศษ
|
||||
positionSalaryAmount: null, //เงินประจำตำแหน่ง
|
||||
mouthSalaryAmount: null, //เงินค่าตอบแทนรายเดือน
|
||||
amount: undefined, //เงินเดือน
|
||||
amountSpecial: undefined, //เงินค่าตอบแทนพิเศษ
|
||||
positionSalaryAmount: undefined, //เงินประจำตำแหน่ง
|
||||
mouthSalaryAmount: undefined, //เงินค่าตอบแทนรายเดือน
|
||||
orgRoot: "", //หน่วยงาน
|
||||
orgChild1: "", //ส่วนราชการระดับ 1
|
||||
orgChild2: "", //ส่วนราชการระดับ 2
|
||||
|
|
@ -91,10 +91,10 @@ const formReadonly = reactive<FormDataSalary>({
|
|||
positionPathSide: "", //ด้าน/สาขา
|
||||
positionExecutive: "", //ตำแหน่งทางการบริหาร
|
||||
positionExecutiveField: "", //ด้านทางการบริหาร
|
||||
amount: null, //เงินเดือน
|
||||
amountSpecial: null, //เงินค่าตอบแทนพิเศษ
|
||||
positionSalaryAmount: null, //เงินประจำตำแหน่ง
|
||||
mouthSalaryAmount: null, //เงินค่าตอบแทนรายเดือน
|
||||
amount: undefined, //เงินเดือน
|
||||
amountSpecial: undefined, //เงินค่าตอบแทนพิเศษ
|
||||
positionSalaryAmount: undefined, //เงินประจำตำแหน่ง
|
||||
mouthSalaryAmount: undefined, //เงินค่าตอบแทนรายเดือน
|
||||
orgRoot: "", //หน่วยงาน
|
||||
orgChild1: "", //ส่วนราชการระดับ 1
|
||||
orgChild2: "", //ส่วนราชการระดับ 2
|
||||
|
|
@ -377,10 +377,10 @@ function onClickCloseDialog() {
|
|||
formData.positionPathSide = "";
|
||||
formData.positionExecutive = "";
|
||||
formData.positionExecutiveField = "";
|
||||
formData.amount = null;
|
||||
formData.amountSpecial = null;
|
||||
formData.positionSalaryAmount = null;
|
||||
formData.mouthSalaryAmount = null;
|
||||
formData.amount = undefined;
|
||||
formData.amountSpecial = undefined;
|
||||
formData.positionSalaryAmount = undefined;
|
||||
formData.mouthSalaryAmount = undefined;
|
||||
formData.orgRoot = "";
|
||||
formData.orgChild1 = "";
|
||||
formData.orgChild2 = "";
|
||||
|
|
@ -405,9 +405,9 @@ function onClickCloseDialog() {
|
|||
formReadonly.positionPathSide = "";
|
||||
formReadonly.positionExecutive = "";
|
||||
formReadonly.positionExecutiveField = "";
|
||||
formReadonly.amount = null;
|
||||
formReadonly.positionSalaryAmount = null;
|
||||
formReadonly.mouthSalaryAmount = null;
|
||||
formReadonly.amount = undefined;
|
||||
formReadonly.positionSalaryAmount = undefined;
|
||||
formReadonly.mouthSalaryAmount = undefined;
|
||||
formReadonly.orgRoot = "";
|
||||
formReadonly.orgChild1 = "";
|
||||
formReadonly.orgChild2 = "";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue