1 |
- {"version":3,"sources":["webpack:///src/pages/SystemSet/Restart/index.vue","webpack:///./src/pages/SystemSet/Restart/index.vue?95e5","webpack:///./src/pages/SystemSet/Restart/index.vue"],"names":["Restart","name","props","data","chart","mounted","this","chinaConfigure","beforeDestroy","dispose","methods","console","log","userJson","myChart","echarts_default","a","init","$refs","myEchart","window","onresize","resize","setOption","backgroundColor","tooltip","dataRange","show","min","max","text","realtime","calculable","color","geo","map","roam","label","normal","textStyle","itemStyle","borderColor","emphasis","areaColor","shadowOffsetX","shadowOffsetY","shadowBlur","borderWidth","shadowColor","series","type","coordinateSystem","geoIndex","value","SystemSet_Restart","render","_h","$createElement","_c","_self","staticClass","ref","style","height","width","staticRenderFns","Component","__webpack_require__","normalizeComponent","ssrContext","__webpack_exports__"],"mappings":"iIASAA,GACAC,KAAA,UACAC,OAAA,YACAC,KAHA,WAIA,OACAC,MAAA,OAGAC,QARA,WASAC,KAAAC,kBAEAC,cAXA,WAYAF,KAAAF,QAGAE,KAAAF,MAAAK,UACAH,KAAAF,MAAA,OAEAM,SACAH,eADA,WAEAI,QAAAC,IAAAN,KAAAO,UACA,IAAAC,EAAAC,EAAAC,EAAAC,KAAAX,KAAAY,MAAAC,UACAC,OAAAC,SAAAP,EAAAQ,OACAR,EAAAS,WACAC,gBAAA,UACAC,WACAC,WACAC,MAAA,EACAC,IAAA,EACAC,IAAA,IACAC,MAAA,cACAC,UAAA,EACAC,YAAA,EACAC,OAAA,sCAEAC,KACAC,IAAA,QACAC,MAAA,EACAC,OACAC,QACAX,MAAA,EACAY,WACAN,MAAA,qBAIAO,WACAF,QACAG,YAAA,sBAEAC,UACAC,UAAA,KACAC,cAAA,EACAC,cAAA,EACAC,WAAA,GACAC,YAAA,EACAC,YAAA,wBAIAC,SACAC,KAAA,UACAC,iBAAA,QAGAlD,KAAA,OACAiD,KAAA,MACAE,SAAA,EACAjD,OACAF,KAAA,KACAoD,MAAA,MAEApD,KAAA,KACAoD,MAAA,MAEApD,KAAA,MACAoD,MAAA,KAEApD,KAAA,KACAoD,MAAA,KAEApD,KAAA,KACAoD,MAAA,MAEApD,KAAA,KACAoD,MAAA,aC3FeC,GADEC,OAFjB,WAA0B,IAAaC,EAAblD,KAAamD,eAA0BC,EAAvCpD,KAAuCqD,MAAAD,IAAAF,EAAwB,OAAAE,EAAA,OAAiBE,YAAA,YAAsBF,EAAA,OAAYG,IAAA,WAAAC,OAAuBC,OAAA,QAAAC,MAAA,aAElJC,oBCCjB,IAcAC,EAdyBC,EAAQ,OAcjCC,CACEpE,EACAsD,GATF,EAVA,SAAAe,GACEF,EAAQ,SAaV,KAEA,MAUeG,EAAA,QAAAJ,EAAiB","file":"static/js/13.09085b7259f818d9d1c4.js","sourcesContent":["<template>\r\n <div class=\"echarts\">\r\n <div :style=\"{height:'400px',width:'100%'}\" ref=\"myEchart\"></div>\r\n </div>\r\n</template>\r\n<script>\r\n import echarts from \"echarts\";\r\n // import '../../node_modules/echarts/map/js/world.js'\r\n // import './china.js' // 引入中国地图数据\r\n export default {\r\n name: \"echarts\",\r\n props: [\"userJson\"],\r\n data() {\r\n return {\r\n chart: null\r\n };\r\n },\r\n mounted() {\r\n this.chinaConfigure();\r\n },\r\n beforeDestroy() {\r\n if (!this.chart) {\r\n return;\r\n }\r\n this.chart.dispose();\r\n this.chart = null;\r\n },\r\n methods: {\r\n chinaConfigure() {\r\n console.log(this.userJson)\r\n let myChart = echarts.init(this.$refs.myEchart); //这里是为了获得容器所在位置\r\n window.onresize = myChart.resize;\r\n myChart.setOption({ // 进行相关配置\r\n backgroundColor: \"#02AFDB\",\r\n tooltip: {}, // 鼠标移到图里面的浮动提示框\r\n dataRange: {\r\n show: false,\r\n min: 0,\r\n max: 1000,\r\n text: ['High', 'Low'],\r\n realtime: true,\r\n calculable: true,\r\n color: ['orangered', 'yellow', 'lightskyblue']\r\n },\r\n geo: { // 这个是重点配置区\r\n map: 'china', // 表示中国地图\r\n roam: true,\r\n label: {\r\n normal: {\r\n show: true, // 是否显示对应地名\r\n textStyle: {\r\n color: 'rgba(0,0,0,0.4)'\r\n }\r\n }\r\n },\r\n itemStyle: {\r\n normal: {\r\n borderColor: 'rgba(0, 0, 0, 0.2)'\r\n },\r\n emphasis: {\r\n areaColor: null,\r\n shadowOffsetX: 0,\r\n shadowOffsetY: 0,\r\n shadowBlur: 20,\r\n borderWidth: 0,\r\n shadowColor: 'rgba(0, 0, 0, 0.5)'\r\n }\r\n }\r\n },\r\n series: [{\r\n type: 'scatter',\r\n coordinateSystem: 'geo' // 对应上方配置\r\n },\r\n {\r\n name: '启动次数', // 浮动框的标题\r\n type: 'map',\r\n geoIndex: 0,\r\n data: [{\r\n \"name\": \"北京\",\r\n \"value\": 599\r\n }, {\r\n \"name\": \"上海\",\r\n \"value\": 142\r\n }, {\r\n \"name\": \"黑龙江\",\r\n \"value\": 44\r\n }, {\r\n \"name\": \"深圳\",\r\n \"value\": 92\r\n }, {\r\n \"name\": \"湖北\",\r\n \"value\": 810\r\n }, {\r\n \"name\": \"四川\",\r\n \"value\": 453\r\n }]\r\n }\r\n ]\r\n })\r\n }\r\n }\r\n }\r\n</script>\r\n<style>\r\n\r\n</style>\r\n\n\n\n// WEBPACK FOOTER //\n// src/pages/SystemSet/Restart/index.vue","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"echarts\"},[_c('div',{ref:\"myEchart\",style:({height:'400px',width:'100%'})})])}\nvar staticRenderFns = []\nvar esExports = { render: render, staticRenderFns: staticRenderFns }\nexport default esExports\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/vue-loader/lib/template-compiler?{\"id\":\"data-v-e8e6756a\",\"hasScoped\":false,\"transformToRequire\":{\"video\":[\"src\",\"poster\"],\"source\":\"src\",\"img\":\"src\",\"image\":\"xlink:href\"},\"buble\":{\"transforms\":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/pages/SystemSet/Restart/index.vue\n// module id = null\n// module chunks = ","function injectStyle (ssrContext) {\n require(\"!!../../../../node_modules/extract-text-webpack-plugin/dist/loader.js?{\\\"omit\\\":1,\\\"remove\\\":true,\\\"publicPath\\\":\\\"../../\\\"}!vue-style-loader!css-loader?{\\\"sourceMap\\\":true}!../../../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-e8e6756a\\\",\\\"scoped\\\":false,\\\"hasInlineConfig\\\":false}!../../../../node_modules/vue-loader/lib/selector?type=styles&index=0!./index.vue\")\n}\nvar normalizeComponent = require(\"!../../../../node_modules/vue-loader/lib/component-normalizer\")\n/* script */\nexport * from \"!!babel-loader!../../../../node_modules/vue-loader/lib/selector?type=script&index=0!./index.vue\"\nimport __vue_script__ from \"!!babel-loader!../../../../node_modules/vue-loader/lib/selector?type=script&index=0!./index.vue\"\n/* template */\nimport __vue_template__ from \"!!../../../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-e8e6756a\\\",\\\"hasScoped\\\":false,\\\"transformToRequire\\\":{\\\"video\\\":[\\\"src\\\",\\\"poster\\\"],\\\"source\\\":\\\"src\\\",\\\"img\\\":\\\"src\\\",\\\"image\\\":\\\"xlink:href\\\"},\\\"buble\\\":{\\\"transforms\\\":{}}}!../../../../node_modules/vue-loader/lib/selector?type=template&index=0!./index.vue\"\n/* template functional */\nvar __vue_template_functional__ = false\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_template_functional__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./src/pages/SystemSet/Restart/index.vue\n// module id = null\n// module chunks = "],"sourceRoot":""}
|