拓恒河湖长制全民护河平台WEB端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

7 行
137B

  1. /**
  2. * 校验是否是数字
  3. */
  4. export const isPositiveInteger = function(value) {
  5. var re = /^[0-9]+$/ ;
  6. return re.test(value)
  7. }