|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div class="main-content">
|
|
|
|
|
<div class="main-content" style="width: 83%">
|
|
|
|
|
<h3 class="top-title" style="font-size: 24px">{{transformData.taskTitle}}</h3>
|
|
|
|
|
<el-button size="default" type="primary" @click="download">导出传播效果</el-button>
|
|
|
|
|
<h3 class="top-title" style="margin-top: 32px">传播数据</h3>
|
|
|
|
@ -56,7 +56,13 @@
|
|
|
|
|
</el-form>
|
|
|
|
|
<el-table :data="transformList" size="default" border style="width: 1300px">
|
|
|
|
|
<el-table-column prop="userName" label="员工姓名" width="160"></el-table-column>
|
|
|
|
|
<el-table-column prop="departmentName" label="部门" width="240"></el-table-column>
|
|
|
|
|
<el-table-column prop="departmentList" label="部门" width="480">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-tag style="margin-right: 8px" v-for="(item,index) in scope.row.departmentList" :key="index">
|
|
|
|
|
{{item.departmentName}}
|
|
|
|
|
</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="playNumSum" label="播放数" width="100"></el-table-column>
|
|
|
|
|
<el-table-column prop="commendNumSum" label="点赞数" width="100"></el-table-column>
|
|
|
|
|
<el-table-column prop="collectionNumSum" label="收藏数" width="100"></el-table-column>
|
|
|
|
|