!352 fix issues #I7657W

Merge pull request !352 from ahaos/pr
This commit is contained in:
疯狂的狮子Li 2023-05-18 17:38:41 +00:00 committed by Gitee
commit 9121a5ac9b
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -467,7 +467,7 @@ const handleUpdate = (row: ${BusinessName}VO) => {
/** 提交按钮 */
const submitForm = () => {
${businessName}FormRef.value.validate((valid: boolean) => {
${businessName}FormRef.value.validate(async (valid: boolean) => {
if (valid) {
buttonLoading.value = true;
#foreach ($column in $columns)
@ -476,9 +476,9 @@ const submitForm = () => {
#end
#end
if (form.value.${pkColumn.javaField}) {
update${BusinessName}(form.value).finally(() => buttonLoading.value = false);
await update${BusinessName}(form.value).finally(() => buttonLoading.value = false);
} else {
add${BusinessName}(form.value).finally(() => buttonLoading.value = false);
await add${BusinessName}(form.value).finally(() => buttonLoading.value = false);
}
proxy?.#[[$modal]]#.msgSuccess("操作成功");
dialog.visible = false;