|
@@ -47,6 +47,7 @@
|
|
|
<el-table-column prop="phone" label="手机号码" />
|
|
|
<el-table-column prop="withdrawalMoney" label="提现金额" />
|
|
|
<el-table-column prop="cost" label="手续费"></el-table-column>
|
|
|
+ <el-table-column prop="idCard" label="身份证号码" align="center"></el-table-column>
|
|
|
<el-table-column label="处理状态">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.state == 0">审核中</span>
|
|
@@ -58,6 +59,12 @@
|
|
|
<span v-if="scope.row.state == 5">待确认</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="是否是商家" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-tag type="success" v-if="scope.row.isShopUser">是</el-tag>
|
|
|
+ <el-tag type="danger" v-else>否</el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="applyTime" label="申请时间"></el-table-column>
|
|
|
<el-table-column align="center" width="150" label="备注" prop="cause" show-overflow-tooltip />
|
|
|
<el-table-column label="操作" width="180" fixed="right" class-name="small-padding fixed-width">
|