mirror of
https://gitee.com/myxzgzs/boyue-ui-admin-vue3
synced 2025-08-08 08:22:41 +08:00
feat:【MALL 商城】商城分佣提现,初步对接成功微信支付
This commit is contained in:
parent
876bf8def6
commit
02d284bced
@ -166,7 +166,12 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="操作" align="left" width="110px" fixed="right">
|
<el-table-column label="操作" align="left" width="110px" fixed="right">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<template v-if="scope.row.status === BrokerageWithdrawStatusEnum.AUDITING.status">
|
<template
|
||||||
|
v-if="
|
||||||
|
scope.row.status === BrokerageWithdrawStatusEnum.AUDITING.status &&
|
||||||
|
!scope.row.payTransferId
|
||||||
|
"
|
||||||
|
>
|
||||||
<el-button
|
<el-button
|
||||||
link
|
link
|
||||||
type="primary"
|
type="primary"
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
<el-table-column label="操作" align="center" width="100">
|
<el-table-column label="操作" align="center" width="100">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<el-button
|
<el-button
|
||||||
v-if="scope.row.status === 0"
|
v-if="scope.row.status === 0 && !scope.row.payTransferId"
|
||||||
type="primary"
|
type="primary"
|
||||||
link
|
link
|
||||||
@click="handleTransfer(scope.row.id)"
|
@click="handleTransfer(scope.row.id)"
|
||||||
@ -32,7 +32,7 @@
|
|||||||
发起转账
|
发起转账
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
v-if="scope.row.status === 20"
|
v-else-if="scope.row.status === 20"
|
||||||
type="warning"
|
type="warning"
|
||||||
link
|
link
|
||||||
@click="handleTransfer(scope.row.id)"
|
@click="handleTransfer(scope.row.id)"
|
||||||
@ -59,7 +59,12 @@
|
|||||||
<el-table-column label="收款人账号" align="center" prop="userAccount" min-width="250" />
|
<el-table-column label="收款人账号" align="center" prop="userAccount" min-width="250" />
|
||||||
<el-table-column label="提现状态" align="center" prop="status" width="100">
|
<el-table-column label="提现状态" align="center" prop="status" width="100">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<el-tag v-if="scope.row.status === 0" type="warning">等待转账</el-tag>
|
<el-tag v-if="scope.row.status === 0 && !scope.row.payTransferId" type="warning">
|
||||||
|
等待转账
|
||||||
|
</el-tag>
|
||||||
|
<el-tag v-else-if="scope.row.status === 0 && scope.row.payTransferId" type="info">
|
||||||
|
转账中
|
||||||
|
</el-tag>
|
||||||
<el-tag v-else-if="scope.row.status === 10" type="success">转账成功</el-tag>
|
<el-tag v-else-if="scope.row.status === 10" type="success">转账成功</el-tag>
|
||||||
<el-tag v-else-if="scope.row.status === 20" type="danger">转账失败</el-tag>
|
<el-tag v-else-if="scope.row.status === 20" type="danger">转账失败</el-tag>
|
||||||
</template>
|
</template>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user