| | |
| | | type="number" |
| | | placeholder="0" |
| | | size="small" |
| | | disabled /> |
| | | @input="handleSalaryInput(row)" /> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="工资个税" |
| | |
| | | otherDeduct: parseNum(row.otherDeduct), |
| | | socialPersonal: parseNum(row.socialPersonal), |
| | | fundPersonal: parseNum(row.fundPersonal), |
| | | socialSupplementAmount: parseNum(row.socialSupplementAmount), |
| | | remark: row.remark ?? "", |
| | | }; |
| | | recalcTimers.set( |
| | |
| | | row.hourlySalary = parseNum(row.hourlySalary); |
| | | row.otherIncome = parseNum(row.otherIncome); |
| | | row.otherDeduct = parseNum(row.otherDeduct); |
| | | row.socialSupplementAmount = parseNum(row.socialSupplementAmount); |
| | | requestBackendRecalculate(row); |
| | | }; |
| | | |