ZaiZai 1 ano atrás
pai
commit
bbf18805d8
2 arquivos alterados com 4 adições e 2 exclusões
  1. 1 1
      public/version.json
  2. 3 1
      src/views/ledger/components/table-form.vue

+ 1 - 1
public/version.json

@@ -1,3 +1,3 @@
 {
-  "value": "20240717172106"
+  "value": "20240717175429"
 }

+ 3 - 1
src/views/ledger/components/table-form.vue

@@ -792,13 +792,15 @@ const closeBussDataInfo = async (item, index) => {
 const reportTaskName = ref('')
 const reportAddition = ref({})
 const showReportModal = ref(false)
-const reportModalClick = () => {
+const reportModalClick = async () => {
+    await tableFormSaveClick()
     const { primaryKeyId, title } = menuItem.value
     reportTaskName.value = `${recordTime.value} ${title} ${userName.value}`
     reportAddition.value = {
         nodePrimaryKeyId: primaryKeyId,
         recordTime: recordTime.value,
     }
+    tableFormSaveLoading.value = false
     showReportModal.value = true
 }