@@ -111,7 +111,7 @@ export default { | |||
.tooltip('lc*area', (lc,area) => { | |||
return { | |||
name:lc, | |||
value: parseFloat(area).toFixed(2) + ' 公顷', | |||
value: (parseFloat(area)/10000).toFixed(2) + ' 公顷', | |||
}; | |||
}); | |||
@@ -7,7 +7,7 @@ | |||
</p> | |||
<ul class="paramsList"> | |||
<li class="placeValue">用地类型:{{dataList.lc}}</li> | |||
<li class="placeValue">占地面积为:{{parseFloat(dataList.area).toFixed(2)}}公顷</li> | |||
<li class="placeValue">占地面积为:{{(parseFloat(dataList.area)/10000).toFixed(2)}}公顷</li> | |||
<li class="placeValue">土地占比:{{parseFloat(dataList.ratio).toFixed(2)}}%</li> | |||
</ul> | |||