Commit c241363d authored by youjie's avatar youjie

no message

parent a48a86cf
......@@ -214,6 +214,31 @@
</template>
</template>
</el-table-column>
<template slot="append">
<div style="display: flex;padding: 5px;color: black;text-indent: 5px;">
<div style="width: 200px;color: black;">{{totalObj.AccountName}}</div>
<div style="width: 130px;"></div>
<div style="width: 90px;color: black;">{{totalObj.FansNum}}</div>
<div style="width: 110px;color: black;">{{totalObj.FansRate}}%</div>
<div style="width: 0px;color: black;">{{totalObj.AddFansNum?totalObj.AddFansNum:''}}</div>
<div style="width: 0px;color: black;">{{totalObj.AddFansRate?totalObj.AddFansRate:''}}</div>
<div style="width: 0px;color: black;">{{totalObj.CollectNum?totalObj.CollectNum:''}}</div>
<div style="width: 0px;color: black;">{{totalObj.CollectRate?totalObj.CollectRate:''}}</div>
<div style="width: 0px;color: black;">{{totalObj.VisitorNum?totalObj.VisitorNum:''}}</div>
<div style="width: 0px;color: black;">{{totalObj.VisitorRate?totalObj.VisitorRate:''}}</div>
<div style="width: 0px;color: black;">{{totalObj.LookNum?totalObj.LookNum:''}}</div>
<div style="width: 0px;color: black;">{{totalObj.LookRate?totalObj.LookRate:''}}</div>
<div style="width: 0px;color: black;">{{totalObj.InteractionNum?totalObj.InteractionNum:''}}</div>
<div style="width: 0px;color: black;">{{totalObj.InteractionRate?totalObj.InteractionRate:''}}</div>
<div style="width: 0px;color: black;">{{totalObj.DiscussNum?totalObj.DiscussNum:''}}</div>
<div style="width: 0px;color: black;">{{totalObj.DiscussRate?totalObj.DiscussRate:''}}</div>
<div style="width: 0px;color: black;">{{totalObj.SecondsNum?totalObj.SecondsNum:''}}</div>
<div style="width: 0px;color: black;">{{totalObj.SecondsRate?totalObj.SecondsRate:''}}</div>
<div style="width: 0px;color: black;">{{totalObj.NoteNum?totalObj.NoteNum:''}}</div>
<div style="width: 0px;color: black;">{{totalObj.NoteRate?totalObj.NoteRate:''}}</div>
<div style="width: 0px;"></div>
</div>
</template>
</el-table>
<el-table
v-if="msg.PlatformType==2"
......@@ -309,6 +334,14 @@
</template>
</template>
</el-table-column>
<template slot="append">
<div style="display: flex;padding: 5px;color: black;text-indent: 5px;">
<div style="width: 200px;color: black;">{{totalObj.AccountName}}</div>
<div style="width: 130px;"></div>
<div style="width: 90px;color: black;">{{totalObj.FansNum}}</div>
<div style="width: 110px;color: black;">{{totalObj.FansRate}}%</div>
</div>
</template>
</el-table>
<el-table
v-if="msg.PlatformType==3"
......@@ -433,6 +466,14 @@
</template>
</el-table-column>
<template slot="append">
<div style="display: flex;padding: 5px;color: black;text-indent: 5px;">
<div style="width: 200px;color: black;">{{totalObj.AccountName}}</div>
<div style="width: 130px;"></div>
<div style="width: 90px;color: black;">{{totalObj.FansNum}}</div>
<div style="width: 110px;color: black;">{{totalObj.FansRate}}%</div>
</div>
</template>
</el-table>
<div class="ranking-form" v-if="msg.PlatformType!=2">
......@@ -826,6 +867,8 @@
RateList:{},//排名率
RankList:{},//排名
dataList: [],
primitiveData: [],
totalObj:null,
loading: false,
loadingB: false,
activeName: "1",
......@@ -1193,7 +1236,11 @@
addList(datas);
if(res.data.data){
if(res.data.data.List){
this.dataList = res.data.data.List;
this.primitiveData = res.data.data.List
this.dataList = JSON.parse(JSON.stringify(this.primitiveData));
this.dataList.pop()
this.totalObj = this.primitiveData.slice(-1)[0]
console.log(this.totalObj,'======')
}if(res.data.data.RankList){
this.RankList = res.data.data.RankList;
}if(res.data.data.RateList){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment