拓恒河湖长制全民护河平台WEB端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
301B

  1. /**
  2. * 校验是否是数字
  3. */
  4. export const isPositiveInteger = function(value) {
  5. var re = /^[0-9]+$/ ;
  6. return re.test(value)
  7. }
  8. /**
  9. * 校验数字、字母或汉字
  10. */
  11. export const isNoCharacters = function(value) {
  12. var re = /^[\u4e00-\u9fa5_a-zA-z0-9]+$/ ;
  13. return re.test(value)
  14. }