|
|
@@ -3,25 +3,25 @@
|
|
|
<div class="white-box">
|
|
|
<leo-filter :filter="handleFilter" :dateRangePickerDisplay="false" :dateMonthPickerDisplay="true"></leo-filter>
|
|
|
<el-table class="withdraw-table" ref="multipleTable" :data="tableData" stripe style="width: 100%;">
|
|
|
- <el-table-column label="Member Code"><!-- 会员编号 -->
|
|
|
+ <el-table-column label="Member Code" width="120"><!-- 会员编号 -->
|
|
|
<template slot-scope="scope">
|
|
|
{{scope.row.USER_NAME}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="Member Name"><!-- 会员姓名 -->
|
|
|
+ <el-table-column label="Member Name" width="120"><!-- 会员姓名 -->
|
|
|
<template slot-scope="scope">
|
|
|
{{scope.row.REAL_NAME}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="Withdrawal way"><!-- 提现方式 -->
|
|
|
+ <el-table-column label="Withdrawal way" width="140"><!-- 提现方式 -->
|
|
|
<template slot-scope="scope">
|
|
|
{{scope.row.IS_AUTO_WITHDRAW==='1'?'Automatic withdrawal':'Manual withdrawal'}}<!-- 自动体现:手动体现 -->
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="Cash withdrawal amount" prop="AMOUNT"></el-table-column><!-- 提现金额 -->
|
|
|
- <el-table-column label="Service charge" prop="FEES"></el-table-column><!-- 手续费 -->
|
|
|
- <el-table-column label="Actual amount" prop="REAL_AMOUNT"></el-table-column><!-- 实际到账金额 -->
|
|
|
- <el-table-column label="Withdraw time" width="180"><!-- 提现时间 -->
|
|
|
+ <el-table-column label="Cash withdrawal amount" prop="AMOUNT" width="200px"></el-table-column><!-- 提现金额 -->
|
|
|
+ <el-table-column label="Service charge" prop="FEES" width="120"></el-table-column><!-- 手续费 -->
|
|
|
+ <el-table-column label="Actual amount" prop="REAL_AMOUNT" width="120"></el-table-column><!-- 实际到账金额 -->
|
|
|
+ <el-table-column label="Withdraw time" width="120"><!-- 提现时间 -->
|
|
|
<template slot-scope="scope">
|
|
|
{{tool.formatDate(scope.row.CREATED_AT)}}
|
|
|
</template>
|
|
|
@@ -36,7 +36,7 @@
|
|
|
<el-tag :type="tool.statusType(scope.row.REMARK)">{{scope.row.REMARK}}</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="Note Returned for withdrawal" width="120"><!-- 提现退回备注 -->
|
|
|
+ <el-table-column label="Note Returned for withdrawal" width="220"><!-- 提现退回备注 -->
|
|
|
<template slot-scope="scope">
|
|
|
<el-tag :type="tool.statusType(scope.row.BACK_REMARK)">{{scope.row.BACK_REMARK}}</el-tag>
|
|
|
</template>
|
|
|
@@ -74,7 +74,7 @@
|
|
|
<!--</el-button>-->
|
|
|
<!--</template>-->
|
|
|
<!--</el-table-column>-->
|
|
|
- <el-table-column label="Reasons for payment failure" width="120"><!-- 付款失败原因 -->
|
|
|
+ <el-table-column label="Reasons for payment failure" width="220"><!-- 付款失败原因 -->
|
|
|
<template slot-scope="scope">
|
|
|
{{scope.row.PAID_FAIL_REMARK}}
|
|
|
</template>
|