|
|
|
@ -11,7 +11,7 @@
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-divider></el-divider>
|
|
|
|
|
<el-row class="echarts_row">
|
|
|
|
|
<div id="echarts_box" style="min-width: 600px;height:260px;"></div>
|
|
|
|
|
<div id="echarts_box" style="min-width: 600px;height:500px;"></div>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-col>
|
|
|
|
@ -25,7 +25,7 @@
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-divider></el-divider>
|
|
|
|
|
<el-row class="echarts_row">
|
|
|
|
|
<div id="echarts_line" style="min-width: 600px;height:260px;"></div>
|
|
|
|
|
<div id="echarts_line" style="min-width: 600px;height:500px;"></div>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-col>
|
|
|
|
@ -225,6 +225,7 @@ export default {
|
|
|
|
|
name: '资产账户信息',
|
|
|
|
|
type: 'pie',
|
|
|
|
|
radius: '50%',
|
|
|
|
|
center: ['40%', '50%'],
|
|
|
|
|
data: this.pieMapsInfo,
|
|
|
|
|
// data: [
|
|
|
|
|
// { value: 5000, name: '现金账户 5000' },
|
|
|
|
@ -267,6 +268,14 @@ export default {
|
|
|
|
|
label: {
|
|
|
|
|
backgroundColor: '#6a7985'
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
formatter: (params) =>{
|
|
|
|
|
let tetx=['基准收益率 (HS300)','总资产收益率']
|
|
|
|
|
let info = params[0].name + "<br/>";
|
|
|
|
|
params.forEach(function(item,i){
|
|
|
|
|
info += tetx[i] + " : " + Number(item.value).toFixed(2) + '%'+"<br/>";
|
|
|
|
|
});
|
|
|
|
|
return info;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
xAxis: {
|
|
|
|
|