Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
02d284bc
authored
May 11, 2025
by
YunaiV
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:【MALL 商城】商城分佣提现,初步对接成功微信支付
parent
876bf8de
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
src/views/mall/trade/brokerage/withdraw/index.vue
+6
-1
src/views/pay/demo/withdraw/index.vue
+8
-3
No files found.
src/views/mall/trade/brokerage/withdraw/index.vue
View file @
02d284bc
...
@@ -166,7 +166,12 @@
...
@@ -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"
...
...
src/views/pay/demo/withdraw/index.vue
View file @
02d284bc
...
@@ -24,7 +24,7 @@
...
@@ -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 @@
...
@@ -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 @@
...
@@ -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
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment