运营幸运数据查询/运营游戏数据查询 - 增加千分号
This commit is contained in:
@@ -56,14 +56,22 @@
|
||||
{{ formattedNumber(scope.row.payGold) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="winGold" align="center" label="退出" />
|
||||
<el-table-column prop="winGold" align="center" label="退出" >
|
||||
<template v-slot="scope">
|
||||
{{ formattedNumber(scope.row.winGold) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="playNum" align="center" label="次数" />
|
||||
<el-table-column prop="betRate" align="center" label="比例" >
|
||||
<template v-slot="scope">
|
||||
{{ toPercentage(scope.row.betRate) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="totalRemain" align="center" label="差额" />
|
||||
<el-table-column prop="totalRemain" align="center" label="差额" >
|
||||
<template v-slot="scope">
|
||||
{{ formattedNumber(scope.row.totalRemain) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<!-- 分页 -->
|
||||
<el-pagination
|
||||
|
@@ -44,14 +44,22 @@
|
||||
{{ formattedNumber(scope.row.totalInput) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="totalOutput" align="center" label="退出" />
|
||||
<el-table-column prop="totalOutput" align="center" label="退出" >
|
||||
<template v-slot="scope">
|
||||
{{ formattedNumber(scope.row.totalOutput) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="receiverReward" align="center" label="送主播" />
|
||||
<el-table-column prop="productionRatio" align="center" label="比例" >
|
||||
<template v-slot="scope">
|
||||
{{ toPercentage(scope.row.productionRatio) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="production" align="center" label="差额" />
|
||||
<el-table-column prop="production" align="center" label="差额">
|
||||
<template v-slot="scope">
|
||||
{{ formattedNumber(scope.row.production) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<!-- 分页 -->
|
||||
<el-pagination
|
||||
|
Reference in New Issue
Block a user