gitextract_w4k0vq3y/ ├── .browserslistrc ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── README.md ├── babel.config.js ├── package.json ├── postcss.config.js ├── public/ │ ├── canvaslayer.js │ └── index.html ├── src/ │ ├── App.less │ ├── App.tsx │ ├── api/ │ │ └── api.ts │ ├── assets/ │ │ ├── json/ │ │ │ └── map.json │ │ └── menu.json │ ├── components/ │ │ ├── FilterTable/ │ │ │ ├── MFilter.less │ │ │ ├── MFilter.tsx │ │ │ ├── MTable.less │ │ │ ├── MTable.tsx │ │ │ └── index.vue │ │ ├── HelloWorld.vue │ │ ├── Layout/ │ │ │ ├── AppMain.less │ │ │ ├── AppMain.tsx │ │ │ ├── Header/ │ │ │ │ ├── Header.less │ │ │ │ └── Header.tsx │ │ │ └── Sidebar/ │ │ │ ├── MenuList.less │ │ │ ├── MenuList.tsx │ │ │ ├── Sidebar.less │ │ │ └── Sidebar.tsx │ │ ├── Loader/ │ │ │ └── index.vue │ │ └── Spin/ │ │ ├── index.less │ │ └── index.tsx │ ├── global.d.ts │ ├── interface/ │ │ └── index.ts │ ├── main.ts │ ├── mock/ │ │ ├── baseData.js │ │ ├── customers.js │ │ ├── dashboard.js │ │ ├── index.js │ │ └── login.js │ ├── router/ │ │ ├── import_development.ts │ │ ├── import_production.ts │ │ └── index.ts │ ├── shims-ant-design-vue.d.ts │ ├── shims-tsx.d.ts │ ├── shims-vue-amap.d.ts │ ├── shims-vue.d.ts │ ├── store/ │ │ ├── getters.ts │ │ ├── index.ts │ │ └── modules/ │ │ ├── app.ts │ │ └── user.ts │ ├── styles/ │ │ ├── global.less │ │ └── var.less │ ├── utils/ │ │ ├── city.ts │ │ ├── config.ts │ │ ├── coordTrasns.ts │ │ ├── index.ts │ │ └── request.ts │ └── views/ │ ├── chart/ │ │ ├── apexCharts/ │ │ │ ├── area/ │ │ │ │ ├── dataSeries.ts │ │ │ │ ├── dateSeries.ts │ │ │ │ ├── githubData.ts │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ └── params.ts │ │ │ ├── bar/ │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ └── params.ts │ │ │ ├── column/ │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ └── params.ts │ │ │ ├── index.tsx │ │ │ ├── line/ │ │ │ │ ├── dataSeries.ts │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ └── params.ts │ │ │ └── mixed/ │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── params.ts │ │ └── index.tsx │ ├── components/ │ │ ├── form/ │ │ │ ├── baseForm/ │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ └── index.tsx │ ├── customers/ │ │ ├── baseInfo/ │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── infoModal.tsx │ │ └── index.tsx │ ├── dashboard/ │ │ ├── index.less │ │ └── index.tsx │ ├── error/ │ │ ├── 401.vue │ │ └── 404.vue │ ├── login/ │ │ ├── index.tsx │ │ └── login.less │ ├── map/ │ │ ├── index.tsx │ │ └── trajectory/ │ │ ├── commonfun.ts │ │ ├── data.json │ │ ├── index.less │ │ ├── index.tsx │ │ └── mapControl.ts │ └── project/ │ ├── detail/ │ │ ├── index.less │ │ └── index.tsx │ ├── index.tsx │ └── list/ │ ├── index.less │ └── index.tsx ├── tests/ │ └── e2e/ │ ├── custom-assertions/ │ │ └── elementCount.js │ └── specs/ │ └── test.js ├── tsconfig.json └── vue.config.js