ylyx-cli 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +184 -0
- package/bin/ylyx.js +95 -0
- package/lib/generator.js +192 -0
- package/lib/index.js +113 -0
- package/lib/interactive.js +87 -0
- package/lib/remote.js +179 -0
- package/lib/template.js +174 -0
- package/lib/utils.js +134 -0
- package/package.json +56 -0
- package/templates/react-app/files/README.md +23 -0
- package/templates/react-app/files/package.json +29 -0
- package/templates/react-app/files/public/index.html +11 -0
- package/templates/react-app/files/src/App.css +15 -0
- package/templates/react-app/files/src/App.js +15 -0
- package/templates/react-app/files/src/index.css +10 -0
- package/templates/react-app/files/src/index.js +11 -0
- package/templates/react-app/template.json +12 -0
- package/templates/react-component/files/Component.module.css +5 -0
- package/templates/react-component/files/Component.tsx +31 -0
- package/templates/react-component/files/index.ts +2 -0
- package/templates/react-component/template.json +49 -0
- package/templates/vue-app/files/.editorconfig +14 -0
- package/templates/vue-app/files/.env.development +21 -0
- package/templates/vue-app/files/.env.production +18 -0
- package/templates/vue-app/files/.eslintignore +5 -0
- package/templates/vue-app/files/.eslintrc.js +267 -0
- package/templates/vue-app/files/.prettierignore +12 -0
- package/templates/vue-app/files/.travis.yml +5 -0
- package/templates/vue-app/files/.vscode/extensions.json +7 -0
- package/templates/vue-app/files/.vscode/settings.json +39 -0
- package/templates/vue-app/files/LICENSE +191 -0
- package/templates/vue-app/files/README.md +87 -0
- package/templates/vue-app/files/babel.config.js +11 -0
- package/templates/vue-app/files/jest.config.js +24 -0
- package/templates/vue-app/files/package.json +136 -0
- package/templates/vue-app/files/plopfile.js +7 -0
- package/templates/vue-app/files/postcss.config.js +5 -0
- package/templates/vue-app/files/prettier.config.js +36 -0
- package/templates/vue-app/files/public/default.js +26 -0
- package/templates/vue-app/files/public/favicon.ico +0 -0
- package/templates/vue-app/files/public/index.html +26 -0
- package/templates/vue-app/files/src/App.vue +54 -0
- package/templates/vue-app/files/src/api/bigDataV/index.js +198 -0
- package/templates/vue-app/files/src/api/data.js +42 -0
- package/templates/vue-app/files/src/api/dataArchive/index.js +186 -0
- package/templates/vue-app/files/src/api/generator/genConfig.js +16 -0
- package/templates/vue-app/files/src/api/generator/generator.js +32 -0
- package/templates/vue-app/files/src/api/indexManagement/index.js +39 -0
- package/templates/vue-app/files/src/api/institutionMonitor/index.js +396 -0
- package/templates/vue-app/files/src/api/institutionSet/index.js +120 -0
- package/templates/vue-app/files/src/api/login.js +44 -0
- package/templates/vue-app/files/src/api/selfStatistics/index.js +50 -0
- package/templates/vue-app/files/src/api/system/code.js +15 -0
- package/templates/vue-app/files/src/api/system/dict.js +34 -0
- package/templates/vue-app/files/src/api/system/dictDetail.js +52 -0
- package/templates/vue-app/files/src/api/system/equipment.js +35 -0
- package/templates/vue-app/files/src/api/system/examManage.js +49 -0
- package/templates/vue-app/files/src/api/system/examProject.js +48 -0
- package/templates/vue-app/files/src/api/system/hosModel.js +35 -0
- package/templates/vue-app/files/src/api/system/hospital.js +88 -0
- package/templates/vue-app/files/src/api/system/job.js +40 -0
- package/templates/vue-app/files/src/api/system/menu.js +67 -0
- package/templates/vue-app/files/src/api/system/model.js +42 -0
- package/templates/vue-app/files/src/api/system/risConfig.js +9 -0
- package/templates/vue-app/files/src/api/system/role.js +64 -0
- package/templates/vue-app/files/src/api/system/sysSet.js +19 -0
- package/templates/vue-app/files/src/api/system/timing.js +41 -0
- package/templates/vue-app/files/src/api/system/user.js +121 -0
- package/templates/vue-app/files/src/api/tools/alipay.js +25 -0
- package/templates/vue-app/files/src/api/tools/email.js +24 -0
- package/templates/vue-app/files/src/api/tools/localStorage.js +27 -0
- package/templates/vue-app/files/src/api/tools/qiniu.js +40 -0
- package/templates/vue-app/files/src/assets/401_images/401.gif +0 -0
- package/templates/vue-app/files/src/assets/404_images/404.png +0 -0
- package/templates/vue-app/files/src/assets/404_images/404_cloud.png +0 -0
- package/templates/vue-app/files/src/assets/css/font-awesome.css +2342 -0
- package/templates/vue-app/files/src/assets/css/font-awesome.min.css +2336 -0
- package/templates/vue-app/files/src/assets/fonts/FontAwesome.otf +0 -0
- package/templates/vue-app/files/src/assets/fonts/fontawesome-webfont.eot +0 -0
- package/templates/vue-app/files/src/assets/fonts/fontawesome-webfont.svg +2671 -0
- package/templates/vue-app/files/src/assets/fonts/fontawesome-webfont.ttf +0 -0
- package/templates/vue-app/files/src/assets/fonts/fontawesome-webfont.woff +0 -0
- package/templates/vue-app/files/src/assets/fonts/fontawesome-webfont.woff2 +0 -0
- package/templates/vue-app/files/src/assets/icons/index.js +9 -0
- package/templates/vue-app/files/src/assets/icons/svg/Steve-Jobs.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/achive.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/alipay.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/anq.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/app.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/archive.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/backup.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/chain.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/chart.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/codeConsole.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/dashboard.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/database.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/date.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/deploy.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/dept.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/dev.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/develop.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/dictionary.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/doc.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/download.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/edit.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/education.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/email.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/equSet.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/error.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/exit-fullscreen.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/fullscreen.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/fwb.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/github.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/goBack.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/gonggao.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/hospital.svg +2 -0
- package/templates/vue-app/files/src/assets/icons/svg/hospital1.svg +2 -0
- package/templates/vue-app/files/src/assets/icons/svg/hospitalTotal.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/icon.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/image.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/index.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/international.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/ipvisits.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/java.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/link.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/list.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/lock.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/log.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/login.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/loginOne.svg +35 -0
- package/templates/vue-app/files/src/assets/icons/svg/loginOneWhite.svg +19 -0
- package/templates/vue-app/files/src/assets/icons/svg/loginOr.svg +93 -0
- package/templates/vue-app/files/src/assets/icons/svg/loginUp.svg +96 -0
- package/templates/vue-app/files/src/assets/icons/svg/markdown.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/menu.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/message.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/mnt.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/money.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/monitor.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/nested.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/network.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/offline.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/online.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/password.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/people.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/peoples.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/perSet.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/permission.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/phone.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/piechart.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/qiniu.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/redis.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/resetpassword.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/resetpassword1.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/role.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/search.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/server.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/shopping.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/size.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/skill.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/source.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/sqlMonitor.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/statistical.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/swagger.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/sys-tools.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/system.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/system1.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/tab.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/teams.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/theme.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/timing.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/tools.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/tree-table.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/tree.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/unlock.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/user.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/user1.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/validCode.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/visits.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/web.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/wechat.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/weixin.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svg/zujian.svg +1 -0
- package/templates/vue-app/files/src/assets/icons/svgo.yml +21 -0
- package/templates/vue-app/files/src/assets/images/archive.png +0 -0
- package/templates/vue-app/files/src/assets/images/archive_icon.png +0 -0
- package/templates/vue-app/files/src/assets/images/avatar.png +0 -0
- package/templates/vue-app/files/src/assets/images/background.jpg +0 -0
- package/templates/vue-app/files/src/assets/images/bg.png +0 -0
- package/templates/vue-app/files/src/assets/images/gongan.png +0 -0
- package/templates/vue-app/files/src/assets/images/hospital_icon.png +0 -0
- package/templates/vue-app/files/src/assets/images/location.png +0 -0
- package/templates/vue-app/files/src/assets/images/logintitle.jpg +0 -0
- package/templates/vue-app/files/src/assets/images/logo-copy1.png +0 -0
- package/templates/vue-app/files/src/assets/images/logo.png +0 -0
- package/templates/vue-app/files/src/assets/images/logoBg.png +0 -0
- package/templates/vue-app/files/src/assets/images/offline-bg.png +0 -0
- package/templates/vue-app/files/src/assets/images/position.png +0 -0
- package/templates/vue-app/files/src/assets/images/qualityBg.jpg +0 -0
- package/templates/vue-app/files/src/assets/images/self-bg.png +0 -0
- package/templates/vue-app/files/src/assets/images/self-bg2.png +0 -0
- package/templates/vue-app/files/src/assets/images/triAngel.png +0 -0
- package/templates/vue-app/files/src/assets/images/triAngelNormal.png +0 -0
- package/templates/vue-app/files/src/assets/styles/btn.scss +103 -0
- package/templates/vue-app/files/src/assets/styles/eladmin.scss +124 -0
- package/templates/vue-app/files/src/assets/styles/element-ui.scss +217 -0
- package/templates/vue-app/files/src/assets/styles/element-variables.scss +31 -0
- package/templates/vue-app/files/src/assets/styles/global.scss +73 -0
- package/templates/vue-app/files/src/assets/styles/index.scss +220 -0
- package/templates/vue-app/files/src/assets/styles/mixin.scss +60 -0
- package/templates/vue-app/files/src/assets/styles/publicStyle.scss +224 -0
- package/templates/vue-app/files/src/assets/styles/sidebar.scss +239 -0
- package/templates/vue-app/files/src/assets/styles/transition.scss +48 -0
- package/templates/vue-app/files/src/assets/styles/variables.scss +44 -0
- package/templates/vue-app/files/src/common/flexible.js +145 -0
- package/templates/vue-app/files/src/components/Breadcrumb/index.vue +87 -0
- package/templates/vue-app/files/src/components/Crud/CRUD.operation.vue +248 -0
- package/templates/vue-app/files/src/components/Crud/Pagination.vue +20 -0
- package/templates/vue-app/files/src/components/Crud/RR.operation.vue +39 -0
- package/templates/vue-app/files/src/components/Crud/UD.operation.vue +106 -0
- package/templates/vue-app/files/src/components/Crud/crud.js +907 -0
- package/templates/vue-app/files/src/components/Crud/user/UR.operation.vue +154 -0
- package/templates/vue-app/files/src/components/DateRangePicker/index.vue +42 -0
- package/templates/vue-app/files/src/components/DateRangePickerProhibitNext/index.vue +42 -0
- package/templates/vue-app/files/src/components/DateRangePickerProhibitTodayNext/index.vue +48 -0
- package/templates/vue-app/files/src/components/Dict/Dict.js +31 -0
- package/templates/vue-app/files/src/components/Dict/index.js +29 -0
- package/templates/vue-app/files/src/components/Doc/index.vue +16 -0
- package/templates/vue-app/files/src/components/Echarts/BarChart.vue +115 -0
- package/templates/vue-app/files/src/components/Echarts/Category.vue +768 -0
- package/templates/vue-app/files/src/components/Echarts/Funnel.vue +120 -0
- package/templates/vue-app/files/src/components/Echarts/Gauge.vue +74 -0
- package/templates/vue-app/files/src/components/Echarts/Graph.vue +101 -0
- package/templates/vue-app/files/src/components/Echarts/HeatMap.vue +301 -0
- package/templates/vue-app/files/src/components/Echarts/Line3D.vue +110 -0
- package/templates/vue-app/files/src/components/Echarts/PieChart.vue +84 -0
- package/templates/vue-app/files/src/components/Echarts/Point.vue +161 -0
- package/templates/vue-app/files/src/components/Echarts/RadarChart.vue +123 -0
- package/templates/vue-app/files/src/components/Echarts/Rich.vue +160 -0
- package/templates/vue-app/files/src/components/Echarts/Sankey.vue +114 -0
- package/templates/vue-app/files/src/components/Echarts/Scatter.vue +192 -0
- package/templates/vue-app/files/src/components/Echarts/Sunburst.vue +127 -0
- package/templates/vue-app/files/src/components/Echarts/ThemeRiver.vue +233 -0
- package/templates/vue-app/files/src/components/Echarts/WordCloud.vue +201 -0
- package/templates/vue-app/files/src/components/GithubCorner/index.vue +55 -0
- package/templates/vue-app/files/src/components/Hamburger/index.vue +44 -0
- package/templates/vue-app/files/src/components/HeaderSearch/index.vue +196 -0
- package/templates/vue-app/files/src/components/IconSelect/index.vue +74 -0
- package/templates/vue-app/files/src/components/IconSelect/requireIcons.js +10 -0
- package/templates/vue-app/files/src/components/Iframe/index.vue +30 -0
- package/templates/vue-app/files/src/components/JavaEdit/index.vue +78 -0
- package/templates/vue-app/files/src/components/Pagination/index.vue +100 -0
- package/templates/vue-app/files/src/components/PanThumb/index.vue +149 -0
- package/templates/vue-app/files/src/components/ParentView/index.vue +3 -0
- package/templates/vue-app/files/src/components/Permission/index.js +13 -0
- package/templates/vue-app/files/src/components/Permission/permission.js +21 -0
- package/templates/vue-app/files/src/components/RightPanel/index.vue +149 -0
- package/templates/vue-app/files/src/components/Screenfull/index.vue +60 -0
- package/templates/vue-app/files/src/components/SizeSelect/index.vue +60 -0
- package/templates/vue-app/files/src/components/SvgIcon/index.vue +66 -0
- package/templates/vue-app/files/src/components/ThemePicker/index.vue +177 -0
- package/templates/vue-app/files/src/components/UploadExcel/index.vue +149 -0
- package/templates/vue-app/files/src/components/WaterMark/setWaterMark.js +68 -0
- package/templates/vue-app/files/src/components/WaterMark/waterMark.vue +69 -0
- package/templates/vue-app/files/src/components/Xgplayer/index.vue +49 -0
- package/templates/vue-app/files/src/components/YamlEdit/index.vue +81 -0
- package/templates/vue-app/files/src/layout/components/AppMain.vue +67 -0
- package/templates/vue-app/files/src/layout/components/Navbar.vue +209 -0
- package/templates/vue-app/files/src/layout/components/Settings/index.vue +125 -0
- package/templates/vue-app/files/src/layout/components/Sidebar/FixiOSBug.js +26 -0
- package/templates/vue-app/files/src/layout/components/Sidebar/Item.vue +29 -0
- package/templates/vue-app/files/src/layout/components/Sidebar/Link.vue +35 -0
- package/templates/vue-app/files/src/layout/components/Sidebar/Logo.vue +93 -0
- package/templates/vue-app/files/src/layout/components/Sidebar/SidebarItem.vue +104 -0
- package/templates/vue-app/files/src/layout/components/Sidebar/index.vue +79 -0
- package/templates/vue-app/files/src/layout/components/TagsView/ScrollPane.vue +90 -0
- package/templates/vue-app/files/src/layout/components/TagsView/index.vue +299 -0
- package/templates/vue-app/files/src/layout/components/index.js +5 -0
- package/templates/vue-app/files/src/layout/index.vue +119 -0
- package/templates/vue-app/files/src/layout/mixin/ResizeHandler.js +45 -0
- package/templates/vue-app/files/src/main.js +89 -0
- package/templates/vue-app/files/src/mixins/crud.js +348 -0
- package/templates/vue-app/files/src/router/index.js +156 -0
- package/templates/vue-app/files/src/router/routers.js +203 -0
- package/templates/vue-app/files/src/settings.js +57 -0
- package/templates/vue-app/files/src/store/getters.js +29 -0
- package/templates/vue-app/files/src/store/index.js +25 -0
- package/templates/vue-app/files/src/store/modules/api.js +33 -0
- package/templates/vue-app/files/src/store/modules/app.js +55 -0
- package/templates/vue-app/files/src/store/modules/permission.js +79 -0
- package/templates/vue-app/files/src/store/modules/register.js +17 -0
- package/templates/vue-app/files/src/store/modules/settings.js +46 -0
- package/templates/vue-app/files/src/store/modules/tagsView.js +168 -0
- package/templates/vue-app/files/src/store/modules/user.js +119 -0
- package/templates/vue-app/files/src/utils/auth.js +18 -0
- package/templates/vue-app/files/src/utils/base64ToFile.js +27 -0
- package/templates/vue-app/files/src/utils/clipboard.js +36 -0
- package/templates/vue-app/files/src/utils/datetime.js +289 -0
- package/templates/vue-app/files/src/utils/getBlobFile.js +10 -0
- package/templates/vue-app/files/src/utils/getTime.js +29 -0
- package/templates/vue-app/files/src/utils/index.js +520 -0
- package/templates/vue-app/files/src/utils/permission.js +29 -0
- package/templates/vue-app/files/src/utils/pinyin.js +450 -0
- package/templates/vue-app/files/src/utils/request.js +139 -0
- package/templates/vue-app/files/src/utils/rsaEncrypt.js +37 -0
- package/templates/vue-app/files/src/utils/shortcuts.js +210 -0
- package/templates/vue-app/files/src/utils/upload.js +12 -0
- package/templates/vue-app/files/src/utils/validate.js +262 -0
- package/templates/vue-app/files/src/views/components/Echarts.vue +124 -0
- package/templates/vue-app/files/src/views/components/Editor.vue +75 -0
- package/templates/vue-app/files/src/views/components/MarkDown.vue +44 -0
- package/templates/vue-app/files/src/views/components/UVideo.vue +37 -0
- package/templates/vue-app/files/src/views/components/YamlEdit.vue +206 -0
- package/templates/vue-app/files/src/views/components/camera/camera.vue +115 -0
- package/templates/vue-app/files/src/views/components/camera/cameraTest.vue +158 -0
- package/templates/vue-app/files/src/views/components/excel/upload-excel.vue +41 -0
- package/templates/vue-app/files/src/views/components/icons/element-icons.js +74 -0
- package/templates/vue-app/files/src/views/components/icons/index.vue +106 -0
- package/templates/vue-app/files/src/views/components/icons/svg-icons.js +10 -0
- package/templates/vue-app/files/src/views/components/scroll/index.vue +107 -0
- package/templates/vue-app/files/src/views/components/scrollFull/index.vue +99 -0
- package/templates/vue-app/files/src/views/dashboard/LineChart.vue +138 -0
- package/templates/vue-app/files/src/views/dashboard/PanelGroup.vue +173 -0
- package/templates/vue-app/files/src/views/dashboard/mixins/resize.js +57 -0
- package/templates/vue-app/files/src/views/dataArchive/delTable.vue +354 -0
- package/templates/vue-app/files/src/views/dataArchive/exportDetail.vue +121 -0
- package/templates/vue-app/files/src/views/dataArchive/exportList.vue +160 -0
- package/templates/vue-app/files/src/views/dataArchive/index.vue +2104 -0
- package/templates/vue-app/files/src/views/features/401.vue +83 -0
- package/templates/vue-app/files/src/views/features/404.vue +226 -0
- package/templates/vue-app/files/src/views/features/redirect.vue +12 -0
- package/templates/vue-app/files/src/views/generator/config.vue +348 -0
- package/templates/vue-app/files/src/views/generator/index.vue +143 -0
- package/templates/vue-app/files/src/views/generator/preview.vue +39 -0
- package/templates/vue-app/files/src/views/home.vue +80 -0
- package/templates/vue-app/files/src/views/indexManagement/index.vue +422 -0
- package/templates/vue-app/files/src/views/indexManagement/other.vue +286 -0
- package/templates/vue-app/files/src/views/institutionMonitor/components/LineChart.vue +191 -0
- package/templates/vue-app/files/src/views/institutionMonitor/index.scss +339 -0
- package/templates/vue-app/files/src/views/institutionMonitor/index.vue +1385 -0
- package/templates/vue-app/files/src/views/institutionMonitor/mixins/resize.js +57 -0
- package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/checkProjectCode.vue +267 -0
- package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/imageAbnormalMonitor.vue +361 -0
- package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/index.vue +686 -0
- package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/leakageAnomaly.vue +270 -0
- package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/moveMonitore.vue +114 -0
- package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/qualityMonitore.vue +338 -0
- package/templates/vue-app/files/src/views/institutionSet/cloudSet.vue +534 -0
- package/templates/vue-app/files/src/views/institutionSet/index.vue +2550 -0
- package/templates/vue-app/files/src/views/login.vue +243 -0
- package/templates/vue-app/files/src/views/qualityLogin.vue +280 -0
- package/templates/vue-app/files/src/views/selfStatistics/components/LineChart.vue +296 -0
- package/templates/vue-app/files/src/views/selfStatistics/hospitalDetail/index.vue +533 -0
- package/templates/vue-app/files/src/views/selfStatistics/index.scss +447 -0
- package/templates/vue-app/files/src/views/selfStatistics/index.vue +903 -0
- package/templates/vue-app/files/src/views/selfStatistics/mixins/resize.js +57 -0
- package/templates/vue-app/files/src/views/selfStatistics/monitorDetail/index.vue +285 -0
- package/templates/vue-app/files/src/views/selfStatistics/offlineDetail/index.vue +104 -0
- package/templates/vue-app/files/src/views/selfStatistics/selfActiveDetail/index.vue +104 -0
- package/templates/vue-app/files/src/views/selfStatistics/selfMonitorDetail/index.vue +420 -0
- package/templates/vue-app/files/src/views/selfStatistics/setWaterMark/setWaterMark.js +68 -0
- package/templates/vue-app/files/src/views/selfStatistics/setWaterMark/waterMark.vue +69 -0
- package/templates/vue-app/files/src/views/system/dept/index.vue +144 -0
- package/templates/vue-app/files/src/views/system/dict/dictDetail.vue +146 -0
- package/templates/vue-app/files/src/views/system/dict/index.vue +159 -0
- package/templates/vue-app/files/src/views/system/examModality/index.vue +174 -0
- package/templates/vue-app/files/src/views/system/examPart/index.vue +184 -0
- package/templates/vue-app/files/src/views/system/examProject/index.vue +321 -0
- package/templates/vue-app/files/src/views/system/examine/index.vue +66 -0
- package/templates/vue-app/files/src/views/system/job/index.vue +119 -0
- package/templates/vue-app/files/src/views/system/job/module/form.vue +72 -0
- package/templates/vue-app/files/src/views/system/job/module/header.vue +48 -0
- package/templates/vue-app/files/src/views/system/menu/index.vue +327 -0
- package/templates/vue-app/files/src/views/system/model/index.vue +285 -0
- package/templates/vue-app/files/src/views/system/role/index.vue +434 -0
- package/templates/vue-app/files/src/views/system/sysSet/index.vue +84 -0
- package/templates/vue-app/files/src/views/system/timing/index.vue +289 -0
- package/templates/vue-app/files/src/views/system/timing/log.vue +143 -0
- package/templates/vue-app/files/src/views/system/user/admin.vue +414 -0
- package/templates/vue-app/files/src/views/system/user/center/updateEmail.vue +146 -0
- package/templates/vue-app/files/src/views/system/user/center/updatePass.vue +168 -0
- package/templates/vue-app/files/src/views/system/user/center.vue +140 -0
- package/templates/vue-app/files/src/views/system/user/index.vue +972 -0
- package/templates/vue-app/files/src/views/systemSet/role/index.vue +314 -0
- package/templates/vue-app/files/src/views/systemSet/user/admin.vue +414 -0
- package/templates/vue-app/files/src/views/systemSet/user/center/updateEmail.vue +146 -0
- package/templates/vue-app/files/src/views/systemSet/user/center/updatePass.vue +115 -0
- package/templates/vue-app/files/src/views/systemSet/user/center.vue +351 -0
- package/templates/vue-app/files/src/views/systemSet/user/index.vue +928 -0
- package/templates/vue-app/files/src/views/tools/aliPay/config.vue +102 -0
- package/templates/vue-app/files/src/views/tools/aliPay/index.vue +48 -0
- package/templates/vue-app/files/src/views/tools/aliPay/toPay.vue +91 -0
- package/templates/vue-app/files/src/views/tools/email/config.vue +91 -0
- package/templates/vue-app/files/src/views/tools/email/index.vue +42 -0
- package/templates/vue-app/files/src/views/tools/email/send.vue +159 -0
- package/templates/vue-app/files/src/views/tools/storage/index.vue +35 -0
- package/templates/vue-app/files/src/views/tools/storage/local/index.vue +207 -0
- package/templates/vue-app/files/src/views/tools/storage/qiniu/form.vue +108 -0
- package/templates/vue-app/files/src/views/tools/storage/qiniu/index.vue +241 -0
- package/templates/vue-app/files/src/views/tools/swagger/index.vue +14 -0
- package/templates/vue-app/files/vue.config.js +173 -0
- package/templates/vue-app/template.json +30 -0
|
@@ -0,0 +1,768 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div :class="className" :style="{ height: height, width: width }" />
|
|
3
|
+
</template>
|
|
4
|
+
|
|
5
|
+
<script>
|
|
6
|
+
import echarts from 'echarts';
|
|
7
|
+
|
|
8
|
+
require('echarts/theme/macarons'); // echarts theme
|
|
9
|
+
import { debounce } from '@/utils';
|
|
10
|
+
|
|
11
|
+
export default {
|
|
12
|
+
props: {
|
|
13
|
+
className: {
|
|
14
|
+
type: String,
|
|
15
|
+
default: 'chart',
|
|
16
|
+
},
|
|
17
|
+
width: {
|
|
18
|
+
type: String,
|
|
19
|
+
default: '100%',
|
|
20
|
+
},
|
|
21
|
+
height: {
|
|
22
|
+
type: String,
|
|
23
|
+
default: '500px',
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
data() {
|
|
27
|
+
return {
|
|
28
|
+
chart: null,
|
|
29
|
+
};
|
|
30
|
+
},
|
|
31
|
+
mounted() {
|
|
32
|
+
this.initChart();
|
|
33
|
+
this.__resizeHandler = debounce(() => {
|
|
34
|
+
if (this.chart) {
|
|
35
|
+
this.chart.resize();
|
|
36
|
+
}
|
|
37
|
+
}, 100);
|
|
38
|
+
window.addEventListener('resize', this.__resizeHandler);
|
|
39
|
+
},
|
|
40
|
+
beforeDestroy() {
|
|
41
|
+
if (!this.chart) {
|
|
42
|
+
return;
|
|
43
|
+
}
|
|
44
|
+
window.removeEventListener('resize', this.__resizeHandler);
|
|
45
|
+
this.chart.dispose();
|
|
46
|
+
this.chart = null;
|
|
47
|
+
},
|
|
48
|
+
methods: {
|
|
49
|
+
initChart() {
|
|
50
|
+
this.chart = echarts.init(this.$el, 'macarons');
|
|
51
|
+
const dataMap = {};
|
|
52
|
+
|
|
53
|
+
function dataFormatter(obj) {
|
|
54
|
+
const pList = [
|
|
55
|
+
'北京',
|
|
56
|
+
'天津',
|
|
57
|
+
'河北',
|
|
58
|
+
'山西',
|
|
59
|
+
'内蒙古',
|
|
60
|
+
'辽宁',
|
|
61
|
+
'吉林',
|
|
62
|
+
'黑龙江',
|
|
63
|
+
'上海',
|
|
64
|
+
'江苏',
|
|
65
|
+
'浙江',
|
|
66
|
+
'安徽',
|
|
67
|
+
'福建',
|
|
68
|
+
'江西',
|
|
69
|
+
'山东',
|
|
70
|
+
'河南',
|
|
71
|
+
'湖北',
|
|
72
|
+
'湖南',
|
|
73
|
+
'广东',
|
|
74
|
+
'广西',
|
|
75
|
+
'海南',
|
|
76
|
+
'重庆',
|
|
77
|
+
'四川',
|
|
78
|
+
'贵州',
|
|
79
|
+
'云南',
|
|
80
|
+
'西藏',
|
|
81
|
+
'陕西',
|
|
82
|
+
'甘肃',
|
|
83
|
+
'青海',
|
|
84
|
+
'宁夏',
|
|
85
|
+
'新疆',
|
|
86
|
+
];
|
|
87
|
+
let temp;
|
|
88
|
+
for (let year = 2002; year <= 2011; year++) {
|
|
89
|
+
let max = 0;
|
|
90
|
+
let sum = 0;
|
|
91
|
+
temp = obj[year];
|
|
92
|
+
for (let i = 0, l = temp.length; i < l; i++) {
|
|
93
|
+
max = Math.max(max, temp[i]);
|
|
94
|
+
sum += temp[i];
|
|
95
|
+
obj[year][i] = {
|
|
96
|
+
name: pList[i],
|
|
97
|
+
value: temp[i],
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
obj[year + 'max'] = Math.floor(max / 100) * 100;
|
|
101
|
+
obj[year + 'sum'] = sum;
|
|
102
|
+
}
|
|
103
|
+
return obj;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
dataMap.dataGDP = dataFormatter({
|
|
107
|
+
2011: [
|
|
108
|
+
16251.93, 11307.28, 24515.76, 11237.55, 14359.88, 22226.7, 10568.83, 12582, 19195.69,
|
|
109
|
+
49110.27, 32318.85, 15300.65, 17560.18, 11702.82, 45361.85, 26931.03, 19632.26, 19669.56,
|
|
110
|
+
53210.28, 11720.87, 2522.66, 10011.37, 21026.68, 5701.84, 8893.12, 605.83, 12512.3,
|
|
111
|
+
5020.37, 1670.44, 2102.21, 6610.05,
|
|
112
|
+
],
|
|
113
|
+
2010: [
|
|
114
|
+
14113.58, 9224.46, 20394.26, 9200.86, 11672, 18457.27, 8667.58, 10368.6, 17165.98,
|
|
115
|
+
41425.48, 27722.31, 12359.33, 14737.12, 9451.26, 39169.92, 23092.36, 15967.61, 16037.96,
|
|
116
|
+
46013.06, 9569.85, 2064.5, 7925.58, 17185.48, 4602.16, 7224.18, 507.46, 10123.48, 4120.75,
|
|
117
|
+
1350.43, 1689.65, 5437.47,
|
|
118
|
+
],
|
|
119
|
+
2009: [
|
|
120
|
+
12153.03, 7521.85, 17235.48, 7358.31, 9740.25, 15212.49, 7278.75, 8587, 15046.45, 34457.3,
|
|
121
|
+
22990.35, 10062.82, 12236.53, 7655.18, 33896.65, 19480.46, 12961.1, 13059.69, 39482.56,
|
|
122
|
+
7759.16, 1654.21, 6530.01, 14151.28, 3912.68, 6169.75, 441.36, 8169.8, 3387.56, 1081.27,
|
|
123
|
+
1353.31, 4277.05,
|
|
124
|
+
],
|
|
125
|
+
2008: [
|
|
126
|
+
11115, 6719.01, 16011.97, 7315.4, 8496.2, 13668.58, 6426.1, 8314.37, 14069.87, 30981.98,
|
|
127
|
+
21462.69, 8851.66, 10823.01, 6971.05, 30933.28, 18018.53, 11328.92, 11555, 36796.71, 7021,
|
|
128
|
+
1503.06, 5793.66, 12601.23, 3561.56, 5692.12, 394.85, 7314.58, 3166.82, 1018.62, 1203.92,
|
|
129
|
+
4183.21,
|
|
130
|
+
],
|
|
131
|
+
2007: [
|
|
132
|
+
9846.81, 5252.76, 13607.32, 6024.45, 6423.18, 11164.3, 5284.69, 7104, 12494.01, 26018.48,
|
|
133
|
+
18753.73, 7360.92, 9248.53, 5800.25, 25776.91, 15012.46, 9333.4, 9439.6, 31777.01,
|
|
134
|
+
5823.41, 1254.17, 4676.13, 10562.39, 2884.11, 4772.52, 341.43, 5757.29, 2703.98, 797.35,
|
|
135
|
+
919.11, 3523.16,
|
|
136
|
+
],
|
|
137
|
+
2006: [
|
|
138
|
+
8117.78, 4462.74, 11467.6, 4878.61, 4944.25, 9304.52, 4275.12, 6211.8, 10572.24, 21742.05,
|
|
139
|
+
15718.47, 6112.5, 7583.85, 4820.53, 21900.19, 12362.79, 7617.47, 7688.67, 26587.76,
|
|
140
|
+
4746.16, 1065.67, 3907.23, 8690.24, 2338.98, 3988.14, 290.76, 4743.61, 2277.35, 648.5,
|
|
141
|
+
725.9, 3045.26,
|
|
142
|
+
],
|
|
143
|
+
2005: [
|
|
144
|
+
6969.52, 3905.64, 10012.11, 4230.53, 3905.03, 8047.26, 3620.27, 5513.7, 9247.66, 18598.69,
|
|
145
|
+
13417.68, 5350.17, 6554.69, 4056.76, 18366.87, 10587.42, 6590.19, 6596.1, 22557.37,
|
|
146
|
+
3984.1, 918.75, 3467.72, 7385.1, 2005.42, 3462.73, 248.8, 3933.72, 1933.98, 543.32,
|
|
147
|
+
612.61, 2604.19,
|
|
148
|
+
],
|
|
149
|
+
2004: [
|
|
150
|
+
6033.21, 3110.97, 8477.63, 3571.37, 3041.07, 6672, 3122.01, 4750.6, 8072.83, 15003.6,
|
|
151
|
+
11648.7, 4759.3, 5763.35, 3456.7, 15021.84, 8553.79, 5633.24, 5641.94, 18864.62, 3433.5,
|
|
152
|
+
819.66, 3034.58, 6379.63, 1677.8, 3081.91, 220.34, 3175.58, 1688.49, 466.1, 537.11,
|
|
153
|
+
2209.09,
|
|
154
|
+
],
|
|
155
|
+
2003: [
|
|
156
|
+
5007.21, 2578.03, 6921.29, 2855.23, 2388.38, 6002.54, 2662.08, 4057.4, 6694.23, 12442.87,
|
|
157
|
+
9705.02, 3923.11, 4983.67, 2807.41, 12078.15, 6867.7, 4757.45, 4659.99, 15844.64, 2821.11,
|
|
158
|
+
713.96, 2555.72, 5333.09, 1426.34, 2556.02, 185.09, 2587.72, 1399.83, 390.2, 445.36,
|
|
159
|
+
1886.35,
|
|
160
|
+
],
|
|
161
|
+
2002: [
|
|
162
|
+
4315, 2150.76, 6018.28, 2324.8, 1940.94, 5458.22, 2348.54, 3637.2, 5741.03, 10606.85,
|
|
163
|
+
8003.67, 3519.72, 4467.55, 2450.48, 10275.5, 6035.48, 4212.82, 4151.54, 13502.42, 2523.73,
|
|
164
|
+
642.73, 2232.86, 4725.01, 1243.43, 2312.82, 162.04, 2253.39, 1232.03, 340.65, 377.16,
|
|
165
|
+
1612.6,
|
|
166
|
+
],
|
|
167
|
+
});
|
|
168
|
+
|
|
169
|
+
dataMap.dataPI = dataFormatter({
|
|
170
|
+
2011: [
|
|
171
|
+
136.27, 159.72, 2905.73, 641.42, 1306.3, 1915.57, 1277.44, 1701.5, 124.94, 3064.78,
|
|
172
|
+
1583.04, 2015.31, 1612.24, 1391.07, 3973.85, 3512.24, 2569.3, 2768.03, 2665.2, 2047.23,
|
|
173
|
+
659.23, 844.52, 2983.51, 726.22, 1411.01, 74.47, 1220.9, 678.75, 155.08, 184.14, 1139.03,
|
|
174
|
+
],
|
|
175
|
+
2010: [
|
|
176
|
+
124.36, 145.58, 2562.81, 554.48, 1095.28, 1631.08, 1050.15, 1302.9, 114.15, 2540.1,
|
|
177
|
+
1360.56, 1729.02, 1363.67, 1206.98, 3588.28, 3258.09, 2147, 2325.5, 2286.98, 1675.06,
|
|
178
|
+
539.83, 685.38, 2482.89, 625.03, 1108.38, 68.72, 988.45, 599.28, 134.92, 159.29, 1078.63,
|
|
179
|
+
],
|
|
180
|
+
2009: [
|
|
181
|
+
118.29, 128.85, 2207.34, 477.59, 929.6, 1414.9, 980.57, 1154.33, 113.82, 2261.86, 1163.08,
|
|
182
|
+
1495.45, 1182.74, 1098.66, 3226.64, 2769.05, 1795.9, 1969.69, 2010.27, 1458.49, 462.19,
|
|
183
|
+
606.8, 2240.61, 550.27, 1067.6, 63.88, 789.64, 497.05, 107.4, 127.25, 759.74,
|
|
184
|
+
],
|
|
185
|
+
2008: [
|
|
186
|
+
112.83, 122.58, 2034.59, 313.58, 907.95, 1302.02, 916.72, 1088.94, 111.8, 2100.11,
|
|
187
|
+
1095.96, 1418.09, 1158.17, 1060.38, 3002.65, 2658.78, 1780, 1892.4, 1973.05, 1453.75,
|
|
188
|
+
436.04, 575.4, 2216.15, 539.19, 1020.56, 60.62, 753.72, 462.27, 105.57, 118.94, 691.07,
|
|
189
|
+
],
|
|
190
|
+
2007: [
|
|
191
|
+
101.26, 110.19, 1804.72, 311.97, 762.1, 1133.42, 783.8, 915.38, 101.84, 1816.31, 986.02,
|
|
192
|
+
1200.18, 1002.11, 905.77, 2509.14, 2217.66, 1378, 1626.48, 1695.57, 1241.35, 361.07,
|
|
193
|
+
482.39, 2032, 446.38, 837.35, 54.89, 592.63, 387.55, 83.41, 97.89, 628.72,
|
|
194
|
+
],
|
|
195
|
+
2006: [
|
|
196
|
+
88.8, 103.35, 1461.81, 276.77, 634.94, 939.43, 672.76, 750.14, 93.81, 1545.05, 925.1,
|
|
197
|
+
1011.03, 865.98, 786.14, 2138.9, 1916.74, 1140.41, 1272.2, 1532.17, 1032.47, 323.48,
|
|
198
|
+
386.38, 1595.48, 382.06, 724.4, 50.9, 484.81, 334, 67.55, 79.54, 527.8,
|
|
199
|
+
],
|
|
200
|
+
2005: [
|
|
201
|
+
88.68, 112.38, 1400, 262.42, 589.56, 882.41, 625.61, 684.6, 90.26, 1461.51, 892.83, 966.5,
|
|
202
|
+
827.36, 727.37, 1963.51, 1892.01, 1082.13, 1100.65, 1428.27, 912.5, 300.75, 463.4,
|
|
203
|
+
1481.14, 368.94, 661.69, 48.04, 435.77, 308.06, 65.34, 72.07, 509.99,
|
|
204
|
+
],
|
|
205
|
+
2004: [
|
|
206
|
+
87.36, 105.28, 1370.43, 276.3, 522.8, 798.43, 568.69, 605.79, 83.45, 1367.58, 814.1,
|
|
207
|
+
950.5, 786.84, 664.5, 1778.45, 1649.29, 1020.09, 1022.45, 1248.59, 817.88, 278.76, 428.05,
|
|
208
|
+
1379.93, 334.5, 607.75, 44.3, 387.88, 286.78, 60.7, 65.33, 461.26,
|
|
209
|
+
],
|
|
210
|
+
2003: [
|
|
211
|
+
84.11, 89.91, 1064.05, 215.19, 420.1, 615.8, 488.23, 504.8, 81.02, 1162.45, 717.85, 749.4,
|
|
212
|
+
692.94, 560, 1480.67, 1198.7, 798.35, 886.47, 1072.91, 658.78, 244.29, 339.06, 1128.61,
|
|
213
|
+
298.69, 494.6, 40.7, 302.66, 237.91, 48.47, 55.63, 412.9,
|
|
214
|
+
],
|
|
215
|
+
2002: [
|
|
216
|
+
82.44, 84.21, 956.84, 197.8, 374.69, 590.2, 446.17, 474.2, 79.68, 1110.44, 685.2, 783.66,
|
|
217
|
+
664.78, 535.98, 1390, 1288.36, 707, 847.25, 1015.08, 601.99, 222.89, 317.87, 1047.95,
|
|
218
|
+
281.1, 463.44, 39.75, 282.21, 215.51, 47.31, 52.95, 305,
|
|
219
|
+
],
|
|
220
|
+
});
|
|
221
|
+
|
|
222
|
+
dataMap.dataSI = dataFormatter({
|
|
223
|
+
2011: [
|
|
224
|
+
3752.48, 5928.32, 13126.86, 6635.26, 8037.69, 12152.15, 5611.48, 5962.41, 7927.89,
|
|
225
|
+
25203.28, 16555.58, 8309.38, 9069.2, 6390.55, 24017.11, 15427.08, 9815.94, 9361.99,
|
|
226
|
+
26447.38, 5675.32, 714.5, 5543.04, 11029.13, 2194.33, 3780.32, 208.79, 6935.59, 2377.83,
|
|
227
|
+
975.18, 1056.15, 3225.9,
|
|
228
|
+
],
|
|
229
|
+
2010: [
|
|
230
|
+
3388.38, 4840.23, 10707.68, 5234, 6367.69, 9976.82, 4506.31, 5025.15, 7218.32, 21753.93,
|
|
231
|
+
14297.93, 6436.62, 7522.83, 5122.88, 21238.49, 13226.38, 7767.24, 7343.19, 23014.53,
|
|
232
|
+
4511.68, 571, 4359.12, 8672.18, 1800.06, 3223.49, 163.92, 5446.1, 1984.97, 744.63, 827.91,
|
|
233
|
+
2592.15,
|
|
234
|
+
],
|
|
235
|
+
2009: [
|
|
236
|
+
2855.55, 3987.84, 8959.83, 3993.8, 5114, 7906.34, 3541.92, 4060.72, 6001.78, 18566.37,
|
|
237
|
+
11908.49, 4905.22, 6005.3, 3919.45, 18901.83, 11010.5, 6038.08, 5687.19, 19419.7, 3381.54,
|
|
238
|
+
443.43, 3448.77, 6711.87, 1476.62, 2582.53, 136.63, 4236.42, 1527.24, 575.33, 662.32,
|
|
239
|
+
1929.59,
|
|
240
|
+
],
|
|
241
|
+
2008: [
|
|
242
|
+
2626.41, 3709.78, 8701.34, 4242.36, 4376.19, 7158.84, 3097.12, 4319.75, 6085.84, 16993.34,
|
|
243
|
+
11567.42, 4198.93, 5318.44, 3554.81, 17571.98, 10259.99, 5082.07, 5028.93, 18502.2,
|
|
244
|
+
3037.74, 423.55, 3057.78, 5823.39, 1370.03, 2452.75, 115.56, 3861.12, 1470.34, 557.12,
|
|
245
|
+
609.98, 2070.76,
|
|
246
|
+
],
|
|
247
|
+
2007: [
|
|
248
|
+
2509.4, 2892.53, 7201.88, 3454.49, 3193.67, 5544.14, 2475.45, 3695.58, 5571.06, 14471.26,
|
|
249
|
+
10154.25, 3370.96, 4476.42, 2975.53, 14647.53, 8282.83, 4143.06, 3977.72, 16004.61,
|
|
250
|
+
2425.29, 364.26, 2368.53, 4648.79, 1124.79, 2038.39, 98.48, 2986.46, 1279.32, 419.03,
|
|
251
|
+
455.04, 1647.55,
|
|
252
|
+
],
|
|
253
|
+
2006: [
|
|
254
|
+
2191.43, 2457.08, 6110.43, 2755.66, 2374.96, 4566.83, 1915.29, 3365.31, 4969.95, 12282.89,
|
|
255
|
+
8511.51, 2711.18, 3695.04, 2419.74, 12574.03, 6724.61, 3365.08, 3187.05, 13469.77,
|
|
256
|
+
1878.56, 308.62, 1871.65, 3775.14, 967.54, 1705.83, 80.1, 2452.44, 1043.19, 331.91,
|
|
257
|
+
351.58, 1459.3,
|
|
258
|
+
],
|
|
259
|
+
2005: [
|
|
260
|
+
2026.51, 2135.07, 5271.57, 2357.04, 1773.21, 3869.4, 1580.83, 2971.68, 4381.2, 10524.96,
|
|
261
|
+
7164.75, 2245.9, 3175.92, 1917.47, 10478.62, 5514.14, 2852.12, 2612.57, 11356.6, 1510.68,
|
|
262
|
+
240.83, 1564, 3067.23, 821.16, 1426.42, 63.52, 1951.36, 838.56, 264.61, 281.05, 1164.79,
|
|
263
|
+
],
|
|
264
|
+
2004: [
|
|
265
|
+
1853.58, 1685.93, 4301.73, 1919.4, 1248.27, 3061.62, 1329.68, 2487.04, 3892.12, 8437.99,
|
|
266
|
+
6250.38, 1844.9, 2770.49, 1566.4, 8478.69, 4182.1, 2320.6, 2190.54, 9280.73, 1253.7,
|
|
267
|
+
205.6, 1376.91, 2489.4, 681.5, 1281.63, 52.74, 1553.1, 713.3, 211.7, 244.05, 914.47,
|
|
268
|
+
],
|
|
269
|
+
2003: [
|
|
270
|
+
1487.15, 1337.31, 3417.56, 1463.38, 967.49, 2898.89, 1098.37, 2084.7, 3209.02, 6787.11,
|
|
271
|
+
5096.38, 1535.29, 2340.82, 1204.33, 6485.05, 3310.14, 1956.02, 1777.74, 7592.78, 984.08,
|
|
272
|
+
175.82, 1135.31, 2014.8, 569.37, 1047.66, 47.64, 1221.17, 572.02, 171.92, 194.27, 719.54,
|
|
273
|
+
],
|
|
274
|
+
2002: [
|
|
275
|
+
1249.99, 1069.08, 2911.69, 1134.31, 754.78, 2609.85, 943.49, 1843.6, 2622.45, 5604.49,
|
|
276
|
+
4090.48, 1337.04, 2036.97, 941.77, 5184.98, 2768.75, 1709.89, 1523.5, 6143.4, 846.89,
|
|
277
|
+
148.88, 958.87, 1733.38, 481.96, 934.88, 32.72, 1007.56, 501.69, 144.51, 153.06, 603.15,
|
|
278
|
+
],
|
|
279
|
+
});
|
|
280
|
+
|
|
281
|
+
dataMap.dataTI = dataFormatter({
|
|
282
|
+
2011: [
|
|
283
|
+
12363.18, 5219.24, 8483.17, 3960.87, 5015.89, 8158.98, 3679.91, 4918.09, 11142.86,
|
|
284
|
+
20842.21, 14180.23, 4975.96, 6878.74, 3921.2, 17370.89, 7991.72, 7247.02, 7539.54,
|
|
285
|
+
24097.7, 3998.33, 1148.93, 3623.81, 7014.04, 2781.29, 3701.79, 322.57, 4355.81, 1963.79,
|
|
286
|
+
540.18, 861.92, 2245.12,
|
|
287
|
+
],
|
|
288
|
+
2010: [
|
|
289
|
+
10600.84, 4238.65, 7123.77, 3412.38, 4209.03, 6849.37, 3111.12, 4040.55, 9833.51,
|
|
290
|
+
17131.45, 12063.82, 4193.69, 5850.62, 3121.4, 14343.14, 6607.89, 6053.37, 6369.27,
|
|
291
|
+
20711.55, 3383.11, 953.67, 2881.08, 6030.41, 2177.07, 2892.31, 274.82, 3688.93, 1536.5,
|
|
292
|
+
470.88, 702.45, 1766.69,
|
|
293
|
+
],
|
|
294
|
+
2009: [
|
|
295
|
+
9179.19, 3405.16, 6068.31, 2886.92, 3696.65, 5891.25, 2756.26, 3371.95, 8930.85, 13629.07,
|
|
296
|
+
9918.78, 3662.15, 5048.49, 2637.07, 11768.18, 5700.91, 5127.12, 5402.81, 18052.59,
|
|
297
|
+
2919.13, 748.59, 2474.44, 5198.8, 1885.79, 2519.62, 240.85, 3143.74, 1363.27, 398.54,
|
|
298
|
+
563.74, 1587.72,
|
|
299
|
+
],
|
|
300
|
+
2008: [
|
|
301
|
+
8375.76, 2886.65, 5276.04, 2759.46, 3212.06, 5207.72, 2412.26, 2905.68, 7872.23, 11888.53,
|
|
302
|
+
8799.31, 3234.64, 4346.4, 2355.86, 10358.64, 5099.76, 4466.85, 4633.67, 16321.46, 2529.51,
|
|
303
|
+
643.47, 2160.48, 4561.69, 1652.34, 2218.81, 218.67, 2699.74, 1234.21, 355.93, 475,
|
|
304
|
+
1421.38,
|
|
305
|
+
],
|
|
306
|
+
2007: [
|
|
307
|
+
7236.15, 2250.04, 4600.72, 2257.99, 2467.41, 4486.74, 2025.44, 2493.04, 6821.11, 9730.91,
|
|
308
|
+
7613.46, 2789.78, 3770, 1918.95, 8620.24, 4511.97, 3812.34, 3835.4, 14076.83, 2156.76,
|
|
309
|
+
528.84, 1825.21, 3881.6, 1312.94, 1896.78, 188.06, 2178.2, 1037.11, 294.91, 366.18,
|
|
310
|
+
1246.89,
|
|
311
|
+
],
|
|
312
|
+
2006: [
|
|
313
|
+
5837.55, 1902.31, 3895.36, 1846.18, 1934.35, 3798.26, 1687.07, 2096.35, 5508.48, 7914.11,
|
|
314
|
+
6281.86, 2390.29, 3022.83, 1614.65, 7187.26, 3721.44, 3111.98, 3229.42, 11585.82, 1835.12,
|
|
315
|
+
433.57, 1649.2, 3319.62, 989.38, 1557.91, 159.76, 1806.36, 900.16, 249.04, 294.78,
|
|
316
|
+
1058.16,
|
|
317
|
+
],
|
|
318
|
+
2005: [
|
|
319
|
+
4854.33, 1658.19, 3340.54, 1611.07, 1542.26, 3295.45, 1413.83, 1857.42, 4776.2, 6612.22,
|
|
320
|
+
5360.1, 2137.77, 2551.41, 1411.92, 5924.74, 3181.27, 2655.94, 2882.88, 9772.5, 1560.92,
|
|
321
|
+
377.17, 1440.32, 2836.73, 815.32, 1374.62, 137.24, 1546.59, 787.36, 213.37, 259.49,
|
|
322
|
+
929.41,
|
|
323
|
+
],
|
|
324
|
+
2004: [
|
|
325
|
+
4092.27, 1319.76, 2805.47, 1375.67, 1270, 2811.95, 1223.64, 1657.77, 4097.26, 5198.03,
|
|
326
|
+
4584.22, 1963.9, 2206.02, 1225.8, 4764.7, 2722.4, 2292.55, 2428.95, 8335.3, 1361.92,
|
|
327
|
+
335.3, 1229.62, 2510.3, 661.8, 1192.53, 123.3, 1234.6, 688.41, 193.7, 227.73, 833.36,
|
|
328
|
+
],
|
|
329
|
+
2003: [
|
|
330
|
+
3435.95, 1150.81, 2439.68, 1176.65, 1000.79, 2487.85, 1075.48, 1467.9, 3404.19, 4493.31,
|
|
331
|
+
3890.79, 1638.42, 1949.91, 1043.08, 4112.43, 2358.86, 2003.08, 1995.78, 7178.94, 1178.25,
|
|
332
|
+
293.85, 1081.35, 2189.68, 558.28, 1013.76, 96.76, 1063.89, 589.91, 169.81, 195.46, 753.91,
|
|
333
|
+
],
|
|
334
|
+
2002: [
|
|
335
|
+
2982.57, 997.47, 2149.75, 992.69, 811.47, 2258.17, 958.88, 1319.4, 3038.9, 3891.92,
|
|
336
|
+
3227.99, 1399.02, 1765.8, 972.73, 3700.52, 1978.37, 1795.93, 1780.79, 6343.94, 1074.85,
|
|
337
|
+
270.96, 956.12, 1943.68, 480.37, 914.5, 89.56, 963.62, 514.83, 148.83, 171.14, 704.5,
|
|
338
|
+
],
|
|
339
|
+
});
|
|
340
|
+
|
|
341
|
+
dataMap.dataEstate = dataFormatter({
|
|
342
|
+
2011: [
|
|
343
|
+
1074.93, 411.46, 918.02, 224.91, 384.76, 876.12, 238.61, 492.1, 1019.68, 2747.89, 1677.13,
|
|
344
|
+
634.92, 911.16, 402.51, 1838.14, 987, 634.67, 518.04, 3321.31, 465.68, 208.71, 396.28,
|
|
345
|
+
620.62, 160.3, 222.31, 17.44, 398.03, 134.25, 29.05, 79.01, 176.22,
|
|
346
|
+
],
|
|
347
|
+
2010: [
|
|
348
|
+
1006.52, 377.59, 697.79, 192, 309.25, 733.37, 212.32, 391.89, 1002.5, 2600.95, 1618.17,
|
|
349
|
+
532.17, 679.03, 340.56, 1622.15, 773.23, 564.41, 464.21, 2813.95, 405.79, 188.33, 266.38,
|
|
350
|
+
558.56, 139.64, 223.45, 14.54, 315.95, 110.02, 25.41, 60.53, 143.44,
|
|
351
|
+
],
|
|
352
|
+
2009: [
|
|
353
|
+
1062.47, 308.73, 612.4, 173.31, 286.65, 605.27, 200.14, 301.18, 1237.56, 2025.39, 1316.84,
|
|
354
|
+
497.94, 656.61, 305.9, 1329.59, 622.98, 546.11, 400.11, 2470.63, 348.98, 121.76, 229.09,
|
|
355
|
+
548.14, 136.15, 205.14, 13.28, 239.92, 101.37, 23.05, 47.56, 115.23,
|
|
356
|
+
],
|
|
357
|
+
2008: [
|
|
358
|
+
844.59, 227.88, 513.81, 166.04, 273.3, 500.81, 182.7, 244.47, 939.34, 1626.13, 1052.03,
|
|
359
|
+
431.27, 506.98, 281.96, 1104.95, 512.42, 526.88, 340.07, 2057.45, 282.96, 95.6, 191.21,
|
|
360
|
+
453.63, 104.81, 195.48, 15.08, 193.27, 93.8, 19.96, 38.85, 89.79,
|
|
361
|
+
],
|
|
362
|
+
2007: [
|
|
363
|
+
821.5, 183.44, 467.97, 134.12, 191.01, 410.43, 153.03, 225.81, 958.06, 1365.71, 981.42,
|
|
364
|
+
366.57, 511.5, 225.96, 953.69, 447.44, 409.65, 301.8, 2029.77, 239.45, 67.19, 196.06,
|
|
365
|
+
376.84, 93.19, 193.59, 13.24, 153.98, 83.52, 16.98, 29.49, 91.28,
|
|
366
|
+
],
|
|
367
|
+
2006: [
|
|
368
|
+
658.3, 156.64, 397.14, 117.01, 136.5, 318.54, 131.01, 194.7, 773.61, 1017.91, 794.41,
|
|
369
|
+
281.98, 435.22, 184.67, 786.51, 348.7, 294.73, 254.81, 1722.07, 192.2, 44.45, 158.2,
|
|
370
|
+
336.2, 80.24, 165.92, 11.92, 125.2, 73.21, 15.17, 25.53, 68.9,
|
|
371
|
+
],
|
|
372
|
+
2005: [
|
|
373
|
+
493.73, 122.67, 330.87, 106, 98.75, 256.77, 112.29, 163.34, 715.97, 799.73, 688.86,
|
|
374
|
+
231.66, 331.8, 171.88, 664.9, 298.19, 217.17, 215.63, 1430.37, 165.05, 38.2, 143.88,
|
|
375
|
+
286.23, 76.38, 148.69, 10.02, 108.62, 63.78, 14.1, 22.97, 55.79,
|
|
376
|
+
],
|
|
377
|
+
2004: [
|
|
378
|
+
436.11, 106.14, 231.08, 95.1, 73.81, 203.1, 97.93, 137.74, 666.3, 534.17, 587.83, 188.28,
|
|
379
|
+
248.44, 167.2, 473.27, 236.44, 204.8, 191.5, 1103.75, 122.52, 30.64, 129.12, 264.3, 68.3,
|
|
380
|
+
116.54, 5.8, 95.9, 56.84, 13, 20.78, 53.55,
|
|
381
|
+
],
|
|
382
|
+
2003: [
|
|
383
|
+
341.88, 92.31, 185.19, 78.73, 61.05, 188.49, 91.99, 127.2, 487.82, 447.47, 473.16, 162.63,
|
|
384
|
+
215.84, 138.02, 418.21, 217.58, 176.8, 186.49, 955.66, 100.93, 25.14, 113.69, 231.72,
|
|
385
|
+
59.86, 103.79, 4.35, 83.9, 48.09, 11.41, 16.85, 47.84,
|
|
386
|
+
],
|
|
387
|
+
2002: [
|
|
388
|
+
298.02, 73.04, 140.89, 65.83, 51.48, 130.94, 76.11, 118.7, 384.86, 371.09, 360.63, 139.18,
|
|
389
|
+
188.09, 125.27, 371.13, 199.31, 145.17, 165.29, 808.16, 82.83, 21.45, 90.48, 210.82,
|
|
390
|
+
53.49, 95.68, 3.42, 77.68, 41.52, 9.74, 13.46, 43.04,
|
|
391
|
+
],
|
|
392
|
+
});
|
|
393
|
+
|
|
394
|
+
dataMap.dataFinancial = dataFormatter({
|
|
395
|
+
2011: [
|
|
396
|
+
2215.41, 756.5, 746.01, 519.32, 447.46, 755.57, 207.65, 370.78, 2277.4, 2600.11, 2730.29,
|
|
397
|
+
503.85, 862.41, 357.44, 1640.41, 868.2, 674.57, 501.09, 2916.13, 445.37, 105.24, 704.66,
|
|
398
|
+
868.15, 297.27, 456.23, 31.7, 432.11, 145.05, 62.56, 134.18, 288.77,
|
|
399
|
+
],
|
|
400
|
+
2010: [
|
|
401
|
+
1863.61, 572.99, 615.42, 448.3, 346.44, 639.27, 190.12, 304.59, 1950.96, 2105.92, 2326.58,
|
|
402
|
+
396.17, 767.58, 241.49, 1361.45, 697.68, 561.27, 463.16, 2658.76, 384.53, 78.12, 496.56,
|
|
403
|
+
654.7, 231.51, 375.08, 27.08, 384.75, 100.54, 54.53, 97.87, 225.2,
|
|
404
|
+
],
|
|
405
|
+
2009: [
|
|
406
|
+
1603.63, 461.2, 525.67, 361.64, 291.1, 560.2, 180.83, 227.54, 1804.28, 1596.98, 1899.33,
|
|
407
|
+
359.6, 612.2, 165.1, 1044.9, 499.92, 479.11, 402.57, 2283.29, 336.82, 65.73, 389.97,
|
|
408
|
+
524.63, 194.44, 351.74, 23.17, 336.21, 88.27, 45.63, 75.54, 198.87,
|
|
409
|
+
],
|
|
410
|
+
2008: [
|
|
411
|
+
1519.19, 368.1, 420.74, 290.91, 219.09, 455.07, 147.24, 177.43, 1414.21, 1298.48, 1653.45,
|
|
412
|
+
313.81, 497.65, 130.57, 880.28, 413.83, 393.05, 334.32, 1972.4, 249.01, 47.33, 303.01,
|
|
413
|
+
411.14, 151.55, 277.66, 22.42, 287.16, 72.49, 36.54, 64.8, 171.97,
|
|
414
|
+
],
|
|
415
|
+
2007: [
|
|
416
|
+
1302.77, 288.17, 347.65, 218.73, 148.3, 386.34, 126.03, 155.48, 1209.08, 1054.25, 1251.43,
|
|
417
|
+
223.85, 385.84, 101.34, 734.9, 302.31, 337.27, 260.14, 1705.08, 190.73, 34.43, 247.46,
|
|
418
|
+
359.11, 122.25, 168.55, 11.51, 231.03, 61.6, 27.67, 51.05, 149.22,
|
|
419
|
+
],
|
|
420
|
+
2006: [
|
|
421
|
+
982.37, 186.87, 284.04, 169.63, 108.21, 303.41, 100.75, 74.17, 825.2, 653.25, 906.37,
|
|
422
|
+
166.01, 243.9, 79.75, 524.94, 219.72, 174.99, 204.72, 899.91, 129.14, 16.37, 213.7, 299.5,
|
|
423
|
+
89.43, 143.62, 6.44, 152.25, 50.51, 23.69, 36.99, 99.25,
|
|
424
|
+
],
|
|
425
|
+
2005: [
|
|
426
|
+
840.2, 147.4, 213.47, 135.07, 72.52, 232.85, 83.63, 35.03, 675.12, 492.4, 686.32, 127.05,
|
|
427
|
+
186.12, 69.55, 448.36, 181.74, 127.32, 162.37, 661.81, 91.93, 13.16, 185.18, 262.26,
|
|
428
|
+
73.67, 130.5, 7.57, 127.58, 44.73, 20.36, 32.25, 80.34,
|
|
429
|
+
],
|
|
430
|
+
2004: [
|
|
431
|
+
713.79, 136.97, 209.1, 110.29, 55.89, 188.04, 77.17, 32.2, 612.45, 440.5, 523.49, 94.1,
|
|
432
|
+
171, 65.1, 343.37, 170.82, 118.85, 118.64, 602.68, 74, 11.56, 162.38, 236.5, 60.3, 118.4,
|
|
433
|
+
5.4, 90.1, 42.99, 19, 27.92, 70.3,
|
|
434
|
+
],
|
|
435
|
+
2003: [
|
|
436
|
+
635.56, 112.79, 199.87, 118.48, 55.89, 145.38, 73.15, 32.2, 517.97, 392.11, 451.54, 87.45,
|
|
437
|
+
150.09, 64.31, 329.71, 165.11, 107.31, 99.35, 534.28, 61.59, 10.68, 147.04, 206.24, 48.01,
|
|
438
|
+
105.48, 4.74, 77.87, 42.31, 17.98, 24.8, 64.92,
|
|
439
|
+
],
|
|
440
|
+
2002: [
|
|
441
|
+
561.91, 76.86, 179.6, 124.1, 48.39, 137.18, 75.45, 31.6, 485.25, 368.86, 347.53, 81.85,
|
|
442
|
+
138.28, 76.51, 310.07, 158.77, 96.95, 92.43, 454.65, 35.86, 10.08, 134.52, 183.13, 41.45,
|
|
443
|
+
102.39, 2.81, 67.3, 42.08, 16.75, 21.45, 52.18,
|
|
444
|
+
],
|
|
445
|
+
});
|
|
446
|
+
|
|
447
|
+
this.chart.setOption({
|
|
448
|
+
baseOption: {
|
|
449
|
+
timeline: {
|
|
450
|
+
axisType: 'category',
|
|
451
|
+
autoPlay: true,
|
|
452
|
+
playInterval: 1000,
|
|
453
|
+
data: [
|
|
454
|
+
'2002-01-01',
|
|
455
|
+
'2003-01-01',
|
|
456
|
+
'2004-01-01',
|
|
457
|
+
{
|
|
458
|
+
value: '2005-01-01',
|
|
459
|
+
tooltip: {
|
|
460
|
+
formatter: '{b} GDP达到一个高度',
|
|
461
|
+
},
|
|
462
|
+
symbol: 'diamond',
|
|
463
|
+
symbolSize: 16,
|
|
464
|
+
},
|
|
465
|
+
'2006-01-01',
|
|
466
|
+
'2007-01-01',
|
|
467
|
+
'2008-01-01',
|
|
468
|
+
'2009-01-01',
|
|
469
|
+
'2010-01-01',
|
|
470
|
+
{
|
|
471
|
+
value: '2011-01-01',
|
|
472
|
+
tooltip: {
|
|
473
|
+
formatter: function (params) {
|
|
474
|
+
return params.name + 'GDP达到又一个高度';
|
|
475
|
+
},
|
|
476
|
+
},
|
|
477
|
+
symbol: 'diamond',
|
|
478
|
+
symbolSize: 18,
|
|
479
|
+
},
|
|
480
|
+
],
|
|
481
|
+
label: {
|
|
482
|
+
formatter: function (s) {
|
|
483
|
+
return new Date(s).getFullYear();
|
|
484
|
+
},
|
|
485
|
+
},
|
|
486
|
+
},
|
|
487
|
+
title: {
|
|
488
|
+
subtext: '数据来自国家统计局',
|
|
489
|
+
},
|
|
490
|
+
tooltip: {},
|
|
491
|
+
legend: {
|
|
492
|
+
x: 'right',
|
|
493
|
+
data: ['第一产业', '第二产业', '第三产业', 'GDP', '金融', '房地产'],
|
|
494
|
+
selected: {
|
|
495
|
+
GDP: false,
|
|
496
|
+
金融: false,
|
|
497
|
+
房地产: false,
|
|
498
|
+
},
|
|
499
|
+
},
|
|
500
|
+
calculable: true,
|
|
501
|
+
grid: {
|
|
502
|
+
top: 80,
|
|
503
|
+
bottom: 100,
|
|
504
|
+
tooltip: {
|
|
505
|
+
trigger: 'axis',
|
|
506
|
+
axisPointer: {
|
|
507
|
+
type: 'shadow',
|
|
508
|
+
label: {
|
|
509
|
+
show: true,
|
|
510
|
+
formatter: function (params) {
|
|
511
|
+
return params.value.replace('\n', '');
|
|
512
|
+
},
|
|
513
|
+
},
|
|
514
|
+
},
|
|
515
|
+
},
|
|
516
|
+
},
|
|
517
|
+
xAxis: [
|
|
518
|
+
{
|
|
519
|
+
type: 'category',
|
|
520
|
+
axisLabel: {
|
|
521
|
+
interval: 0,
|
|
522
|
+
rotate: 45,
|
|
523
|
+
},
|
|
524
|
+
data: [
|
|
525
|
+
'北京',
|
|
526
|
+
'\n天津',
|
|
527
|
+
'河北',
|
|
528
|
+
'\n山西',
|
|
529
|
+
'内蒙古',
|
|
530
|
+
'\n辽宁',
|
|
531
|
+
'吉林',
|
|
532
|
+
'\n黑龙江',
|
|
533
|
+
'上海',
|
|
534
|
+
'\n江苏',
|
|
535
|
+
'浙江',
|
|
536
|
+
'\n安徽',
|
|
537
|
+
'福建',
|
|
538
|
+
'\n江西',
|
|
539
|
+
'山东',
|
|
540
|
+
'\n河南',
|
|
541
|
+
'湖北',
|
|
542
|
+
'\n湖南',
|
|
543
|
+
'广东',
|
|
544
|
+
'\n广西',
|
|
545
|
+
'海南',
|
|
546
|
+
'\n重庆',
|
|
547
|
+
'四川',
|
|
548
|
+
'\n贵州',
|
|
549
|
+
'云南',
|
|
550
|
+
'\n西藏',
|
|
551
|
+
'陕西',
|
|
552
|
+
'\n甘肃',
|
|
553
|
+
'青海',
|
|
554
|
+
'\n宁夏',
|
|
555
|
+
'新疆',
|
|
556
|
+
],
|
|
557
|
+
splitLine: { show: false },
|
|
558
|
+
},
|
|
559
|
+
],
|
|
560
|
+
yAxis: [
|
|
561
|
+
{
|
|
562
|
+
type: 'value',
|
|
563
|
+
name: 'GDP(亿元)',
|
|
564
|
+
},
|
|
565
|
+
],
|
|
566
|
+
series: [
|
|
567
|
+
{ name: 'GDP', type: 'bar' },
|
|
568
|
+
{ name: '金融', type: 'bar' },
|
|
569
|
+
{ name: '房地产', type: 'bar' },
|
|
570
|
+
{ name: '第一产业', type: 'bar' },
|
|
571
|
+
{ name: '第二产业', type: 'bar' },
|
|
572
|
+
{ name: '第三产业', type: 'bar' },
|
|
573
|
+
{
|
|
574
|
+
name: 'GDP占比',
|
|
575
|
+
type: 'pie',
|
|
576
|
+
center: ['75%', '35%'],
|
|
577
|
+
radius: '28%',
|
|
578
|
+
z: 100,
|
|
579
|
+
},
|
|
580
|
+
],
|
|
581
|
+
},
|
|
582
|
+
options: [
|
|
583
|
+
{
|
|
584
|
+
title: { text: '2002全国宏观经济指标' },
|
|
585
|
+
series: [
|
|
586
|
+
{ data: dataMap.dataGDP['2002'] },
|
|
587
|
+
{ data: dataMap.dataFinancial['2002'] },
|
|
588
|
+
{ data: dataMap.dataEstate['2002'] },
|
|
589
|
+
{ data: dataMap.dataPI['2002'] },
|
|
590
|
+
{ data: dataMap.dataSI['2002'] },
|
|
591
|
+
{ data: dataMap.dataTI['2002'] },
|
|
592
|
+
{
|
|
593
|
+
data: [
|
|
594
|
+
{ name: '第一产业', value: dataMap.dataPI['2002sum'] },
|
|
595
|
+
{ name: '第二产业', value: dataMap.dataSI['2002sum'] },
|
|
596
|
+
{ name: '第三产业', value: dataMap.dataTI['2002sum'] },
|
|
597
|
+
],
|
|
598
|
+
},
|
|
599
|
+
],
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
title: { text: '2003全国宏观经济指标' },
|
|
603
|
+
series: [
|
|
604
|
+
{ data: dataMap.dataGDP['2003'] },
|
|
605
|
+
{ data: dataMap.dataFinancial['2003'] },
|
|
606
|
+
{ data: dataMap.dataEstate['2003'] },
|
|
607
|
+
{ data: dataMap.dataPI['2003'] },
|
|
608
|
+
{ data: dataMap.dataSI['2003'] },
|
|
609
|
+
{ data: dataMap.dataTI['2003'] },
|
|
610
|
+
{
|
|
611
|
+
data: [
|
|
612
|
+
{ name: '第一产业', value: dataMap.dataPI['2003sum'] },
|
|
613
|
+
{ name: '第二产业', value: dataMap.dataSI['2003sum'] },
|
|
614
|
+
{ name: '第三产业', value: dataMap.dataTI['2003sum'] },
|
|
615
|
+
],
|
|
616
|
+
},
|
|
617
|
+
],
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
title: { text: '2004全国宏观经济指标' },
|
|
621
|
+
series: [
|
|
622
|
+
{ data: dataMap.dataGDP['2004'] },
|
|
623
|
+
{ data: dataMap.dataFinancial['2004'] },
|
|
624
|
+
{ data: dataMap.dataEstate['2004'] },
|
|
625
|
+
{ data: dataMap.dataPI['2004'] },
|
|
626
|
+
{ data: dataMap.dataSI['2004'] },
|
|
627
|
+
{ data: dataMap.dataTI['2004'] },
|
|
628
|
+
{
|
|
629
|
+
data: [
|
|
630
|
+
{ name: '第一产业', value: dataMap.dataPI['2004sum'] },
|
|
631
|
+
{ name: '第二产业', value: dataMap.dataSI['2004sum'] },
|
|
632
|
+
{ name: '第三产业', value: dataMap.dataTI['2004sum'] },
|
|
633
|
+
],
|
|
634
|
+
},
|
|
635
|
+
],
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
title: { text: '2005全国宏观经济指标' },
|
|
639
|
+
series: [
|
|
640
|
+
{ data: dataMap.dataGDP['2005'] },
|
|
641
|
+
{ data: dataMap.dataFinancial['2005'] },
|
|
642
|
+
{ data: dataMap.dataEstate['2005'] },
|
|
643
|
+
{ data: dataMap.dataPI['2005'] },
|
|
644
|
+
{ data: dataMap.dataSI['2005'] },
|
|
645
|
+
{ data: dataMap.dataTI['2005'] },
|
|
646
|
+
{
|
|
647
|
+
data: [
|
|
648
|
+
{ name: '第一产业', value: dataMap.dataPI['2005sum'] },
|
|
649
|
+
{ name: '第二产业', value: dataMap.dataSI['2005sum'] },
|
|
650
|
+
{ name: '第三产业', value: dataMap.dataTI['2005sum'] },
|
|
651
|
+
],
|
|
652
|
+
},
|
|
653
|
+
],
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
title: { text: '2006全国宏观经济指标' },
|
|
657
|
+
series: [
|
|
658
|
+
{ data: dataMap.dataGDP['2006'] },
|
|
659
|
+
{ data: dataMap.dataFinancial['2006'] },
|
|
660
|
+
{ data: dataMap.dataEstate['2006'] },
|
|
661
|
+
{ data: dataMap.dataPI['2006'] },
|
|
662
|
+
{ data: dataMap.dataSI['2006'] },
|
|
663
|
+
{ data: dataMap.dataTI['2006'] },
|
|
664
|
+
{
|
|
665
|
+
data: [
|
|
666
|
+
{ name: '第一产业', value: dataMap.dataPI['2006sum'] },
|
|
667
|
+
{ name: '第二产业', value: dataMap.dataSI['2006sum'] },
|
|
668
|
+
{ name: '第三产业', value: dataMap.dataTI['2006sum'] },
|
|
669
|
+
],
|
|
670
|
+
},
|
|
671
|
+
],
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
title: { text: '2007全国宏观经济指标' },
|
|
675
|
+
series: [
|
|
676
|
+
{ data: dataMap.dataGDP['2007'] },
|
|
677
|
+
{ data: dataMap.dataFinancial['2007'] },
|
|
678
|
+
{ data: dataMap.dataEstate['2007'] },
|
|
679
|
+
{ data: dataMap.dataPI['2007'] },
|
|
680
|
+
{ data: dataMap.dataSI['2007'] },
|
|
681
|
+
{ data: dataMap.dataTI['2007'] },
|
|
682
|
+
{
|
|
683
|
+
data: [
|
|
684
|
+
{ name: '第一产业', value: dataMap.dataPI['2007sum'] },
|
|
685
|
+
{ name: '第二产业', value: dataMap.dataSI['2007sum'] },
|
|
686
|
+
{ name: '第三产业', value: dataMap.dataTI['2007sum'] },
|
|
687
|
+
],
|
|
688
|
+
},
|
|
689
|
+
],
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
title: { text: '2008全国宏观经济指标' },
|
|
693
|
+
series: [
|
|
694
|
+
{ data: dataMap.dataGDP['2008'] },
|
|
695
|
+
{ data: dataMap.dataFinancial['2008'] },
|
|
696
|
+
{ data: dataMap.dataEstate['2008'] },
|
|
697
|
+
{ data: dataMap.dataPI['2008'] },
|
|
698
|
+
{ data: dataMap.dataSI['2008'] },
|
|
699
|
+
{ data: dataMap.dataTI['2008'] },
|
|
700
|
+
{
|
|
701
|
+
data: [
|
|
702
|
+
{ name: '第一产业', value: dataMap.dataPI['2008sum'] },
|
|
703
|
+
{ name: '第二产业', value: dataMap.dataSI['2008sum'] },
|
|
704
|
+
{ name: '第三产业', value: dataMap.dataTI['2008sum'] },
|
|
705
|
+
],
|
|
706
|
+
},
|
|
707
|
+
],
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
title: { text: '2009全国宏观经济指标' },
|
|
711
|
+
series: [
|
|
712
|
+
{ data: dataMap.dataGDP['2009'] },
|
|
713
|
+
{ data: dataMap.dataFinancial['2009'] },
|
|
714
|
+
{ data: dataMap.dataEstate['2009'] },
|
|
715
|
+
{ data: dataMap.dataPI['2009'] },
|
|
716
|
+
{ data: dataMap.dataSI['2009'] },
|
|
717
|
+
{ data: dataMap.dataTI['2009'] },
|
|
718
|
+
{
|
|
719
|
+
data: [
|
|
720
|
+
{ name: '第一产业', value: dataMap.dataPI['2009sum'] },
|
|
721
|
+
{ name: '第二产业', value: dataMap.dataSI['2009sum'] },
|
|
722
|
+
{ name: '第三产业', value: dataMap.dataTI['2009sum'] },
|
|
723
|
+
],
|
|
724
|
+
},
|
|
725
|
+
],
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
title: { text: '2010全国宏观经济指标' },
|
|
729
|
+
series: [
|
|
730
|
+
{ data: dataMap.dataGDP['2010'] },
|
|
731
|
+
{ data: dataMap.dataFinancial['2010'] },
|
|
732
|
+
{ data: dataMap.dataEstate['2010'] },
|
|
733
|
+
{ data: dataMap.dataPI['2010'] },
|
|
734
|
+
{ data: dataMap.dataSI['2010'] },
|
|
735
|
+
{ data: dataMap.dataTI['2010'] },
|
|
736
|
+
{
|
|
737
|
+
data: [
|
|
738
|
+
{ name: '第一产业', value: dataMap.dataPI['2010sum'] },
|
|
739
|
+
{ name: '第二产业', value: dataMap.dataSI['2010sum'] },
|
|
740
|
+
{ name: '第三产业', value: dataMap.dataTI['2010sum'] },
|
|
741
|
+
],
|
|
742
|
+
},
|
|
743
|
+
],
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
title: { text: '2011全国宏观经济指标' },
|
|
747
|
+
series: [
|
|
748
|
+
{ data: dataMap.dataGDP['2011'] },
|
|
749
|
+
{ data: dataMap.dataFinancial['2011'] },
|
|
750
|
+
{ data: dataMap.dataEstate['2011'] },
|
|
751
|
+
{ data: dataMap.dataPI['2011'] },
|
|
752
|
+
{ data: dataMap.dataSI['2011'] },
|
|
753
|
+
{ data: dataMap.dataTI['2011'] },
|
|
754
|
+
{
|
|
755
|
+
data: [
|
|
756
|
+
{ name: '第一产业', value: dataMap.dataPI['2011sum'] },
|
|
757
|
+
{ name: '第二产业', value: dataMap.dataSI['2011sum'] },
|
|
758
|
+
{ name: '第三产业', value: dataMap.dataTI['2011sum'] },
|
|
759
|
+
],
|
|
760
|
+
},
|
|
761
|
+
],
|
|
762
|
+
},
|
|
763
|
+
],
|
|
764
|
+
});
|
|
765
|
+
},
|
|
766
|
+
},
|
|
767
|
+
};
|
|
768
|
+
</script>
|