huangbin hace 4 años
padre
commit
2459916395
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/common/components/contextMenu/index.vue

+ 2 - 2
src/common/components/contextMenu/index.vue

@@ -43,8 +43,8 @@ export default defineComponent({
         });
 
         function onContextMenu(value: MouseEvent) {
-            const target = value.target as any;
-            if (target.nodeName === 'TD') {  // 过滤右键表头
+            if (value.type === 'contextmenu') {
+                // 过滤右键表头
                 const { clientX, clientY } = value;
                 Object.assign(menuContext.position, { clientX, clientY });
                 menuContext.show = true;