spring
23 小时以前 991f6f78fccb86b2718ab96969a69304daafe2b4
fix: 完成巡查
已修改1个文件
4 ■■■■ 文件已修改
src/composables/useScanCode.ts 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/composables/useScanCode.ts
@@ -19,7 +19,7 @@
const initDebugListener = () => {
  if (debugListenerInitialized) return;
  // 监听所有可能的扫码事件
  const eventNames = ["scan", "scanIndex", "scanJX", "scanLS"];
  eventNames.forEach((eventName) => {
@@ -27,7 +27,7 @@
      console.log(`🔍 [全局调试] 捕获到 ${eventName} 事件:`, data);
    });
  });
  debugListenerInitialized = true;
  console.log("🔍 [全局调试] 调试监听器已初始化");
};