This commit is contained in:
2025-07-10 18:27:50 +08:00
parent d0d3da243c
commit 5e9638fba3
3 changed files with 30 additions and 21 deletions

View File

@ -54,7 +54,6 @@ const rules = reactive({
xzdXz: [{ required: true, message: "请输入现居住地址", trigger: "blur" }],
})
const init = () =>{
showDialog.value = true;
}
@ -74,6 +73,7 @@ const closeTag = (idx) =>{
const submitForm = () =>{
elform.value.submit((val)=>{
val.id = new Date().getTime()
emit('change',val)
showDialog.value = false;
})