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

@@ -142,8 +142,14 @@ const _sfc_main = defineComponent({
if (props.type === "number") {
onNumberBlur(event);
}
console.log("\u6DFB\u52A0\uFF0C", new String(props.modelValue).toLocaleString());
currentValue.value = new String(props.modelValue).toLocaleString();
if (props.qfw) {
try {
console.log("\u6DFB\u52A0\uFF0C", new Number(props.modelValue).toLocaleString());
currentValue.value = new Number(props.modelValue).toLocaleString();
} catch {
currentValue.value = "\u8F93\u5165\u9519\u8BEF";
}
}
emit("blur", event);
};
const onNumberBlur = (event) => {