This commit is contained in:
2022-12-12 09:20:09 +08:00
parent 145ff44277
commit ad671dc37b
4 changed files with 27 additions and 7 deletions

View File

@@ -116,8 +116,16 @@ const onBlur = (event: Event) => {
if (props.type === "number") {
onNumberBlur(event);
}
console.log("添加,", new String(props.modelValue).toLocaleString())
currentValue.value = new String(props.modelValue).toLocaleString()
if(props.qfw){
try{
console.log("添加,", new Number(props.modelValue).toLocaleString())
currentValue.value = new Number(props.modelValue).toLocaleString()
}catch{
currentValue.value = "输入错误"
}
}
emit("blur", event);
};