优化提现统计
This commit is contained in:
@@ -31,7 +31,8 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="日期">
|
<el-form-item label="日期">
|
||||||
<el-date-picker v-model="timeValue" type="datetimerange" range-separator="至" start-placeholder="开始日期"
|
<el-date-picker v-model="timeValue" type="datetimerange" range-separator="至" start-placeholder="开始日期"
|
||||||
end-placeholder="结束日期" @change="changeTime" :default-time="['00:00:00', '23:59:59']">
|
end-placeholder="结束日期" @change="changeTime" value-format="yyyy-MM-DD HH:mm:ss"
|
||||||
|
:default-time="['00:00:00', '23:59:59']">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
@@ -58,6 +59,11 @@
|
|||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<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="提现信息" width="200">
|
<el-table-column label="提现信息" width="200">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div>提现金额:¥{{ scope.row.money }}</div>
|
<div>提现金额:¥{{ scope.row.money }}</div>
|
||||||
@@ -78,11 +84,6 @@
|
|||||||
<div>待审提现申请笔数:{{ scope.row.verifyCount }}</div>
|
<div>待审提现申请笔数:{{ scope.row.verifyCount }}</div>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<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="createAt" width="200"></el-table-column>
|
<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="outAt" width="200"></el-table-column>
|
||||||
<el-table-column label="状态" prop="state" width="200">
|
<el-table-column label="状态" prop="state" width="200">
|
||||||
@@ -93,12 +94,8 @@
|
|||||||
<el-tag type="success" v-if="scope.row.state == 1" disable-transitions>
|
<el-tag type="success" v-if="scope.row.state == 1" disable-transitions>
|
||||||
成功
|
成功
|
||||||
</el-tag>
|
</el-tag>
|
||||||
<div style="display: flex;flex-direction: column;" v-if="scope.row.state == 2">
|
<div class="tag_danger" v-if="scope.row.state == 2">
|
||||||
<div>
|
失败:{{ scope.row.refund }}
|
||||||
<el-tag type="danger" disable-transitions>
|
|
||||||
失败:{{ scope.row.refund }}
|
|
||||||
</el-tag>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<el-tag type="warning" v-if="scope.row.state == 3" disable-transitions>
|
<el-tag type="warning" v-if="scope.row.state == 3" disable-transitions>
|
||||||
待审核
|
待审核
|
||||||
@@ -289,4 +286,12 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tag_danger {
|
||||||
|
background-color: rgba(245, 108, 108, .1);
|
||||||
|
color: #f56c6c;
|
||||||
|
border-radius: 4px;
|
||||||
|
border: 1px solid rgba(245, 108, 108, .2);
|
||||||
|
padding: 2px 10px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -72,9 +72,9 @@
|
|||||||
<div>提现次数:{{ scope.row.subCount }}</div>
|
<div>提现次数:{{ scope.row.subCount }}</div>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="支付宝信息" prop="zhifubao">
|
<el-table-column label="提现账号" prop="zhifubao">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ scope.row.zhifubaoName }} / {{ scope.row.zhifubao }}
|
{{ scope.row.zhiFuBaoName }} / {{ scope.row.zhiFuBao }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<el-tab-pane label="提现审核" name="withdraw">
|
<el-tab-pane label="提现审核" name="withdraw">
|
||||||
<WithdrawManage></WithdrawManage>
|
<WithdrawManage></WithdrawManage>
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
<el-tab-pane label="支付宝提现统计" name="withdrawTotal">
|
<el-tab-pane label="提现统计" name="withdrawTotal">
|
||||||
<WithdrawTotal></WithdrawTotal>
|
<WithdrawTotal></WithdrawTotal>
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
<!-- 拒绝弹框 -->
|
<!-- 拒绝弹框 -->
|
||||||
|
|||||||
Reference in New Issue
Block a user