|
|
@ -483,6 +483,60 @@ const format3 = (num) => { |
|
|
|
(scope.row.sumTaskGold || 0) |
|
|
|
}}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="name" label="姓名" width="140"/> |
|
|
|
<el-table-column prop="jwcode" label="精网号" width="160"/> |
|
|
|
<el-table-column prop="market" label="所属地区" width="140"/> |
|
|
|
<el-table-column prop="allJb" label="金币总数" width="140" aligh="center"> |
|
|
|
<template #default="scope"> |
|
|
|
<span>{{ |
|
|
|
((scope.row.currentPermanentGold || 0) + |
|
|
|
(scope.row.currentFreeJune || 0) + |
|
|
|
(scope.row.currentFreeDecember || 0) + |
|
|
|
(scope.row.currentTaskGold || 0)) |
|
|
|
}}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="currentPermanentGold" label="永久金币" sortable="custom" width="160"> |
|
|
|
<template #default="scope"> |
|
|
|
<span>{{ (scope.row.currentPermanentGold || 0) }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="currentFreeJune" label="6月份到期免费金币" sortable="custom" width="170"> |
|
|
|
<template #default="scope"> |
|
|
|
<span>{{ (scope.row.currentFreeJune || 0) }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="currentFreeDecember" label="12月份到期免费金币" sortable="custom" width="180"> |
|
|
|
<template #default="scope"> |
|
|
|
<span>{{ (scope.row.currentFreeDecember || 0) }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="currentTaskGold" label="任务金币" sortable="custom" width="180"> |
|
|
|
<template #default="scope"> |
|
|
|
<span>{{ (scope.row.currentTaskGold || 0) }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
<!-- <el-table-column prop="rcoin" label="历史金币总额" width="150"> |
|
|
|
<template #default="scope"> |
|
|
|
<el-popover trigger="hover" placement="left" width="150"> |
|
|
|
<template #default> |
|
|
|
<div> |
|
|
|
<div>永久金币:{{ (scope.row.sumPermanentGold || 0) }}</div> |
|
|
|
<div>免费金币:{{ ((scope.row.sumFreeJune || 0) + (scope.row.sumFreeDecember || 0)) }}</div> |
|
|
|
<div>任务金币:{{ (scope.row.sumTaskGold || 0) }}</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
<template #reference> |
|
|
|
<span> |
|
|
|
{{ |
|
|
|
(scope.row.sumPermanentGold || 0) + |
|
|
|
(scope.row.sumFreeJune || 0) + |
|
|
|
(scope.row.sumFreeDecember || 0) + |
|
|
|
(scope.row.sumTaskGold || 0) |
|
|
|
}}</span> |
|
|
|
</template> |
|
|
|
</el-popover> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
@ -511,17 +565,20 @@ const format3 = (num) => { |
|
|
|
</el-popover> |
|
|
|
</template> |
|
|
|
|
|
|
|
</el-table-column> |
|
|
|
</el-table-column>--> |
|
|
|
</el-table> |
|
|
|
</div> |
|
|
|
|
|
|
|
<!-- 分页 --> |
|
|
|
<div class="pagination" style="margin-top: 20px;display: flex;"> |
|
|
|
<div class="pagination" style="margin-top: 20px"> |
|
|
|
<el-pagination background :page-size="getObj.pageSize" :page-sizes="[5, 10, 20, 50, 100]" |
|
|
|
layout="total, sizes, prev, pager, next, jumper" :total="total" @size-change="handlePageSizeChange" |
|
|
|
layout="total, sizes, prev, pager, next, jumper" :total="total" |
|
|
|
@size-change="handlePageSizeChange" |
|
|
|
@current-change="handleCurrentChange"></el-pagination> |
|
|
|
</div> |
|
|
|
</el-card> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
|
|
|
|
<el-dialog v-model="exportListVisible" title="导出列表" width="80%"> |
|
|
|
<el-table :data="exportList" style="width: 100% ;height: 60vh;" :loading="exportListLoading"> |
|
|
|