案件录入

This commit is contained in:
Your Name
2023-09-08 09:08:09 +08:00
parent d4ae62d29f
commit 310f3a717b
5 changed files with 790 additions and 17 deletions
+10
View File
@@ -0,0 +1,10 @@
import request from '@/utils/request'
// 查询在线用户列表
export function list(query) {
return request({
url: '/monitor/online/list',
method: 'get',
params: query
})
}