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
5164036b
authored
Apr 17, 2023
by
AhJindeg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🐞
fix(system): Update system module bug
- 修改用户管理查询入参 - 修改站内信模板删除api调用
parent
9793734f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/views/system/notify/template/index.vue
+1
-1
src/views/system/user/index.vue
+1
-1
No files found.
src/views/system/notify/template/index.vue
View file @
5164036b
...
...
@@ -212,7 +212,7 @@ const handleDelete = async (id: number) => {
// 删除的二次确认
await
message
.
delConfirm
()
// 发起删除
await
NotifyTemplateApi
.
deleteNotifyTemplate
Api
(
id
)
await
NotifyTemplateApi
.
deleteNotifyTemplate
(
id
)
message
.
success
(
'删除成功'
)
// 刷新列表
await
getList
()
...
...
src/views/system/user/index.vue
View file @
5164036b
...
...
@@ -230,7 +230,7 @@ const queryFormRef = ref() // 搜索的表单
const
getList
=
async
()
=>
{
loading
.
value
=
true
try
{
const
data
=
await
UserApi
.
getUserPage
(
queryParams
.
value
)
const
data
=
await
UserApi
.
getUserPage
(
queryParams
)
list
.
value
=
data
.
list
total
.
value
=
data
.
total
}
finally
{
...
...
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