diff --git a/components/calculator.tsx b/components/calculator.tsx index 6bf618b..f142730 100644 --- a/components/calculator.tsx +++ b/components/calculator.tsx @@ -10,13 +10,13 @@ const SalaryCalculator = () => { workDaysPerWeek: 5, // 每周工作天数 annualLeave: 5, // 年假天数 publicHolidays: 11, // 法定节假日 - workHours: 8, // 工作时长 - commuteHours: 1, // 通勤时长 - breakHours: 1, // 预备时长 + workHours: 10, // 工作时长 + commuteHours: 2, // 通勤时长 + breakHours: 2, // 午休时长 workEnvironment: '1.0', // 工作环境系数 heterogeneity: '1.0', // 异性环境系数 teamwork: '1.0', // 同事环境系数 - education: '1.0' // 学历系数 + education: '1.6' // 学历系数 }); const calculateWorkingDays = useCallback(() => { @@ -176,9 +176,11 @@ const SalaryCalculator = () => { />