|
|
@ -56,7 +56,8 @@ |
|
|
|
|
|
|
|
<!-- 总条数:{{ format3(stats.totalNum) }}条 --> |
|
|
|
充值新币:{{ format3(stats.permanentGolds) }}新币 |
|
|
|
总金币数:{{ format3((stats.permanentGolds + stats.freeGolds + stats.taskGolds).toFixed(2)) |
|
|
|
总金币数:{{ |
|
|
|
format3((stats.permanentGolds + stats.freeGolds + stats.taskGolds).toFixed(2)) |
|
|
|
}}金币 |
|
|
|
永久金币:{{ format3(stats.permanentGolds.toFixed(2)) }}金币 |
|
|
|
免费金币:{{ format3(stats.freeGolds.toFixed(2)) }}金币 |
|
|
@ -119,14 +120,16 @@ |
|
|
|
{{ moment(scope.row.auditTime).format('YYYY-MM-DD HH:mm:ss') }} |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column v-if="activeName === 'wait'&&(hasrechargeWaitThough||hasrechargeWaitReject)&&hasrechargeWaitShow" fixed="right" prop="operation" label="操作" width="150px"> |
|
|
|
<el-table-column v-if="activeName === 'wait'&&(hasrechargeWaitThough||hasrechargeWaitReject)&&hasrechargeWaitShow" |
|
|
|
fixed="right" prop="operation" label="操作" width="150px"> |
|
|
|
<template #default="scope"> |
|
|
|
<div class="operation"> |
|
|
|
<el-popconfirm title="确定要通过此条记录吗?" @confirm="handleApprove(scope.row)"> |
|
|
|
<template #reference> |
|
|
|
<el-button v-if="hasrechargeWaitThough" :disabled="clicked || cancelClicked" type="primary" text> |
|
|
|
<el-link :underline="false" class="pass-btn" v-if="hasrechargeWaitThough" |
|
|
|
:disabled="clicked || cancelClicked"> |
|
|
|
通过 |
|
|
|
</el-button> |
|
|
|
</el-link> |
|
|
|
</template> |
|
|
|
<template #actions="{ confirm, cancel }"> |
|
|
|
<el-button size="small" @click="cancel">取消</el-button> |
|
|
@ -135,16 +138,19 @@ |
|
|
|
</el-button> |
|
|
|
</template> |
|
|
|
</el-popconfirm> |
|
|
|
<el-button v-if="hasrechargeWaitReject" :disabled="clicked || cancelClicked" type="primary" text @click="showRejectDialog(scope.row)"> |
|
|
|
<el-link :underline="false" class="reject-btn" v-if="hasrechargeWaitReject" |
|
|
|
:disabled="clicked || cancelClicked" type="primary" |
|
|
|
@click="showRejectDialog(scope.row)"> |
|
|
|
驳回 |
|
|
|
</el-button> |
|
|
|
</el-link> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
<div class="pagination"> |
|
|
|
<el-pagination :page-size="getObj.pageSize" :page-sizes="[5, 10, 20, 50, 100]" |
|
|
|
layout="total, sizes, prev, pager, next, jumper" :total="total" @size-change="handlePagination('size', $event)" |
|
|
|
layout="total, sizes, prev, pager, next, jumper" :total="total" |
|
|
|
@size-change="handlePagination('size', $event)" |
|
|
|
@current-change="handlePagination('page', $event)"></el-pagination> |
|
|
|
</div> |
|
|
|
</el-card> |
|
|
@ -245,7 +251,6 @@ const getObj = ref({ |
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 支付方式选项 |
|
|
|
const payModel = [ |
|
|
|
{ |
|
|
|