eight
2025-04-10 3339fa19a6b295e827f4fc41694701490cbd3e66
src/utils/stringUtil.ts
@@ -3,3 +3,10 @@
  return !value || value.trim() === '';
}
export function genderFormat(value: number): string {
  if ( 1===value ) {
    return "男";
  } else {
    return "女";
  }
}