Преглед на файлове

1、修复不同单据编辑页切换到详情页出现解锁问题

MY преди 1 месец
родител
ревизия
4ff27a59eb
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      JLHWEB/src/stores/modules/keepAlive.ts

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

@@ -117,8 +117,8 @@ export const useKeepAliveStore = defineStore({
 
       const isEditToDetail =
         from.fullPath.includes("/edit") && to.fullPath.includes("/detail") && from.query?.id && from.meta?.needLock;
-
-      if (isEditToDetail) {
+      const isSameBill = from.query?.code === to.query?.code;
+      if (isEditToDetail && isSameBill) {
         UnLockBill({
           keyword: String(from.meta.billtype),
           billid: Number(from.query.id),