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