设备管理-配置编辑 除了输出地址、输入地址外,其他的变为输入框,限制输入最大字符数为4,且每位必须是16进制数
This commit is contained in:
parent
2d78605468
commit
9944bdef33
@ -127,11 +127,14 @@ export default {
|
||||
}
|
||||
});
|
||||
let flag = false;
|
||||
for (var i = 0; i < value.length; i++) {
|
||||
const ascallCode = value.charCodeAt(i);
|
||||
if (ascallCode > 70 || ascallCode < 48 || (ascallCode > 57 && ascallCode < 65)) {
|
||||
flag = true;
|
||||
if (value && value.length) {
|
||||
for (var i = 0; i < value.length; i++) {
|
||||
const ascallCode = value.charCodeAt(i);
|
||||
if (ascallCode > 70 || ascallCode < 48 || (ascallCode > 57 && ascallCode < 65)) {
|
||||
flag = true;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
if (!value) {
|
||||
callback(new Error(rule.messageEmpty));
|
||||
|
Loading…
Reference in New Issue
Block a user