update 鉴权卡新建卡号确保长度为16个字符

This commit is contained in:
Lemon
2023-04-12 14:03:32 +08:00
parent ee51d24965
commit bd2b0a5d4e

View File

@@ -218,6 +218,15 @@ export default {
trigger: "blur" trigger: "blur"
} }
], ],
logicCard:[
{
required: true,
min: 16,
max: 16,
message: "长度必须为16字符(不足长度可后补零)",
trigger: 'blur'
}
],
} }
}; };
}, },