Commit 3ec952d6 authored by youjie's avatar youjie

no message

parent 8578f94a
......@@ -420,6 +420,15 @@ export default new Router({
title: "引流账号设置"
}
},
{
path: "/DrainageRankingStatistics",
name: "DrainageRankingStatistics",
component: () =>
import('./views/workstatistics/DrainageRankingStatistics'),
meta: {
title: "引流排名统计"
}
},
{
path: "/roomStatistical",
name: "roomStatistical",
......
......@@ -41,7 +41,7 @@
</el-row>
</div>
<div class="activeBox">
<div v-for="item in activeList" @click="clickActive(item)"
<div v-for="item in PlatformTypeList" @click="clickActive(item)"
:class="{'active':msg.PlatformType==item.Id}">
{{item.Name}}
</div>
......@@ -54,6 +54,7 @@
:border="true"
:fit="true"
v-loading="loading"
:default-sort = "{prop: 'date', order: 'descending'}"
>
<el-table-column width="200" fixed prop="AccountName" label="账号名称"></el-table-column>
<el-table-column width="130" prop="State" label="状态">
......@@ -76,41 +77,32 @@
</template>
</el-table-column>
<el-table-column prop="FansNum" label="粉丝数"></el-table-column>
<el-table-column width="100" prop="FansRate" label="粉丝成长率"><template slot-scope="scope">
<el-table-column width="90" prop="FansNum" label="粉丝数" sortable></el-table-column>
<el-table-column width="110" prop="FansRate" label="粉丝成长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.FansRate<0}">{{scope.row.FansRate}}%</span></template></el-table-column>
<el-table-column width="120">
<template slot="header" slot-scope="scope">
<el-tooltip class="item" effect="dark" content="近七天新增粉丝量" placement="top-start">
<p>近七天新增粉丝量</p>
</el-tooltip>
</template>
<template slot-scope="scope">
{{scope.row.AddFansNum}}
</template>
</el-table-column>
<el-table-column width="120" prop="AddFansRate" label="近7天粉丝增长率"><template slot-scope="scope">
<el-table-column width="150" prop="AddFansNum" label="近七天新增粉丝量" sortable></el-table-column>
<el-table-column width="150" prop="AddFansRate" label="近7天粉丝增长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.AddFansRate<0}">{{scope.row.AddFansRate}}%</span></template></el-table-column>
<el-table-column width="100" prop="CollectNum" label="获赞与收藏"></el-table-column>
<el-table-column width="130" prop="CollectRate" label="获赞与收藏增长率"><template slot-scope="scope">
<el-table-column width="110" prop="CollectNum" label="获赞与收藏" sortable></el-table-column>
<el-table-column width="150" prop="CollectRate" label="获赞与收藏增长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.CollectRate<0}">{{scope.row.CollectRate}}%</span></template></el-table-column>
<el-table-column width="120" prop="VisitorNum" label="近七天主页访客"></el-table-column>
<el-table-column width="170" prop="VisitorRate" label="近七天主页访客增长率"><template slot-scope="scope">
<el-table-column width="140" prop="VisitorNum" label="近七天主页访客" sortable></el-table-column>
<el-table-column width="180" prop="VisitorRate" label="近七天主页访客增长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.VisitorRate<0}">{{scope.row.VisitorRate}}%</span></template></el-table-column>
<el-table-column width="120" prop="LookNum" label="近七天观看数"></el-table-column>
<el-table-column width="140" prop="LookRate" label="近七天观看数增长率"><template slot-scope="scope">
<el-table-column width="130" prop="LookNum" label="近七天观看数" sortable></el-table-column>
<el-table-column width="170" prop="LookRate" label="近七天观看数增长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.LookRate<0}">{{scope.row.LookRate}}%</span></template></el-table-column>
<el-table-column width="100" prop="InteractionNum" label="近七天互动数"></el-table-column>
<el-table-column width="150" prop="InteractionRate" label="近七天互动数增长率"><template slot-scope="scope">
<el-table-column width="130" prop="InteractionNum" label="近七天互动数" sortable></el-table-column>
<el-table-column width="170" prop="InteractionRate" label="近七天互动数增长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.InteractionRate<0}">{{scope.row.InteractionRate}}%</span></template></el-table-column>
<el-table-column width="90" prop="DiscussNum" label="近七天评论"></el-table-column>
<el-table-column width="150" prop="DiscussRate" label="近七天评论增长率"><template slot-scope="scope">
<el-table-column width="110" prop="DiscussNum" label="近七天评论" sortable></el-table-column>
<el-table-column width="150" prop="DiscussRate" label="近七天评论增长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.DiscussRate<0}">{{scope.row.DiscussRate}}%</span></template></el-table-column>
<el-table-column width="150" prop="SecondsNum" label="近七天观看总时长(秒)"></el-table-column>
<el-table-column width="170" prop="SecondsRate" label="近七天观看总时长增长率"><template slot-scope="scope">
<el-table-column width="180" prop="SecondsNum" label="近七天观看总时长(秒)" sortable></el-table-column>
<el-table-column width="190" prop="SecondsRate" label="近七天观看总时长增长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.SecondsRate<0}">{{scope.row.SecondsRate}}%</span></template></el-table-column>
<el-table-column width="80" prop="NoteNum" label="笔记数"></el-table-column>
<el-table-column width="120" prop="NoteRate" label="笔记数增长率"><template slot-scope="scope">
<el-table-column width="90" prop="NoteNum" label="笔记数" sortable></el-table-column>
<el-table-column width="130" prop="NoteRate" label="笔记数增长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.NoteRate<0}">{{scope.row.NoteRate}}%</span></template></el-table-column>
<el-table-column width="130" fixed="right" prop="EmpName" label="运营人"></el-table-column>
<el-table-column width="130" fixed="right" label="操作" v-if="isPermission">
......@@ -127,6 +119,7 @@
:border="true"
:fit="true"
v-loading="loading"
:default-sort = "{prop: 'date', order: 'descending'}"
>
<el-table-column width="200" fixed prop="AccountName" label="账号名称"></el-table-column>
<el-table-column width="130" prop="State" label="状态">
......@@ -149,21 +142,21 @@
</template>
</el-table-column>
<el-table-column prop="FansNum" label="粉丝数"></el-table-column>
<el-table-column width="130" prop="FansRate" label="近七天粉丝成长率"><template slot-scope="scope">
<el-table-column width="90" prop="FansNum" label="粉丝数" sortable></el-table-column>
<el-table-column width="150" prop="FansRate" label="近七天粉丝成长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.FansRate<0}">{{scope.row.FansRate}}%</span></template></el-table-column>
<el-table-column width="100" prop="AddFansNum" label="近七天关注"></el-table-column>
<el-table-column width="120" prop="AddFansRate" label="近7天关注增长率"><template slot-scope="scope">
<el-table-column width="110" prop="AddFansNum" label="近七天关注" sortable></el-table-column>
<el-table-column width="150" prop="AddFansRate" label="近7天关注增长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.AddFansRate<0}">{{scope.row.AddFansRate}}%</span></template></el-table-column>
<el-table-column width="100" prop="CollectNum" label="昨日阅读量"></el-table-column>
<el-table-column width="150" prop="VisitorNum" label="近七天阅读(播放)量"></el-table-column>
<el-table-column width="180" prop="VisitorRate" label="近七天阅读(播放)量增长率"><template slot-scope="scope">
<el-table-column width="110" prop="CollectNum" label="昨日阅读量" sortable></el-table-column>
<el-table-column width="160" prop="VisitorNum" label="近七天阅读(播放)量" sortable></el-table-column>
<el-table-column width="200" prop="VisitorRate" label="近七天阅读(播放)量增长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.VisitorRate<0}">{{scope.row.VisitorRate}}%</span></template></el-table-column>
<el-table-column width="170" prop="LookNum" label="近一个月阅读(播放)量"></el-table-column>
<el-table-column width="200" prop="LookRate" label="近一个月阅读(播放)量增长率"><template slot-scope="scope">
<el-table-column width="180" prop="LookNum" label="近一个月阅读(播放)量" sortable></el-table-column>
<el-table-column width="220" prop="LookRate" label="近一个月阅读(播放)量增长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.LookRate<0}">{{scope.row.LookRate}}%</span></template></el-table-column>
<el-table-column width="100" prop="InteractionNum" label="总微博数"></el-table-column>
<el-table-column width="120" prop="InteractionRate" label="总微博数增长率"><template slot-scope="scope">
<el-table-column width="100" prop="InteractionNum" label="总微博数" sortable></el-table-column>
<el-table-column width="140" prop="InteractionRate" label="总微博数增长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.InteractionRate<0}">{{scope.row.InteractionRate}}%</span></template></el-table-column>
<el-table-column width="130" fixed="right" prop="EmpName" label="运营人"></el-table-column>
<el-table-column width="130" fixed="right" label="操作" v-if="isPermission">
......@@ -179,6 +172,7 @@
:border="true"
:fit="true"
v-loading="loading"
:default-sort = "{prop: 'date', order: 'descending'}"
>
<el-table-column width="200" fixed prop="AccountName" label="账号名称"></el-table-column>
<el-table-column width="130" prop="State" label="状态">
......@@ -201,32 +195,32 @@
</template>
</el-table-column>
<el-table-column prop="FansNum" label="粉丝数"></el-table-column>
<el-table-column width="100" prop="FansRate" label="粉丝成长率"><template slot-scope="scope">
<el-table-column width="90" prop="FansNum" label="粉丝数" sortable></el-table-column>
<el-table-column width="110" prop="FansRate" label="粉丝成长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.FansRate<0}">{{scope.row.FansRate}}%</span></template></el-table-column>
<el-table-column width="100" prop="AddFansNum" label="近七天关注"></el-table-column>
<el-table-column width="100" prop="AddFansRate" label="关注成长率"><template slot-scope="scope">
<el-table-column width="110" prop="AddFansNum" label="近七天关注" sortable></el-table-column>
<el-table-column width="110" prop="AddFansRate" label="关注成长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.AddFansRate<0}">{{scope.row.AddFansRate}}%</span></template></el-table-column>
<el-table-column width="100" prop="CollectNum" label="近七天获赞"></el-table-column>
<el-table-column width="100" prop="CollectRate" label="获赞增长率"><template slot-scope="scope">
<el-table-column width="110" prop="CollectNum" label="近七天获赞" sortable></el-table-column>
<el-table-column width="110" prop="CollectRate" label="获赞增长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.CollectRate<0}">{{scope.row.CollectRate}}%</span></template></el-table-column>
<el-table-column width="150" prop="VisitorNum" label="近七天内播放总量"></el-table-column>
<el-table-column width="120" prop="VisitorRate" label="播放总量成长率"><template slot-scope="scope">
<el-table-column width="150" prop="VisitorNum" label="近七天内播放总量" sortable></el-table-column>
<el-table-column width="140" prop="VisitorRate" label="播放总量成长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.VisitorRate<0}">{{scope.row.VisitorRate}}%</span></template></el-table-column>
<el-table-column width="130" prop="LookNum" label="近七天主页访问"></el-table-column>
<el-table-column width="130" prop="LookRate" label="主页访问成长率"><template slot-scope="scope">
<el-table-column width="140" prop="LookNum" label="近七天主页访问" sortable></el-table-column>
<el-table-column width="140" prop="LookRate" label="主页访问成长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.LookRate<0}">{{scope.row.LookRate}}%</span></template></el-table-column>
<el-table-column width="130" prop="InteractionNum" label="近七天作品点赞数"></el-table-column>
<el-table-column width="130" prop="InteractionRate" label="作品点赞数成长率"><template slot-scope="scope">
<el-table-column width="150" prop="InteractionNum" label="近七天作品点赞数" sortable></el-table-column>
<el-table-column width="150" prop="InteractionRate" label="作品点赞数成长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.InteractionRate<0}">{{scope.row.InteractionRate}}%</span></template></el-table-column>
<el-table-column width="130" prop="DiscussNum" label="近七天新增粉丝数"></el-table-column>
<el-table-column width="130" prop="DiscussRate" label="新增粉丝成长率 "><template slot-scope="scope">
<el-table-column width="150" prop="DiscussNum" label="近七天新增粉丝数" sortable></el-table-column>
<el-table-column width="150" prop="DiscussRate" label="新增粉丝成长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.DiscussRate<0}">{{scope.row.DiscussRate}}%</span></template></el-table-column>
<el-table-column width="130" prop="SecondsNum" label="近七天作品评论数"></el-table-column>
<el-table-column width="130" prop="SecondsRate" label="作品评论数成长率"><template slot-scope="scope">
<el-table-column width="150" prop="SecondsNum" label="近七天作品评论数" sortable></el-table-column>
<el-table-column width="150" prop="SecondsRate" label="作品评论数成长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.SecondsRate<0}">{{scope.row.SecondsRate}}%</span></template></el-table-column>
<el-table-column width="100" prop="NoteNum" label="近七天作品数"></el-table-column>
<el-table-column width="90" prop="NoteRate" label="作品增长率"><template slot-scope="scope">
<el-table-column width="130" prop="NoteNum" label="近七天作品数" sortable></el-table-column>
<el-table-column width="110" prop="NoteRate" label="作品增长率" sortable><template slot-scope="scope">
<span :class="{'activeRed':scope.row.NoteRate<0}">{{scope.row.NoteRate}}%</span></template></el-table-column>
<el-table-column width="130" fixed="right" prop="EmpName" label="运营人"></el-table-column>
<el-table-column width="130" fixed="right" label="操作" v-if="isPermission">
......
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