├── babel.config.js
├── public
├── favicon.ico
└── index.html
├── src
├── assets
│ ├── logo.png
│ ├── pageBg.png
│ └── scss
│ │ ├── _variables.scss
│ │ ├── index.scss
│ │ └── style.scss
├── store
│ └── index.js
├── App.vue
├── router
│ └── index.js
├── utils
│ ├── resizeMixins.js
│ └── index.js
├── main.js
├── views
│ ├── bottomLeft.vue
│ ├── bottomRight.vue
│ ├── centerLeft2.vue
│ ├── centerRight1.vue
│ ├── centerRight2.vue
│ ├── index.vue
│ ├── centerLeft1.vue
│ └── center.vue
├── components
│ └── echart
│ │ ├── centerLeft2
│ │ ├── centreLeft1Chart.vue
│ │ └── centreLeft2Chart.vue
│ │ ├── center
│ │ └── centerChartRate.vue
│ │ ├── bottom
│ │ ├── bottomLeftChartState.vue
│ │ ├── bottomRightChartMap.vue
│ │ ├── bottomLeftChart.vue
│ │ └── bottomRightChart.vue
│ │ └── centreRight2
│ │ └── centreRight2Chart1.vue
├── common
│ └── flexible.js
└── 插入代表届次信息样例-0508.sql
├── .gitignore
├── vue.config.js
├── package.json
├── yarn-error.log
├── README.md
└── LICENSE
/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: [
3 | '@vue/cli-plugin-babel/preset'
4 | ]
5 | }
6 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qiyankai/Big-Screen-Vue-Datav-Echarts/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/src/assets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qiyankai/Big-Screen-Vue-Datav-Echarts/HEAD/src/assets/logo.png
--------------------------------------------------------------------------------
/src/assets/pageBg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qiyankai/Big-Screen-Vue-Datav-Echarts/HEAD/src/assets/pageBg.png
--------------------------------------------------------------------------------
/src/store/index.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import Vuex from 'vuex'
3 |
4 | Vue.use(Vuex)
5 |
6 | export default new Vuex.Store({
7 | state: {
8 | },
9 | mutations: {
10 | },
11 | actions: {
12 | },
13 | modules: {
14 | }
15 | })
16 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 | /dist
4 |
5 | # local env files
6 | .env.local
7 | .env.*.local
8 |
9 | # Log files
10 | npm-debug.log*
11 | yarn-debug.log*
12 | yarn-error.log*
13 |
14 | # Editor directories and files
15 | .idea
16 | .vscode
17 | *.suo
18 | *.ntvs*
19 | *.njsproj
20 | *.sln
21 | *.sw?
22 |
--------------------------------------------------------------------------------
/src/App.vue:
--------------------------------------------------------------------------------
1 |
2 |
39 | {{ item.text }} 40 | (件) 41 |
42 |10 | {{ item.title }} 11 |
12 |