fix issues #I7657W

feature/model
LiuHao 2 years ago
parent f2b2fe3103
commit cbd05fbc89

@ -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;

Loading…
Cancel
Save