胡思旗
2023-08-28 e4fde8d21725b25f8a25fc6dbb0a1e4f6c1efe28
1
2
3
4
export function formatPhoneNum (phoneNum: string | number) {
  const str = String(phoneNum)
  return str.substring(0, 3) + '****' + str.slice(-4)
}