|
@@ -31,9 +31,9 @@ export default {
|
|
|
series: [
|
|
|
{
|
|
|
type: "funnel",
|
|
|
- left: "10%",
|
|
|
- top: 60,
|
|
|
- bottom: 20,
|
|
|
+ left: "5%",
|
|
|
+ top: 10,
|
|
|
+ bottom: 0,
|
|
|
width: "95%",
|
|
|
min: 0,
|
|
|
max: 100,
|
|
@@ -83,16 +83,16 @@ export default {
|
|
|
this.chartObj.setOption(this.option);
|
|
|
});
|
|
|
},
|
|
|
- setArray(array){
|
|
|
- let _array = array;
|
|
|
+ setArray(array) {
|
|
|
+ let _array = array;
|
|
|
|
|
|
- if (!this.chartObj) {
|
|
|
- this.setChart(_array);
|
|
|
- } else {
|
|
|
- this.option.series[0].data = _array;
|
|
|
- this.chartObj.setOption(this.option);
|
|
|
- }
|
|
|
- this.$forceUpdate();
|
|
|
+ if (!this.chartObj) {
|
|
|
+ this.setChart(_array);
|
|
|
+ } else {
|
|
|
+ this.option.series[0].data = _array;
|
|
|
+ this.chartObj.setOption(this.option);
|
|
|
+ }
|
|
|
+ this.$forceUpdate();
|
|
|
},
|
|
|
},
|
|
|
watch: {
|
|
@@ -100,12 +100,12 @@ export default {
|
|
|
immediate: true,
|
|
|
deep: true,
|
|
|
handler(newValue, oldValue) {
|
|
|
- this.setArray(newValue)
|
|
|
+ this.setArray(newValue);
|
|
|
},
|
|
|
},
|
|
|
},
|
|
|
mounted() {
|
|
|
- this.setArray(this.pusaDep)
|
|
|
+ this.setArray(this.pusaDep);
|
|
|
var _this = this;
|
|
|
window.addEventListener("resize", () => {
|
|
|
if (_this.chartObj) {
|