二级评估字数长度限制和表格新增限制

This commit is contained in:
sjl
2025-08-27 11:26:03 +08:00
parent 17493f9c26
commit 2afa5aa23b
10 changed files with 26 additions and 8 deletions

View File

@@ -113,7 +113,9 @@ const submit = async () => {
}
const handleInput = (value: string) => {
form.name = value.replace(/[^\d]/g, '')
form.name = value.replace(/\s/g, '')
//form.name = value.replace(/[^\d]/g, '')
}
defineExpose({ open })