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
577d7dbd
Commit
577d7dbd
authored
Oct 17, 2025
by
wuqian
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev'
parents
1b209274
ab229e2e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
17 deletions
+31
-17
src/views/menu.vue
+2
-3
src/views/system/sysSecuritySettings.vue
+2
-2
src/views/user/baseProceedsAccount.vue
+27
-12
No files found.
src/views/menu.vue
View file @
577d7dbd
...
...
@@ -256,10 +256,9 @@ export default {
key
:
'url'
,
width
:
''
,
render
:
(
item
)
=>
(
<
el
-
checkbox
<
el
-
switch
value
=
{
item
.
enable
}
onChange
=
{(
v
)
=>
this
.
enableChange
(
item
,
v
)}
label
=
""
><
/el-checkbox
>
onChange
=
{(
v
)
=>
this
.
enableChange
(
item
,
v
)}
><
/el-switch
>
)
},
{
...
...
src/views/system/sysSecuritySettings.vue
View file @
577d7dbd
...
...
@@ -128,9 +128,9 @@
<el-button
size=
"small"
@
click=
"sendVerificationCode"
:disabled=
"countdownConfig[currentMethod]
?
.loading"
>
:disabled=
"countdownConfig[currentMethod]
&& countdownConfig[currentMethod]
.loading"
>
{{
countdownConfig
[
currentMethod
]
?
.
loading
countdownConfig
[
currentMethod
]
&&
countdownConfig
[
currentMethod
]
.
loading
?
`${countdownConfig[currentMethod].countdown
}
s后重发`
:
'发送验证码'
}}
...
...
src/views/user/baseProceedsAccount.vue
View file @
577d7dbd
...
...
@@ -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