提现审核增加信息
This commit is contained in:
parent
653ab223c9
commit
88156a6e4e
|
|
@ -40,42 +40,37 @@
|
|||
</el-form-item>
|
||||
</el-form>
|
||||
<el-table v-loading="tableData.loading" :data="tableData.list" border stripe>
|
||||
<el-table-column label="提现申请ID" prop="id"></el-table-column>
|
||||
<el-table-column label="用户id" prop="userId"></el-table-column>
|
||||
<el-table-column label="用户名" prop="userName"></el-table-column>
|
||||
<el-table-column label="提现金额" prop="money">
|
||||
<el-table-column label="ID" prop="id" width="80"></el-table-column>
|
||||
<el-table-column label="用户ID" prop="userId" width="100"></el-table-column>
|
||||
<el-table-column label="用户名" prop="userName" width="150"></el-table-column>
|
||||
<el-table-column label="提现信息" width="250">
|
||||
<template slot-scope="scope">
|
||||
¥{{ scope.row.money }}
|
||||
<div>提现金额:¥{{ scope.row.money }}</div>
|
||||
<div>手续费:¥{{ scope.row.rate }}</div>
|
||||
<div style="margin-top: 6px;">
|
||||
提现类型:
|
||||
<span v-if="scope.row.userType == 1">用户提现</span>
|
||||
<span v-if="scope.row.userType == 2">代理提现</span>
|
||||
</div>
|
||||
<div>订单编号:{{ scope.row.orderNumber }}</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="手续费" prop="rate">
|
||||
<el-table-column label="提现统计" width="200">
|
||||
<template slot-scope="scope">
|
||||
¥{{ scope.row.rate }}
|
||||
<div>成功提现金额:¥{{ scope.row.total }}</div>
|
||||
<div>成功提现次数:{{ scope.row.count }}</div>
|
||||
<div style="margin-top: 6px;">待审提现金额合计:¥{{ scope.row.verifyTotal }}</div>
|
||||
<div>待审提现申请笔数:{{ scope.row.verifyCount }}</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="成功提现金额" prop="total">
|
||||
<template slot-scope="scope">
|
||||
¥{{ scope.row.total }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="成功提现次数" prop="count"></el-table-column>
|
||||
<el-table-column label="支付宝信息" prop="zhifubao">
|
||||
<el-table-column label="支付宝信息" prop="zhifubao" width="200">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.zhifubaoName }} / {{ scope.row.zhifubao }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="订单编号" prop="orderNumber"></el-table-column>
|
||||
<el-table-column label="订单编号" prop="orderNumber"></el-table-column>
|
||||
<el-table-column label="代理用户id" prop="sysUserId"></el-table-column>
|
||||
<el-table-column label="提现类型" prop="userType">
|
||||
<template slot-scope="scope">
|
||||
<span v-if="scope.row.userType == 1">用户提现</span>
|
||||
<span v-if="scope.row.userType == 2">代理提现</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="申请时间" prop="createAt"></el-table-column>
|
||||
<el-table-column label="转账时间" prop="outAt"></el-table-column>
|
||||
<el-table-column label="状态" prop="state">
|
||||
<el-table-column label="申请时间" prop="createAt" width="200"></el-table-column>
|
||||
<el-table-column label="转账时间" prop="outAt" width="200"></el-table-column>
|
||||
<el-table-column label="状态" prop="state" width="200">
|
||||
<template slot-scope="scope">
|
||||
<el-tag type="warning" v-if="scope.row.state == 0" disable-transitions>
|
||||
待转账
|
||||
|
|
@ -96,7 +91,7 @@
|
|||
</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" width="100" fixed="right">
|
||||
<el-table-column label="操作" align="center" width="100" fixed="right">
|
||||
<template slot-scope="scope">
|
||||
<el-button type="text" size="mini" @click="deliverHandle(scope.row)" v-if="scope.row.state == 3">
|
||||
待审核
|
||||
|
|
|
|||
Loading…
Reference in New Issue