Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
saas-manage
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chehuidong
saas-manage
Commits
87625566
Commit
87625566
authored
Sep 23, 2025
by
wusiyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: bug
parent
effd2b87
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
12 deletions
+27
-12
src/views/user/baseProceedsAccount.vue
+27
-12
No files found.
src/views/user/baseProceedsAccount.vue
View file @
87625566
...
...
@@ -181,8 +181,11 @@
label=
"账户类型"
:contentStyle=
"{ textAlign: 'center' }"
>
{{
accountTypeList.find(
(i) => i.code === detailFormData.accountType
)
&&
accountTypeList.find((i) => i.code === detailFormData.accountType)
?
.remark
.remark
}}
</el-descriptions-item>
<el-descriptions-item
label=
"银行卡开户行"
>
...
...
@@ -196,8 +199,11 @@
</el-descriptions-item>
<el-descriptions-item
label=
"收款方式"
>
{{
receiverTypeList.find(
(i) => i.code === detailFormData.receiverType
)
&&
receiverTypeList.find((i) => i.code === detailFormData.receiverType)
?
.remark
.remark
}}
</el-descriptions-item>
...
...
@@ -205,9 +211,12 @@
label=
"币种"
:contentStyle=
"{ textAlign: 'center' }"
>
{{
currencyTypeList.find(
(
currencyTypeList.find(
(i) => i.currencyCode === detailFormData.currencyType
)?.currencyName +
)
&&
currencyTypeList.find(
(i) => i.currencyCode === detailFormData.currencyType
).currencyName) +
'(' +
detailFormData.currencyType +
')'
...
...
@@ -215,8 +224,9 @@
</el-descriptions-item>
<el-descriptions-item
label=
"主要业务"
>
{{
businessTypeList.find((i) => i.key === detailFormData.operation)
&&
businessTypeList.find((i) => i.key === detailFormData.operation)
?
.value
.value
}}
</el-descriptions-item>
<el-descriptions-item
label=
"日限额"
>
...
...
@@ -329,9 +339,13 @@
<el-button
size=
"small"
@
click=
"sendVerificationCode"
:loading=
"countdownConfig[currentMethod]?.loading"
>
:loading=
"
countdownConfig[currentMethod] &&
countdownConfig[currentMethod].loading
"
>
{{
countdownConfig[currentMethod]?.loading
countdownConfig[currentMethod]
&&
countdownConfig[currentMethod].loading
? `${countdownConfig[currentMethod].countdown}s后重发`
: '发送验证码'
}}
...
...
@@ -613,8 +627,8 @@ export default {
key
:
'accountType'
,
width
:
'100'
,
render
:
(
item
)
=>
{
return
this
.
accountTypeList
.
find
((
i
)
=>
i
.
code
===
item
.
accountType
)
?
.
remark
const
accountType
=
this
.
accountTypeList
.
find
((
i
)
=>
i
.
code
===
item
.
accountType
)
return
accountType
&&
accountType
.
remark
}
},
{
...
...
@@ -669,9 +683,10 @@ export default {
key
:
'receiverType'
,
width
:
'150'
,
render
:
(
item
)
=>
{
return
this
.
receiverTypeList
.
find
(
const
receiverType
=
this
.
receiverTypeList
.
find
(
(
i
)
=>
i
.
code
===
item
.
receiverType
)?.
remark
)
return
receiverType
&&
receiverType
.
remark
}
},
{
...
...
@@ -680,7 +695,7 @@ export default {
width
:
200
,
render
:
(
item
)
=>
{
return
this
.
businessTypeList
.
find
((
i
)
=>
i
.
key
===
item
.
operation
)
?.
value
.
value
||
''
}
},
{
...
...
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