74 lines
1.6 KiB
JavaScript
74 lines
1.6 KiB
JavaScript
import request from '@/utils/request'
|
|
|
|
// 查询案件列表
|
|
export function caseApplicationList(data) {
|
|
return request({
|
|
url: 'caseApplication/list',
|
|
method: 'get',
|
|
params: data
|
|
})
|
|
}
|
|
/** 新增案件 */
|
|
export function caseApplicationInsert(data) {
|
|
return request({
|
|
url: 'caseApplication/insert',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
/** 根据id查询案件信息 */
|
|
export function caseApplicationSelectById(data) {
|
|
return request({
|
|
url: '/caseApplication/selectById',
|
|
method: 'get',
|
|
params: data
|
|
})
|
|
}
|
|
/** 案件证据查询 */
|
|
export function getFileList(data) {
|
|
return request({
|
|
url: "/common/fileList",
|
|
method: "get",
|
|
params: data,
|
|
});
|
|
}
|
|
/** 批量上传证据 */
|
|
export function batchUpload(data) {
|
|
return request({
|
|
url: "/caseApplication/batchUpload",
|
|
method: "post",
|
|
data: data,
|
|
});
|
|
}
|
|
// 提交
|
|
export function submitCaseApply(data) {
|
|
return request({
|
|
url: '/caseApplication/submit',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
// 缴费确认
|
|
export function confirmPaid(data) {
|
|
return request({
|
|
url: "/pay/confirmPaid",
|
|
method: "post",
|
|
data: data,
|
|
});
|
|
}
|
|
// 案件id查询缴费清单
|
|
export function selectPaymentDetail(data) {
|
|
return request({
|
|
url: "/pay/selectPaymentDetail",
|
|
method: "get",
|
|
params: data,
|
|
});
|
|
}
|
|
//案件受理
|
|
export function accept(data) {
|
|
return request({
|
|
url: "/caseApplication/accept",
|
|
method: "post",
|
|
data: data,
|
|
});
|
|
} |