We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9793734 commit 5164036Copy full SHA for 5164036
src/views/system/notify/template/index.vue
@@ -212,7 +212,7 @@ const handleDelete = async (id: number) => {
212
// 删除的二次确认
213
await message.delConfirm()
214
// 发起删除
215
- await NotifyTemplateApi.deleteNotifyTemplateApi(id)
+ await NotifyTemplateApi.deleteNotifyTemplate(id)
216
message.success('删除成功')
217
// 刷新列表
218
await getList()
src/views/system/user/index.vue
@@ -230,7 +230,7 @@ const queryFormRef = ref() // 搜索的表单
230
const getList = async () => {
231
loading.value = true
232
try {
233
- const data = await UserApi.getUserPage(queryParams.value)
+ const data = await UserApi.getUserPage(queryParams)
234
list.value = data.list
235
total.value = data.total
236
} finally {
0 commit comments