|
@@ -40,7 +40,7 @@
|
|
|
<a-col :sm="6" :md="6" :xl="6" class="keep-manage-col">
|
|
|
<a-card class="card-content">
|
|
|
<div slot="title">
|
|
|
- <span style="font-weight: bolder;">运营个人数据</span>
|
|
|
+ <span style="font-weight: bolder;">运营个人数据</span><span>({{userName}})</span>
|
|
|
</div>
|
|
|
<div style="width: 100%;height: 315px;">
|
|
|
<ul class="group-keep-ul">
|
|
@@ -296,6 +296,7 @@
|
|
|
userRankTotalNum:'',
|
|
|
userIdRank:'',
|
|
|
monthCost:'',
|
|
|
+ userName:'',
|
|
|
}
|
|
|
},
|
|
|
filters:{
|
|
@@ -386,6 +387,11 @@
|
|
|
}else{
|
|
|
this.monthCost = '暂无数据'
|
|
|
}
|
|
|
+ if(res.result.userName){
|
|
|
+ this.userName = res.result.userName
|
|
|
+ }else{
|
|
|
+ this.userName = '暂无数据'
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
},
|
|
@@ -783,6 +789,7 @@
|
|
|
this.yestadyNum = 2
|
|
|
}
|
|
|
this.getQueryNewlyData();
|
|
|
+ this.personalData();
|
|
|
},
|
|
|
//获取echart的值
|
|
|
initEchart(idName, optionName) {
|