|
|
@ -559,10 +559,10 @@ const format3 = (num) => { |
|
|
|
<el-col> |
|
|
|
<el-card> |
|
|
|
<div> |
|
|
|
金币总数:{{ format3(totalGoldTotal / 100 || 0) }} |
|
|
|
永久金币:{{ format3(totalPermanentGold / 100 || 0) }} |
|
|
|
免费金币:{{ format3(totalFreeGold / 100 || 0) }} |
|
|
|
任务金币:{{ format3(totalTaskGold / 100 || 0) }} |
|
|
|
金币总数:{{ format3(totalGoldTotal || 0) }} |
|
|
|
永久金币:{{ format3(totalPermanentGold || 0) }} |
|
|
|
免费金币:{{ format3(totalFreeGold || 0) }} |
|
|
|
任务金币:{{ format3(totalTaskGold || 0) }} |
|
|
|
</div> |
|
|
|
<div style="height: 584px; overflow-y: auto"> |
|
|
|
<el-table :data="tableData" style="width: 100%" @sort-change="handleSortChange" height="584px"> |
|
|
@ -599,7 +599,7 @@ const format3 = (num) => { |
|
|
|
: scope.row.sumGold / 100 |
|
|
|
}} |
|
|
|
</span> --> |
|
|
|
<span>{{ (scope.row.sumGold || 0) / }}</span> |
|
|
|
<span>{{ (scope.row.sumGold || 0) }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
|
|
|
|