소스 검색

Merge branch 'master' of http://47.101.159.18:3000/Muchinfo/MTP2.0_WEB

huangbin 4 년 전
부모
커밋
226c4ae6ab
1개의 변경된 파일41개의 추가작업 그리고 41개의 파일을 삭제
  1. 41 41
      src/common/components/echart/echart-base/setup.ts

+ 41 - 41
src/common/components/echart/echart-base/setup.ts

@@ -70,47 +70,47 @@ export function useEchart(el: HTMLElement) {
 
     // 键盘上下左右键控制图表
     const onKeyup = (e: KeyboardEvent) => {
-        echartMap.forEach((chart) => {
-            const datazoom = chart.getOption().dataZoom as echarts.DataZoomComponentOption[];
-            if (datazoom && datazoom.length) {
-                const start = datazoom[0].start!;
-                const end = datazoom[0].end!;
-                switch (e.key) {
-                    case 'ArrowLeft':
-                        if (start > 0) {
-                            chart.setOption({
-                                dataZoom: [
-                                    {
-                                        start: start - 1,
-                                        end: end - 1,
-                                    }
-                                ]
-                            });
-                        }
-                        break;
-                    case 'ArrowUp':
-                        console.log('上');
-                        break;
-                    case 'ArrowRight':
-                        if (end < 100) {
-                            chart.setOption({
-                                dataZoom: [
-                                    {
-                                        start: start + 1,
-                                        end: end + 1,
-                                    }
-                                ]
-                            });
-                        }
-                        break;
-                    case 'ArrowDown':
-                        console.log('下');
-                        break;
-                    default:
-                        console.log(e);
-                }
-            }
-        });
+        // echartMap.forEach((chart) => {
+        //     const datazoom = chart.getOption().dataZoom as echarts.DataZoomComponentOption[];
+        //     if (datazoom && datazoom.length) {
+        //         const start = datazoom[0].start!;
+        //         const end = datazoom[0].end!;
+        //         switch (e.key) {
+        //             case 'ArrowLeft':
+        //                 if (start > 0) {
+        //                     chart.setOption({
+        //                         dataZoom: [
+        //                             {
+        //                                 start: start - 1,
+        //                                 end: end - 1,
+        //                             }
+        //                         ]
+        //                     });
+        //                 }
+        //                 break;
+        //             case 'ArrowUp':
+        //                 console.log('上');
+        //                 break;
+        //             case 'ArrowRight':
+        //                 if (end < 100) {
+        //                     chart.setOption({
+        //                         dataZoom: [
+        //                             {
+        //                                 start: start + 1,
+        //                                 end: end + 1,
+        //                             }
+        //                         ]
+        //                     });
+        //                 }
+        //                 break;
+        //             case 'ArrowDown':
+        //                 console.log('下');
+        //                 break;
+        //             default:
+        //                 console.log(e);
+        //         }
+        //     }
+        // });
     };
 
     const addEventListener = () => {