check.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /**
  2. * 手机验证
  3. */
  4. export function checkPhone(value){
  5. if(/^1\d{10}$/.test(value)){
  6. return true;
  7. }
  8. return false
  9. }
  10. /**
  11. * 身份证验证
  12. */
  13. export function checkIdCard(value){
  14. let reg =/^\d{15}|\d{18}$/
  15. if(reg.test(value)){
  16. return true;
  17. }
  18. return false
  19. }
  20. /**
  21. * 银行卡验证
  22. */
  23. export function checkBankCard(value){
  24. let reg =/^([1-9]{1})(\d{14}|\d{15}|\d{16}|\d{18})$/
  25. if(reg.test(value)){
  26. return true;
  27. }
  28. return false
  29. }
  30. //车牌号验证
  31. export function validateLicensePlateNumber(value) {
  32. const isPlate=/[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领 A-Z]{1}[A-HJ-NP-Z]{1}(([0-9]{5}[DF])|([DF][A-HJ-NP-Z0-9][0-9]{4}))$/g.test(value)
  33. return isPlate
  34. }
  35. /**
  36. * 保留指定小数位方法
  37. */
  38. export function KeepDecimals(num,len =2 ){
  39. let numStr = typeof(num) == "number" ? `${num}` : num // 判断类型,统一转字符串处理
  40. if(!numStr)return ''; // 空值return 空字符串
  41. numStr=numStr.replace(/[^0-9.]/g,'') // 限制值只能为0-9和字符‘.’
  42. let isDecimalIndex = numStr.indexOf('.') // 判断存不存在小数位
  43. if(isDecimalIndex === -1)return `${Number(numStr)}` // 不存在小数位,返回处理后的数字
  44. let integer = numStr.slice(0,isDecimalIndex) // 获取整数位
  45. let Decimals = numStr.slice(isDecimalIndex+1) // 获取小数位
  46. Decimals=Decimals.replace(/[^0-9]/g,'').slice(0,len) // 处理小数位中的无效字符,并截取指定长度
  47. return `${Number(integer)}.${Decimals || ''}` // 组装数据。并在处理小数位事,将无效字符处理成空串
  48. }