chart.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. <template>
  2. <div class="report-container report-preview" >
  3. <div class="report-data-container" :class="reportLayer">
  4. <div class="report-chart-container " :class="chartLayer">
  5. <!--echarts-->
  6. <div class="line-chart" :id="'lineChart_'+groupIndex" v-if="ifBar"></div>
  7. <div class="pie-chart" :id="'pieChart_'+groupIndex" v-if="ifPie"></div>
  8. <div class="map-chart" :id="'mapChart_'+groupIndex" v-if="ifMap"></div>
  9. </div>
  10. </div>
  11. <!--下钻弹窗-->
  12. </div>
  13. </template>
  14. <script>
  15. import {kpiColors} from '@/views/Report/ReportManagement/kpi-color'
  16. import {barLineOption,pieOption,mapOption} from '@/views/Graph/GraphManagement/echarts-option'
  17. import {echartsThemes} from '@/views/Report/ReportManagement/echarts-color-themes'
  18. import {deepCopy, randomStr, numberFormateThousand, GetDateStr} from '@/utils/util'
  19. export default {
  20. name: "report",
  21. props: {
  22. // table和charts的布局关系
  23. reportLayer: {
  24. default: 'report-layer-column'
  25. },
  26. // chart接chart的布局关系
  27. chartLayer: {
  28. default: 'chart-layer-column'
  29. },
  30. chartId: {
  31. default: false
  32. },
  33. // 给echart用的唯一id
  34. groupIndex: {
  35. // 这个随机数在一次执行队列里输出的都一样,所以不适用于分组展示的情况
  36. default: randomStr(),
  37. },
  38. },
  39. data() {
  40. return {
  41. // 图表默认配置
  42. barLineOption: barLineOption,
  43. pieOption: pieOption,
  44. mapOption: mapOption,
  45. viewRes: null
  46. }
  47. },
  48. computed: {
  49. chartType: {
  50. // getter
  51. get: function () {
  52. return (this.viewRes && this.viewRes.chartType)||null
  53. },
  54. // setter
  55. set: function (newValue) {
  56. }
  57. },
  58. ifMap: {
  59. // getter
  60. get: function () {
  61. let {chartType} = this
  62. return chartType === 3
  63. },
  64. // setter
  65. set: function (newValue) {
  66. }
  67. },
  68. ifBar: {
  69. // getter
  70. get: function () {
  71. let {chartType} = this
  72. return chartType === 1
  73. },
  74. // setter
  75. set: function (newValue) {
  76. }
  77. },
  78. ifPie: {
  79. // getter
  80. get: function () {
  81. let {chartType} = this
  82. return chartType === 2
  83. },
  84. // setter
  85. set: function (newValue) {
  86. }
  87. },
  88. /* 表颜色 */
  89. chartTheme: {
  90. get: function () {
  91. let obj = null
  92. if(this.viewRes){
  93. let {colorGroupId} = this.viewRes
  94. obj = echartsThemes[colorGroupId]
  95. }
  96. return obj
  97. },
  98. set: function (val) {}
  99. },
  100. chartColor: {
  101. // getter
  102. get: function () {
  103. let arr = []
  104. let {chartTheme} = this
  105. if(chartTheme){
  106. arr = chartTheme.data
  107. }
  108. return arr
  109. },
  110. // setter
  111. set: function (newValue) {
  112. }
  113. },
  114. },
  115. watch:{
  116. },
  117. created(){
  118. },
  119. mounted(){
  120. this.getList()
  121. },
  122. methods: {
  123. loadMap(){
  124. let {chartId} = this
  125. /* 合成检索条件 */
  126. let params = {chartId}
  127. this.$api.chart.getChartData(params)
  128. .then(res => {
  129. if (res.code == 1) {
  130. this.getMapChart(res.data.map)
  131. }
  132. })
  133. },
  134. loadPie(){
  135. let {chartId} = this
  136. /* 合成检索条件 */
  137. let params = {chartId}
  138. this.$api.chart.getChartData(params)
  139. .then(res => {
  140. if (res.code == 1) {
  141. this.getPieChart(res.data.pie)
  142. }
  143. })
  144. },
  145. loadBarAndLine(){
  146. let {chartId} = this
  147. /* 合成检索条件 */
  148. let params = {chartId}
  149. this.$api.chart.getChartData(params)
  150. .then(res => {
  151. if (res.code == 1) {
  152. this.getBarLineChart(res.data.barOrLine)
  153. }
  154. })
  155. },
  156. getList(){
  157. let params = { id: this.chartId }
  158. this.$api.chart.get(params)
  159. .then(res => {
  160. if (res.code == 1) {
  161. this.viewRes = res.data
  162. if(this.ifBar){
  163. this.loadBarAndLine()
  164. }
  165. if(this.ifPie){
  166. this.loadPie()
  167. }
  168. if(this.ifMap){
  169. this.loadMap()
  170. }
  171. }
  172. })
  173. },
  174. getBarLineChart(data){
  175. let xAxisColor={
  176. axisLabel: {
  177. show: true,
  178. textStyle: {
  179. color: '#7f8d9a'
  180. }
  181. },
  182. nameTextStyle:{
  183. color: '#7f8d9a',
  184. },
  185. axisLine:{
  186. lineStyle:{
  187. color: '#7f8d9a',
  188. width: 1
  189. }
  190. },
  191. }
  192. let yAxisColor={
  193. axisLabel: {
  194. show: true,
  195. textStyle: {
  196. color: '#7f8d9a'
  197. },
  198. formatter: '{value}'
  199. },
  200. axisLine:{
  201. lineStyle:{
  202. color: '#7f8d9a',
  203. width: 1
  204. },
  205. },
  206. splitLine:{
  207. show:true,
  208. lineStyle:{
  209. color: '#7f8d9a',
  210. width: 1
  211. }
  212. },
  213. }
  214. let xAxis=data.xAxis
  215. let yAxis=data.yAxis
  216. let series=data.series
  217. series.forEach(item=>{
  218. if(item.unit){
  219. item.name=item.name+'('+item.unit+')'
  220. }
  221. })
  222. yAxis.forEach((item)=>{
  223. Object.assign(item,yAxisColor)
  224. })
  225. Object.assign(xAxis,xAxisColor)
  226. let barWidth=20
  227. let barSeries=series.filter(item=>{
  228. return item.type==="bar"
  229. })
  230. let barNum=barSeries.length
  231. if(barNum>40){
  232. barWidth=800/barNum
  233. }
  234. if(barWidth<5){
  235. barWidth=5
  236. }
  237. series.map((item)=>{
  238. return Object.assign(item,{barWidth})
  239. })
  240. let option=this.barLineOption
  241. option.color=this.chartColor
  242. option.xAxis=[xAxis]
  243. option.yAxis=yAxis
  244. option.series=series
  245. // console.log(JSON.stringify(option))
  246. let myChart = this.$echarts.init(document.getElementById('lineChart_'+this.groupIndex))
  247. // 绘制图表
  248. myChart.setOption(option,true)
  249. this.$nextTick(function () {
  250. myChart.resize()
  251. })
  252. },
  253. getPieChart(data){
  254. let option=this.pieOption
  255. option.color=this.chartColor
  256. option.series.data=data.series.map(item=>{
  257. item.value = Number(item.value)
  258. return item
  259. })
  260. // console.log(JSON.stringify(option))
  261. let myChart = this.$echarts.init(document.getElementById('pieChart_'+this.groupIndex))
  262. // 绘制图表
  263. myChart.setOption(option,true)
  264. this.$nextTick(function () {
  265. myChart.resize()
  266. })
  267. },
  268. getMapChart(data){
  269. let option=this.mapOption
  270. let map = new BMap.Map('mapChart_'+this.groupIndex) // 创建地图实例
  271. // let pot = this.searchForm.cityAddr.split(",") || []
  272. // let lng = pot[0], lat = pot[1]
  273. // let point = new BMap.Point(lng, lat)
  274. let point = new BMap.Point(116.3964,39.9093)
  275. map.centerAndZoom(point, 13) // 初始化地图,设置中心点坐标和地图级别
  276. map.enableScrollWheelZoom()// 允许滚轮缩放
  277. map.setMapStyle({
  278. styleJson: option
  279. }) // 午夜蓝风格(midnight)
  280. map.setCenter('犍为县')
  281. // map.setCenter(this.searchForm.cityCode)
  282. this.mapObj = map
  283. this.realtimeHeatmap(data)
  284. let pt = new BMap.Point(116.3964,39.9093)
  285. let myIcon = new BMap.Icon(icon, new BMap.Size(53,50))
  286. let marker2 = new BMap.Marker(pt,{icon:myIcon}) // 创建标注
  287. this.mapObj.addOverlay(marker2)
  288. marker2.addEventListener("onmouseover",(e) => {
  289. var opts = {
  290. width : 130, // 信息窗口宽度
  291. height: 100, // 信息窗口高度
  292. title : "" , // 信息窗口标题
  293. enableMessage:true,//设置允许信息窗发送短息
  294. message:"",
  295. }
  296. let text = '<div class="el-bs-window"></div>'
  297. let infoWindow = new BMap.InfoWindow(text, opts); // 创建信息窗口对象
  298. this.mapObj.openInfoWindow(infoWindow,e.point); //开启信息窗口
  299. })
  300. },
  301. // 热力图
  302. realtimeHeatmap (data) {
  303. let params = {areaCode: "511123"}
  304. let heatmapOverlay = new BMapLib.HeatmapOverlay({"radius":20})
  305. this.mapObj.addOverlay(heatmapOverlay)
  306. let points =data
  307. heatmapOverlay.setDataSet({data:points,max:4500})
  308. heatmapOverlay.setOptions({ "gradient" : {
  309. 0:'#25cef3',
  310. .2:'#d01864',
  311. .4:'#1979f2',
  312. .6:'#1979f2',
  313. .8:'#f3c525',
  314. 1:'#e60012',
  315. }})
  316. heatmapOverlay.show()
  317. },
  318. },
  319. }
  320. </script>