|
@@ -320,8 +320,9 @@ export default {
|
|
|
reason(params).then((res) => {
|
|
|
res.data.map((a) => {
|
|
|
a.name = a.reason;
|
|
|
- a.value = a.area.toFixed(2);
|
|
|
+ a.value = Number(a.area.toFixed(2));
|
|
|
});
|
|
|
+ console.log(res.data,'---')
|
|
|
this.$refs.tdxz_echart.setOptions(res.data, 0.2);
|
|
|
});
|
|
|
},
|