|
|
@@ -77,7 +77,6 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
changeSelect(code, max = 1000, min = 30, showLabel = true) {
|
|
|
- console.log(code, max);
|
|
|
if (code.toString().indexOf('00') !== -1) {
|
|
|
this.selectValue = code;
|
|
|
this.valList = [min, max];
|
|
|
@@ -208,7 +207,6 @@ export default {
|
|
|
data: this.produceDataSeries(this.mapInfos.length, this.valList[1])
|
|
|
};
|
|
|
this.active = this.mapInfos[0].properties.name;
|
|
|
- console.log(this.selectValue);
|
|
|
this.myChart.setOption({
|
|
|
color: '#0A2B6A',
|
|
|
geo3D: {
|
|
|
@@ -314,7 +312,6 @@ export default {
|
|
|
});
|
|
|
this.myChart.getZr().on('click', () => {
|
|
|
let isOn = document.getElementById('map-chart').children[0].style.cursor === 'pointer';
|
|
|
- console.log(isOn);
|
|
|
if (isOn) {
|
|
|
let code = this.getCode(this.active);
|
|
|
let index = this.mapInfos.findIndex(item => {
|