Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
陈曦
sub2api
Commits
216321aa
Commit
216321aa
authored
Jan 06, 2026
by
shaw
Browse files
Merge PR #183: 修复账号管理页面过滤器和错误提示问题
parents
58b17771
5a52cb60
Changes
2
Hide whitespace changes
Inline
Side-by-side
frontend/src/components/account/EditAccountModal.vue
View file @
216321aa
...
@@ -1140,7 +1140,7 @@ const handleSubmit = async () => {
...
@@ -1140,7 +1140,7 @@ const handleSubmit = async () => {
emit
(
'
updated
'
)
emit
(
'
updated
'
)
handleClose
()
handleClose
()
}
catch
(
error
:
any
)
{
}
catch
(
error
:
any
)
{
appStore
.
showError
(
error
.
response
?.
data
?.
detail
||
t
(
'
admin.accounts.failedToUpdate
'
))
appStore
.
showError
(
error
.
response
?.
data
?.
message
||
error
.
response
?.
data
?.
detail
||
t
(
'
admin.accounts.failedToUpdate
'
))
}
finally
{
}
finally
{
submitting
.
value
=
false
submitting
.
value
=
false
}
}
...
...
frontend/src/views/admin/AccountsView.vue
View file @
216321aa
...
@@ -6,6 +6,7 @@
...
@@ -6,6 +6,7 @@
<AccountTableFilters
<AccountTableFilters
v-model:searchQuery=
"params.search"
v-model:searchQuery=
"params.search"
:filters=
"params"
:filters=
"params"
@
update:filters=
"(newFilters) => Object.assign(params, newFilters)"
@
change=
"reload"
@
change=
"reload"
@
update:searchQuery=
"debouncedReload"
@
update:searchQuery=
"debouncedReload"
/>
/>
...
...
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