|
@@ -77,6 +77,7 @@
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.classify==1">支付宝提现</span>
|
|
<span v-if="scope.row.classify==1">支付宝提现</span>
|
|
|
<span v-if="scope.row.classify==2">微信提现</span>
|
|
<span v-if="scope.row.classify==2">微信提现</span>
|
|
|
|
|
+ <span v-if="scope.row.classify==5">银行卡提现</span>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column prop="orderNumber" label="转账订单号" width="150">
|
|
<el-table-column prop="orderNumber" label="转账订单号" width="150">
|
|
@@ -87,6 +88,38 @@
|
|
|
<span v-else>无</span>
|
|
<span v-else>无</span>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
+ <el-table-column prop="bankCardNo" label="银行卡号" width="150">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <span style="color: #4f9dec;cursor: pointer;"
|
|
|
|
|
+ v-if="scope.row.bankCardNo">{{scope.row.bankCardNo!='null' ? scope.row.bankCardNo : '未绑定'}}</span>
|
|
|
|
|
+ <span v-else>未绑定</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column prop="openBank" label="开户行" width="100">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <span v-if="scope.row.openBank">{{scope.row.openBank!='null' ? scope.row.openBank : '无'}}</span>
|
|
|
|
|
+ <span v-else>无</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column prop="bankRealName" label="开户人姓名" width="100">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <span v-if="scope.row.bankRealName">{{scope.row.bankRealName!='null' ? scope.row.bankRealName : '无'}}</span>
|
|
|
|
|
+ <span v-else>无</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column prop="money" label="提现金额" width="100">
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column prop="rate" label="手续费" width="100">
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column prop="currentBalance" label="当前余额" width="100">
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column prop="state" label="状态" width="100">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <span style="color: #4f9dec;cursor: pointer;" v-if="scope.row.state == 0">待转账</span>
|
|
|
|
|
+ <span v-if="scope.row.state == 1">已转账</span>
|
|
|
|
|
+ <span v-if="scope.row.state == -1">已拒绝</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="zhifubao" label="支付宝账号" width="150">
|
|
<el-table-column prop="zhifubao" label="支付宝账号" width="150">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<span style="color: #4f9dec;cursor: pointer;" @click="updates(scope.row)"
|
|
<span style="color: #4f9dec;cursor: pointer;" @click="updates(scope.row)"
|
|
@@ -113,19 +146,6 @@
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="money" label="提现金额" width="100">
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="rate" label="手续费" width="100">
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="currentBalance" label="当前余额" width="100">
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="state" label="状态" width="100">
|
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
|
- <span style="color: #4f9dec;cursor: pointer;" v-if="scope.row.state == 0">待转账</span>
|
|
|
|
|
- <span v-if="scope.row.state == 1">已转账</span>
|
|
|
|
|
- <span v-if="scope.row.state == -1">已拒绝</span>
|
|
|
|
|
- </template>
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
<el-table-column prop="refund" label="拒绝原因" width="220">
|
|
<el-table-column prop="refund" label="拒绝原因" width="220">
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column prop="createAt" label="申请时间" width="170">
|
|
<el-table-column prop="createAt" label="申请时间" width="170">
|
|
@@ -1089,6 +1109,9 @@
|
|
|
'zhifubaoName': this.zhifubaoName,
|
|
'zhifubaoName': this.zhifubaoName,
|
|
|
'shopName':this.shopName,
|
|
'shopName':this.shopName,
|
|
|
'zhifubao': this.zhifubao,
|
|
'zhifubao': this.zhifubao,
|
|
|
|
|
+ 'bankCardNo':"",
|
|
|
|
|
+ 'bankRealName':"",
|
|
|
|
|
+ 'openBank':"",
|
|
|
'type': 2,
|
|
'type': 2,
|
|
|
'state': this.indentState,
|
|
'state': this.indentState,
|
|
|
'phone': this.phone,
|
|
'phone': this.phone,
|
|
@@ -1311,6 +1334,10 @@
|
|
|
'zhifubaoName': this.zhifubaoName,
|
|
'zhifubaoName': this.zhifubaoName,
|
|
|
'shopName':this.shopName,
|
|
'shopName':this.shopName,
|
|
|
'zhifubao': this.zhifubao,
|
|
'zhifubao': this.zhifubao,
|
|
|
|
|
+ // 'bankCardNo':,
|
|
|
|
|
+ // 'bankRealName':,
|
|
|
|
|
+ // 'openBank':,
|
|
|
|
|
+ // 'classify':,
|
|
|
'type': 2,
|
|
'type': 2,
|
|
|
'state': this.indentState,
|
|
'state': this.indentState,
|
|
|
'phone': this.phone,
|
|
'phone': this.phone,
|