Procházet zdrojové kódy

修复日志填报问题

iZaiZaiA před 2 roky
rodič
revize
371075bc1a
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      src/views/ledger/components/table-form.vue

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

@@ -422,9 +422,10 @@ const deleProcess = (index) => {
 //保存数据
 const tableFormSaveLoading = ref(false)
 const tableFormSaveClick = async () => {
+    const {primaryKeyId} = menuItem.value
     const res = await saveExcelBussData()
     if (res) {
-        checkTheLogTaskStatus()
+        await checkTheLogTaskStatus(recordTime.value, primaryKeyId)
         await getBussPdfInfo()
     }
 }