├── .browserslistrc ├── .env.local ├── .env.production ├── .env.test ├── .eslintrc.js ├── .gitignore ├── README.md ├── _config.yml ├── babel.config.js ├── docs ├── css │ ├── app.9c752331.css │ ├── chunk-1e183cbd.02d11207.css │ ├── chunk-2fe1c797.e28ad605.css │ └── chunk-vendors.af67b8ba.css ├── favicon.ico ├── fonts │ ├── element-icons.535877f5.woff │ └── element-icons.732389de.ttf ├── index.html └── js │ ├── app.3e8349d0.js │ ├── app.3e8349d0.js.map │ ├── chunk-1e183cbd.3a4b3099.js │ ├── chunk-1e183cbd.3a4b3099.js.map │ ├── chunk-2fe1c797.83c7a13a.js │ ├── chunk-2fe1c797.83c7a13a.js.map │ ├── chunk-75d105a4.b9489d28.js │ ├── chunk-75d105a4.b9489d28.js.map │ ├── chunk-vendors.8d2e06c6.js │ └── chunk-vendors.8d2e06c6.js.map ├── package.json ├── postcss.config.js ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── assets │ ├── css │ │ ├── common.scss │ │ └── resetUi.scss │ ├── image │ │ ├── demo1.png │ │ └── demo2.png │ ├── loading.json │ ├── loading1.json │ ├── loading2.json │ ├── loading3.json │ ├── loading4.json │ ├── loading5.json │ ├── loading6.json │ ├── loading7.json │ ├── loading8.json │ └── logo.png ├── components │ └── HelloWorld.vue ├── main.js ├── router.js ├── store.js ├── utils │ ├── baiduData.json │ ├── chinaMap.js │ ├── commonAjax.js │ ├── index.js │ └── request.js └── views │ ├── dataIndex │ ├── components │ │ ├── barChart.vue │ │ ├── barChart2.vue │ │ ├── chinaMap.vue │ │ ├── lineChart.vue │ │ ├── linesChart.vue │ │ ├── lottie.vue │ │ ├── pieChart.vue │ │ └── tableData.vue │ └── index.vue │ ├── dataIndex2 │ ├── components │ │ ├── bar3DChart.vue │ │ ├── beautyPieChart.vue │ │ ├── categoryChart.vue │ │ ├── chinaSdkMap.vue │ │ ├── circleLineChart.vue │ │ ├── radialChart.vue │ │ └── scrollTable.vue │ └── index.vue │ └── layout │ ├── Layout.vue │ └── components │ ├── AppMain.vue │ ├── Navbar.vue │ └── index.js └── vue.config.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | -------------------------------------------------------------------------------- /.env.local: -------------------------------------------------------------------------------- 1 | NODE_ENV = development 2 | VUE_APP_BASE_URL = 'http://192.168.1.1' -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- 1 | NODE_ENV = production 2 | VUE_APP_BASE_URL = 'http://192.168.1.2' -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- 1 | NODE_ENV = production 2 | VUE_APP_BASE_URL = 'http://192.168.1.2' -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/_config.yml -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/css/app.9c752331.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/docs/css/app.9c752331.css -------------------------------------------------------------------------------- /docs/css/chunk-1e183cbd.02d11207.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/docs/css/chunk-1e183cbd.02d11207.css -------------------------------------------------------------------------------- /docs/css/chunk-2fe1c797.e28ad605.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/docs/css/chunk-2fe1c797.e28ad605.css -------------------------------------------------------------------------------- /docs/css/chunk-vendors.af67b8ba.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/docs/css/chunk-vendors.af67b8ba.css -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/fonts/element-icons.535877f5.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/docs/fonts/element-icons.535877f5.woff -------------------------------------------------------------------------------- /docs/fonts/element-icons.732389de.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/docs/fonts/element-icons.732389de.ttf -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/app.3e8349d0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/docs/js/app.3e8349d0.js -------------------------------------------------------------------------------- /docs/js/app.3e8349d0.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/docs/js/app.3e8349d0.js.map -------------------------------------------------------------------------------- /docs/js/chunk-1e183cbd.3a4b3099.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/docs/js/chunk-1e183cbd.3a4b3099.js -------------------------------------------------------------------------------- /docs/js/chunk-1e183cbd.3a4b3099.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/docs/js/chunk-1e183cbd.3a4b3099.js.map -------------------------------------------------------------------------------- /docs/js/chunk-2fe1c797.83c7a13a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/docs/js/chunk-2fe1c797.83c7a13a.js -------------------------------------------------------------------------------- /docs/js/chunk-2fe1c797.83c7a13a.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/docs/js/chunk-2fe1c797.83c7a13a.js.map -------------------------------------------------------------------------------- /docs/js/chunk-75d105a4.b9489d28.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/docs/js/chunk-75d105a4.b9489d28.js -------------------------------------------------------------------------------- /docs/js/chunk-75d105a4.b9489d28.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/docs/js/chunk-75d105a4.b9489d28.js.map -------------------------------------------------------------------------------- /docs/js/chunk-vendors.8d2e06c6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/docs/js/chunk-vendors.8d2e06c6.js -------------------------------------------------------------------------------- /docs/js/chunk-vendors.8d2e06c6.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/docs/js/chunk-vendors.8d2e06c6.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/css/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/assets/css/common.scss -------------------------------------------------------------------------------- /src/assets/css/resetUi.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/assets/css/resetUi.scss -------------------------------------------------------------------------------- /src/assets/image/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/assets/image/demo1.png -------------------------------------------------------------------------------- /src/assets/image/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/assets/image/demo2.png -------------------------------------------------------------------------------- /src/assets/loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/assets/loading.json -------------------------------------------------------------------------------- /src/assets/loading1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/assets/loading1.json -------------------------------------------------------------------------------- /src/assets/loading2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/assets/loading2.json -------------------------------------------------------------------------------- /src/assets/loading3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/assets/loading3.json -------------------------------------------------------------------------------- /src/assets/loading4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/assets/loading4.json -------------------------------------------------------------------------------- /src/assets/loading5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/assets/loading5.json -------------------------------------------------------------------------------- /src/assets/loading6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/assets/loading6.json -------------------------------------------------------------------------------- /src/assets/loading7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/assets/loading7.json -------------------------------------------------------------------------------- /src/assets/loading8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/assets/loading8.json -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/router.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/store.js -------------------------------------------------------------------------------- /src/utils/baiduData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/utils/baiduData.json -------------------------------------------------------------------------------- /src/utils/chinaMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/utils/chinaMap.js -------------------------------------------------------------------------------- /src/utils/commonAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/utils/commonAjax.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/utils/request.js -------------------------------------------------------------------------------- /src/views/dataIndex/components/barChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/dataIndex/components/barChart.vue -------------------------------------------------------------------------------- /src/views/dataIndex/components/barChart2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/dataIndex/components/barChart2.vue -------------------------------------------------------------------------------- /src/views/dataIndex/components/chinaMap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/dataIndex/components/chinaMap.vue -------------------------------------------------------------------------------- /src/views/dataIndex/components/lineChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/dataIndex/components/lineChart.vue -------------------------------------------------------------------------------- /src/views/dataIndex/components/linesChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/dataIndex/components/linesChart.vue -------------------------------------------------------------------------------- /src/views/dataIndex/components/lottie.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/dataIndex/components/lottie.vue -------------------------------------------------------------------------------- /src/views/dataIndex/components/pieChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/dataIndex/components/pieChart.vue -------------------------------------------------------------------------------- /src/views/dataIndex/components/tableData.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/dataIndex/components/tableData.vue -------------------------------------------------------------------------------- /src/views/dataIndex/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/dataIndex/index.vue -------------------------------------------------------------------------------- /src/views/dataIndex2/components/bar3DChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/dataIndex2/components/bar3DChart.vue -------------------------------------------------------------------------------- /src/views/dataIndex2/components/beautyPieChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/dataIndex2/components/beautyPieChart.vue -------------------------------------------------------------------------------- /src/views/dataIndex2/components/categoryChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/dataIndex2/components/categoryChart.vue -------------------------------------------------------------------------------- /src/views/dataIndex2/components/chinaSdkMap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/dataIndex2/components/chinaSdkMap.vue -------------------------------------------------------------------------------- /src/views/dataIndex2/components/circleLineChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/dataIndex2/components/circleLineChart.vue -------------------------------------------------------------------------------- /src/views/dataIndex2/components/radialChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/dataIndex2/components/radialChart.vue -------------------------------------------------------------------------------- /src/views/dataIndex2/components/scrollTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/dataIndex2/components/scrollTable.vue -------------------------------------------------------------------------------- /src/views/dataIndex2/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/dataIndex2/index.vue -------------------------------------------------------------------------------- /src/views/layout/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/layout/Layout.vue -------------------------------------------------------------------------------- /src/views/layout/components/AppMain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/layout/components/AppMain.vue -------------------------------------------------------------------------------- /src/views/layout/components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/layout/components/Navbar.vue -------------------------------------------------------------------------------- /src/views/layout/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/src/views/layout/components/index.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijiahui-web/vue-echarts/HEAD/vue.config.js --------------------------------------------------------------------------------