123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346 |
- <template>
- <div class="report-container report-preview" >
- <div class="report-data-container" :class="reportLayer">
- <div class="report-chart-container " :class="chartLayer">
- <!--echarts-->
- <div class="line-chart" :id="'lineChart_'+groupIndex" v-if="ifBar"></div>
- <div class="pie-chart" :id="'pieChart_'+groupIndex" v-if="ifPie"></div>
- <div class="map-chart" :id="'mapChart_'+groupIndex" v-if="ifMap"></div>
- </div>
- </div>
- <!--下钻弹窗-->
- </div>
- </template>
- <script>
- import {kpiColors} from '@/views/Report/ReportManagement/kpi-color'
- import {barLineOption,pieOption,mapOption} from '@/views/Graph/GraphManagement/echarts-option'
- import {echartsThemes} from '@/views/Report/ReportManagement/echarts-color-themes'
- import {deepCopy, randomStr, numberFormateThousand, GetDateStr} from '@/utils/util'
- export default {
- name: "report",
- props: {
- // table和charts的布局关系
- reportLayer: {
- default: 'report-layer-column'
- },
- // chart接chart的布局关系
- chartLayer: {
- default: 'chart-layer-column'
- },
- chartId: {
- default: false
- },
- // 给echart用的唯一id
- groupIndex: {
- // 这个随机数在一次执行队列里输出的都一样,所以不适用于分组展示的情况
- default: randomStr(),
- },
- },
- data() {
- return {
- // 图表默认配置
- barLineOption: barLineOption,
- pieOption: pieOption,
- mapOption: mapOption,
- viewRes: null
- }
- },
- computed: {
- chartType: {
- // getter
- get: function () {
- return (this.viewRes && this.viewRes.chartType)||null
- },
- // setter
- set: function (newValue) {
- }
- },
- ifMap: {
- // getter
- get: function () {
- let {chartType} = this
- return chartType === 3
- },
- // setter
- set: function (newValue) {
- }
- },
- ifBar: {
- // getter
- get: function () {
- let {chartType} = this
- return chartType === 1
- },
- // setter
- set: function (newValue) {
- }
- },
- ifPie: {
- // getter
- get: function () {
- let {chartType} = this
- return chartType === 2
- },
- // setter
- set: function (newValue) {
- }
- },
- /* 表颜色 */
- chartTheme: {
- get: function () {
- let obj = null
- if(this.viewRes){
- let {colorGroupId} = this.viewRes
- obj = echartsThemes[colorGroupId]
- }
- return obj
- },
- set: function (val) {}
- },
- chartColor: {
- // getter
- get: function () {
- let arr = []
- let {chartTheme} = this
- if(chartTheme){
- arr = chartTheme.data
- }
- return arr
- },
- // setter
- set: function (newValue) {
- }
- },
- },
- watch:{
- },
- created(){
- },
- mounted(){
- this.getList()
- },
- methods: {
- loadMap(){
- let {chartId} = this
- /* 合成检索条件 */
- let params = {chartId}
- this.$api.chart.getChartData(params)
- .then(res => {
- if (res.code == 1) {
- this.getMapChart(res.data.map)
- }
- })
- },
- loadPie(){
- let {chartId} = this
- /* 合成检索条件 */
- let params = {chartId}
- this.$api.chart.getChartData(params)
- .then(res => {
- if (res.code == 1) {
- this.getPieChart(res.data.pie)
- }
- })
- },
- loadBarAndLine(){
- let {chartId} = this
- /* 合成检索条件 */
- let params = {chartId}
- this.$api.chart.getChartData(params)
- .then(res => {
- if (res.code == 1) {
- this.getBarLineChart(res.data.barOrLine)
- }
- })
- },
- getList(){
- let params = { id: this.chartId }
- this.$api.chart.get(params)
- .then(res => {
- if (res.code == 1) {
- this.viewRes = res.data
- if(this.ifBar){
- this.loadBarAndLine()
- }
- if(this.ifPie){
- this.loadPie()
- }
- if(this.ifMap){
- this.loadMap()
- }
- }
- })
- },
- getBarLineChart(data){
- let xAxisColor={
- axisLabel: {
- show: true,
- textStyle: {
- color: '#7f8d9a'
- }
- },
- nameTextStyle:{
- color: '#7f8d9a',
- },
- axisLine:{
- lineStyle:{
- color: '#7f8d9a',
- width: 1
- }
- },
- }
- let yAxisColor={
- axisLabel: {
- show: true,
- textStyle: {
- color: '#7f8d9a'
- },
- formatter: '{value}'
- },
- axisLine:{
- lineStyle:{
- color: '#7f8d9a',
- width: 1
- },
- },
- splitLine:{
- show:true,
- lineStyle:{
- color: '#7f8d9a',
- width: 1
- }
- },
- }
- let xAxis=data.xAxis
- let yAxis=data.yAxis
- let series=data.series
- series.forEach(item=>{
- if(item.unit){
- item.name=item.name+'('+item.unit+')'
- }
- })
- yAxis.forEach((item)=>{
- Object.assign(item,yAxisColor)
- })
- Object.assign(xAxis,xAxisColor)
- let barWidth=20
- let barSeries=series.filter(item=>{
- return item.type==="bar"
- })
- let barNum=barSeries.length
- if(barNum>40){
- barWidth=800/barNum
- }
- if(barWidth<5){
- barWidth=5
- }
- series.map((item)=>{
- return Object.assign(item,{barWidth})
- })
- let option=this.barLineOption
- option.color=this.chartColor
- option.xAxis=[xAxis]
- option.yAxis=yAxis
- option.series=series
- // console.log(JSON.stringify(option))
- let myChart = this.$echarts.init(document.getElementById('lineChart_'+this.groupIndex))
- // 绘制图表
- myChart.setOption(option,true)
- this.$nextTick(function () {
- myChart.resize()
- })
- },
- getPieChart(data){
- let option=this.pieOption
- option.color=this.chartColor
- option.series.data=data.series.map(item=>{
- item.value = Number(item.value)
- return item
- })
- // console.log(JSON.stringify(option))
- let myChart = this.$echarts.init(document.getElementById('pieChart_'+this.groupIndex))
- // 绘制图表
- myChart.setOption(option,true)
- this.$nextTick(function () {
- myChart.resize()
- })
- },
- getMapChart(data){
- let option=this.mapOption
- let map = new BMap.Map('mapChart_'+this.groupIndex) // 创建地图实例
- // let pot = this.searchForm.cityAddr.split(",") || []
- // let lng = pot[0], lat = pot[1]
- // let point = new BMap.Point(lng, lat)
- let point = new BMap.Point(116.3964,39.9093)
- map.centerAndZoom(point, 13) // 初始化地图,设置中心点坐标和地图级别
- map.enableScrollWheelZoom()// 允许滚轮缩放
- map.setMapStyle({
- styleJson: option
- }) // 午夜蓝风格(midnight)
- map.setCenter('犍为县')
- // map.setCenter(this.searchForm.cityCode)
- this.mapObj = map
- this.realtimeHeatmap(data)
- let pt = new BMap.Point(116.3964,39.9093)
- let myIcon = new BMap.Icon(icon, new BMap.Size(53,50))
- let marker2 = new BMap.Marker(pt,{icon:myIcon}) // 创建标注
- this.mapObj.addOverlay(marker2)
- marker2.addEventListener("onmouseover",(e) => {
- var opts = {
- width : 130, // 信息窗口宽度
- height: 100, // 信息窗口高度
- title : "" , // 信息窗口标题
- enableMessage:true,//设置允许信息窗发送短息
- message:"",
- }
- let text = '<div class="el-bs-window"></div>'
- let infoWindow = new BMap.InfoWindow(text, opts); // 创建信息窗口对象
- this.mapObj.openInfoWindow(infoWindow,e.point); //开启信息窗口
- })
- },
- // 热力图
- realtimeHeatmap (data) {
- let params = {areaCode: "511123"}
- let heatmapOverlay = new BMapLib.HeatmapOverlay({"radius":20})
- this.mapObj.addOverlay(heatmapOverlay)
- let points =data
- heatmapOverlay.setDataSet({data:points,max:4500})
- heatmapOverlay.setOptions({ "gradient" : {
- 0:'#25cef3',
- .2:'#d01864',
- .4:'#1979f2',
- .6:'#1979f2',
- .8:'#f3c525',
- 1:'#e60012',
- }})
- heatmapOverlay.show()
- },
- },
- }
- </script>
|