Jelajahi Sumber

1、修复解锁失败问题

iggy 2 hari lalu
induk
melakukan
3048ab83fd
1 mengubah file dengan 2 tambahan dan 2 penghapusan
  1. 2 2
      JLHWEB/src/stores/modules/keepAlive.ts

+ 2 - 2
JLHWEB/src/stores/modules/keepAlive.ts

@@ -58,11 +58,11 @@ export const useKeepAliveStore = defineStore({
 
         if (route.needLock && Number(route.billid)) {
           UnLockBill({
-            keyword: String(route.billtype),
+            keyword: String(route.keyword),
             billid: Number(route.billid),
             billcode: String(route.billcode)
           }).catch(err => {
-            console.warn("解锁失败:", route.billtype, route.billid, err);
+            console.warn("解锁失败:", route.keyword, route.billid, err);
           });
         }
       }