no message

This commit is contained in:
Bright 2024-07-25 16:20:48 +07:00
parent 6207ba1a91
commit fc14f80dc9
5 changed files with 725 additions and 575 deletions

View file

@ -45,7 +45,7 @@ export function calculateRetireDate(birthDate: Date) {
var year = d.getFullYear();
var month = d.getMonth();
var day = d.getDate();
var c = new Date(year + 60, month, day);
var c = new Date(year + 60, month, day-1);
return c;
}
export function calculateRetireLaw(birthDate: Date) {