拓恒河湖长制全民护河平台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.

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