This commit is contained in:
2020-04-05 21:05:17 +00:00
parent d031f60285
commit 9c13f11e21
3 changed files with 24 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
<template>
<v-container>
{{ formState }}
<v-row v-if="formState.ready">
<v-col>
<v-form ref="form">
@@ -429,7 +430,6 @@ export default {
let vm = this;
if (vm.canSave) {
vm.formState.loading = true;
let url = API_BASE_URL + vm.$route.params.recordid;
//clear any errors vm might be around from previous submit
@@ -463,6 +463,7 @@ export default {
}
})
.catch(function handleSubmitError(error) {
debugger;
vm.formState.loading = false;
window.$gz.errorHandler.handleFormError(error, vm);
});