Commit 803c1a11 by fukai

修复判断错误

parent 57ac8c63
......@@ -10,7 +10,7 @@ export function getLogicAdress(bic)
if (bic.length == 11) {
return bic.substring(0, 8) + "X" + bic.substring(8, 11);
}
if (bic.length() == 8) {
if (bic.length == 8) {
return bic + "XXXX";
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment