案件录入接口联调

This commit is contained in:
Your Name
2023-09-12 15:49:41 +08:00
parent c950565a24
commit 217c8edc31
6 changed files with 990 additions and 383 deletions
+46 -5
View File
@@ -1,10 +1,51 @@
import request from '@/utils/request'
// 查询在线用户列表
export function list(query) {
// 查询案件录入列表
export function caseApply(data) {
return request({
url: '/monitor/online/list',
method: 'get',
params: query
url: '/caseApplication/list',
method: 'post',
data: data
})
}
// 立案申请
export function addCaseApply(data) {
return request({
url: '/caseApplication/addCaseApplication',
method: 'post',
data: data
})
}
// 点击修改获取主体信息
export function selectCaseApply(data) {
return request({
url: '/caseApplication/selectCaseApplication',
method: 'post',
data: data
})
}
// 修改案件信息
export function editCaseApply(data) {
return request({
url: '/caseApplication/editCaseApplication',
method: 'post',
data: data
})
}
// 删除案件信息
export function removeCaseApply(data) {
return request({
url: '/caseApplication/removeCaseApplication',
method: 'post',
data: data
})
}
// 提交
export function submitCaseApply(data) {
return request({
url: '/caseApplication/submitCaseApplication',
method: 'post',
data: data
})
}