|
|
@ -48,10 +48,32 @@ |
|
|
</el-col> |
|
|
</el-col> |
|
|
</el-card> |
|
|
</el-card> |
|
|
<el-card class="card2"> |
|
|
<el-card class="card2"> |
|
|
<el-tabs v-model="activeName" type="card" @tab-click="handleClick"> |
|
|
|
|
|
<el-tab-pane label="待审核" name="wait" v-if="hasrechargeWait&&hasrechargeWaitShow"></el-tab-pane> |
|
|
|
|
|
<el-tab-pane label="已通过" name="pass" v-if="hasrechargeThrough"></el-tab-pane> |
|
|
|
|
|
<el-tab-pane label="已驳回" name="reject" v-if="hasrechargeReject"></el-tab-pane> |
|
|
|
|
|
|
|
|
<div class="custom-button-group"> |
|
|
|
|
|
<el-button |
|
|
|
|
|
v-if="hasrechargeWait&&hasrechargeWaitShow" |
|
|
|
|
|
:type="activeName === 'wait' ? 'primary' : 'default'" |
|
|
|
|
|
@click="handleButtonClick('wait')" |
|
|
|
|
|
class="custom-tab-button" |
|
|
|
|
|
> |
|
|
|
|
|
待审核 |
|
|
|
|
|
</el-button> |
|
|
|
|
|
<el-button |
|
|
|
|
|
v-if="hasrechargeThrough" |
|
|
|
|
|
:type="activeName === 'pass' ? 'primary' : 'default'" |
|
|
|
|
|
@click="handleButtonClick('pass')" |
|
|
|
|
|
class="custom-tab-button" |
|
|
|
|
|
> |
|
|
|
|
|
已通过 |
|
|
|
|
|
</el-button> |
|
|
|
|
|
<el-button |
|
|
|
|
|
v-if="hasrechargeReject" |
|
|
|
|
|
:type="activeName === 'reject' ? 'primary' : 'default'" |
|
|
|
|
|
@click="handleButtonClick('reject')" |
|
|
|
|
|
class="custom-tab-button" |
|
|
|
|
|
> |
|
|
|
|
|
已驳回 |
|
|
|
|
|
</el-button> |
|
|
|
|
|
</div> |
|
|
<div class="goldStatistics"> |
|
|
<div class="goldStatistics"> |
|
|
|
|
|
|
|
|
<!-- 总条数:{{ format3(stats.totalNum) }}条 --> |
|
|
<!-- 总条数:{{ format3(stats.totalNum) }}条 --> |
|
|
@ -61,7 +83,6 @@ |
|
|
永久金币:{{ format3(stats.permanentGolds.toFixed(2)) }}金币 |
|
|
永久金币:{{ format3(stats.permanentGolds.toFixed(2)) }}金币 |
|
|
免费金币:{{ format3(stats.freeGolds.toFixed(2)) }}金币 |
|
|
免费金币:{{ format3(stats.freeGolds.toFixed(2)) }}金币 |
|
|
</div> |
|
|
</div> |
|
|
</el-tabs> |
|
|
|
|
|
|
|
|
|
|
|
<el-table :data="tableData" style="width: 82vw;height:54vh" @sort-change="handleSortChange" |
|
|
<el-table :data="tableData" style="width: 82vw;height:54vh" @sort-change="handleSortChange" |
|
|
:row-style="{ height: '50px' }"> |
|
|
:row-style="{ height: '50px' }"> |
|
|
|