146 lines
3.3 KiB
JavaScript
146 lines
3.3 KiB
JavaScript
import request from '@/utils/request'
|
|
|
|
// 批量案件查询
|
|
export function listBatch(data) {
|
|
return request({
|
|
url: '/caseApplication/listBatch',
|
|
method: 'get',
|
|
params: data
|
|
})
|
|
}
|
|
// 批量提交
|
|
export function submitCaseApplicationBatch(data) {
|
|
return request({
|
|
url: '/caseApplication/submitCaseApplicationBatch',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
// 批量立案审查
|
|
export function submitCaseApplicationCheckBatch(data) {
|
|
return request({
|
|
url: '/caseApplication/submitCaseApplicationCheckBatch',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
// 批量缴费
|
|
export function confirmPayBatch(data) {
|
|
return request({
|
|
url: '/pay/confirmPayBatch',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
//批量缴费总金额
|
|
export function payListBatch(data) {
|
|
return request({
|
|
url: '/pay/listBatch',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
// 缴费支付二维码
|
|
export function casePayBatch(data) {
|
|
return request({
|
|
url: '/pay/casePayBatch',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
// 批量缴费确认
|
|
export function confirmBatch(data) {
|
|
return request({
|
|
url: '/pay/confirmBatch',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
//批量组庭审核
|
|
export function pendTralCheckBatch(data) {
|
|
return request({
|
|
url: '/caseApplication/pendTralCheckBatch',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
// 批量组庭确认
|
|
export function pendTralSureBatch(data) {
|
|
return request({
|
|
url: '/caseApplication/pendTralSureBatch',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
//秘书批量审核文书
|
|
export function verificationArbitrateRecordBatch(data) {
|
|
return request({
|
|
url: '/caseApplication/verificationArbitrateRecordBatch',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
//仲裁员批量审核
|
|
export function checkArbitrateRecordBatch(data) {
|
|
return request({
|
|
url: '/caseApplication/arbitrator/checkArbitrateRecordBatch',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
// 部门长批量审核
|
|
export function checkArbitrateRecordBatchs(data) {
|
|
return request({
|
|
url: '/caseApplication/checkArbitrateRecordBatch',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
//审核仲裁方式
|
|
export function methodBatch(data) {
|
|
return request({
|
|
url: '/arbitrate/methodBatch',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
//批量书面审理
|
|
export function writtenHearBatch(data) {
|
|
return request({
|
|
url: '/arbitrate/writtenHearBatch',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
// 根据批号批量签名
|
|
export function getSignUrlBatch(data) {
|
|
return request({
|
|
url: '/adjudication/getSignUrlBatch',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
//根据批号批量用印
|
|
export function getSealUrlBatch(data) {
|
|
return request({
|
|
url: '/adjudication/getSealUrlBatch',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
//批量归档
|
|
export function caseFileBatch(data) {
|
|
return request({
|
|
url: '/adjudication/caseFileBatch',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
//仲裁文书送达
|
|
export function serviceBatch(data) {
|
|
return request({
|
|
url: '/adjudication/serviceBatch',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
} |