|
@@ -37,8 +37,11 @@
|
|
|
<el-table-column prop="withdrawalMoney" label="提现金额" />
|
|
|
<el-table-column prop="state" label="处理状态">
|
|
|
<template slot-scope="scope">
|
|
|
+ <span v-if="scope.row.state == 0">待处理</span>
|
|
|
<span v-if="scope.row.state == 1">已处理</span>
|
|
|
- <span v-if="scope.row.state == 0">未处理</span>
|
|
|
+ <span v-if="scope.row.state == 2">通过</span>
|
|
|
+ <span v-if="scope.row.state == 3">拒绝</span>
|
|
|
+ <span v-if="scope.row.state == 4">打款失败</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作" show-overflow-tooltip>
|