|
@@ -102,7 +102,23 @@
|
|
label="传播量"
|
|
label="传播量"
|
|
>
|
|
>
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- {{ scope.row.playCount | numform }}
|
|
|
|
|
|
+ <el-popover placement="right" width="400" trigger="hover">
|
|
|
|
+ <el-table :data="scope.row.topicDataList">
|
|
|
|
+ <el-table-column
|
|
|
|
+ property="platform"
|
|
|
|
+ label="平台"
|
|
|
|
+ ></el-table-column>
|
|
|
|
+ <el-table-column property="address" label="传播量">
|
|
|
|
+ <template slot-scope="scopeSon">
|
|
|
|
+ {{ scopeSon.row.playCount | numform }}
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ </el-table>
|
|
|
|
+ <div slot="reference">
|
|
|
|
+ {{ scope.row.playCount | numform }}
|
|
|
|
+ <i class="el-icon-warning" style="color: #1890ff"></i>
|
|
|
|
+ </div>
|
|
|
|
+ </el-popover>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|