fix: 右键菜单z-index问题

This commit is contained in:
xiaoxian521
2021-10-19 18:58:47 +08:00
parent 639a69d579
commit 7013e57d1e
6 changed files with 16 additions and 8 deletions

View File

@@ -1,8 +1,8 @@
import { MockMethod } from "vite-plugin-mock";
// http://mockjs.com/examples.html#Object
const echartsList = (): any => {
const result: any[] = [];
const echartsList = () => {
const result = [];
for (let index = 0; index < 200; index++) {
result.push(["@date", Math.floor(Math.random() * 300)]);
}