2 Commits 1e121177ae ... d357ff8970

Autor SHA1 Mensaje Fecha
  徐勤民 d357ff8970 refactor(login): 优化注册页面密码验证逻辑 hace 1 mes
  Weipeng Qi 095d1d3024 fix: 注册验证 hace 1 mes
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      src/main/ets/utils/ValidatorHelper.ets

+ 1 - 0
src/main/ets/utils/ValidatorHelper.ets

@@ -33,5 +33,6 @@ export class ValidatorHelper {
     let regexp: RegExp = new RegExp('(^\\d{18}$)|(^\\d{17}(\\d|X|x)$)');
     return regexp.test(idcardNum)
   }
+
 }