2025-10-10 09:56:03 +08:00
|
|
|
import request from '@/utils/request'
|
|
|
|
|
|
|
|
|
|
|
2025-10-16 16:44:01 +08:00
|
|
|
// 证件管理-分页查询设备信息
|
2025-10-10 09:56:03 +08:00
|
|
|
export function getCertificateInfoListPageApi(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/certificate/certificate_manage/certificateInfo/list',
|
|
|
|
|
method: 'get',
|
|
|
|
|
headers: {
|
|
|
|
|
//"merchant-id":"378915229716713472",
|
|
|
|
|
},
|
|
|
|
|
params:data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2025-10-16 16:44:01 +08:00
|
|
|
// 证件管理-新增
|
2025-10-10 09:56:03 +08:00
|
|
|
export function addCertificateInfoApi(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/certificate/certificate_manage/certificateInfo/add',
|
|
|
|
|
method: 'post',
|
|
|
|
|
headers: {
|
|
|
|
|
//"merchant-id":"378915229716713472",
|
|
|
|
|
},
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-16 16:44:01 +08:00
|
|
|
// 证件管理-修改信息
|
2025-10-10 09:56:03 +08:00
|
|
|
export function updateCertificateInfoApi(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/certificate/certificate_manage/certificateInfo/edit',
|
|
|
|
|
method: 'post',
|
|
|
|
|
headers: {
|
|
|
|
|
//"merchant-id":"378915229716713472",
|
|
|
|
|
},
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-16 16:44:01 +08:00
|
|
|
// 证件管理-删除信息
|
2025-10-10 09:56:03 +08:00
|
|
|
export function deleteCertificateInfoApi(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/certificate/certificate_manage/certificateInfo/del',
|
|
|
|
|
method: 'post',
|
|
|
|
|
headers: {
|
|
|
|
|
//"merchant-id":"378915229716713472",
|
|
|
|
|
},
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-16 16:44:01 +08:00
|
|
|
// 证件管理-存证超期分页查询信息
|
2025-10-10 09:56:03 +08:00
|
|
|
export function getCertificateLifespanListPageApi(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/certificate/certificate_manage/certificateLifespan/list',
|
|
|
|
|
method: 'get',
|
|
|
|
|
headers: {
|
|
|
|
|
//"merchant-id":"378915229716713472",
|
|
|
|
|
},
|
|
|
|
|
params:data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-16 16:44:01 +08:00
|
|
|
// 证件管理-证件超期分页查询信息
|
|
|
|
|
export function getCertificateOverdueListPageApi(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/certificate/certificate_manage/certificateOverdue/list',
|
|
|
|
|
method: 'get',
|
|
|
|
|
headers: {
|
|
|
|
|
//"merchant-id":"378915229716713472",
|
|
|
|
|
},
|
|
|
|
|
params:data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-10 09:56:03 +08:00
|
|
|
|
|
|
|
|
// 借退管理-任务记录分页查询信息
|
|
|
|
|
export function getCertificateTaskListPageApi(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/certificate/certificate_returnmanage/certificateTask/list',
|
|
|
|
|
method: 'get',
|
|
|
|
|
headers: {
|
|
|
|
|
//"merchant-id":"378915229716713472",
|
|
|
|
|
},
|
|
|
|
|
params:data
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-10-11 14:46:21 +08:00
|
|
|
// 借退管理-证件任务撤回
|
|
|
|
|
export function getCertificateTakeReturnPageApi(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/certificate/certificate_returnmanage/certificateTask/return',
|
|
|
|
|
method: 'post',
|
|
|
|
|
headers: {
|
|
|
|
|
//"merchant-id":"378915229716713472",
|
|
|
|
|
},
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-10-10 09:56:03 +08:00
|
|
|
// 借退管理-存证分页查询信息
|
|
|
|
|
export function getCertificateSaveListPageApi(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/certificate/certificate_returnmanage/certificateSave/list',
|
|
|
|
|
method: 'get',
|
|
|
|
|
headers: {
|
|
|
|
|
//"merchant-id":"378915229716713472",
|
|
|
|
|
},
|
|
|
|
|
params:data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-11 14:46:21 +08:00
|
|
|
// 借退管理-证件存入
|
|
|
|
|
export function getCertificateSaveAddPageApi(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/certificate/certificate_returnmanage/certificateSave/add',
|
|
|
|
|
method: 'post',
|
|
|
|
|
headers: {
|
|
|
|
|
//"merchant-id":"378915229716713472",
|
|
|
|
|
},
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-10 09:56:03 +08:00
|
|
|
// 借退管理-取证分页查询信息
|
|
|
|
|
export function getCertificateAtakeListPageApi(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/certificate/certificate_returnmanage/certificateAtake/list',
|
|
|
|
|
method: 'get',
|
|
|
|
|
headers: {
|
|
|
|
|
//"merchant-id":"378915229716713472",
|
|
|
|
|
},
|
|
|
|
|
params:data
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-10-11 14:46:21 +08:00
|
|
|
// 借退管理-证件取出
|
|
|
|
|
export function getCertificateTakeAddPageApi(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/certificate/certificate_returnmanage/certificateTake/add',
|
|
|
|
|
method: 'post',
|
|
|
|
|
headers: {
|
|
|
|
|
//"merchant-id":"378915229716713472",
|
|
|
|
|
},
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-10-16 14:39:10 +08:00
|
|
|
|
|
|
|
|
export function getReplacelistApi(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/certificate/certificate_returnmanage/certificateAtake/replacelist',
|
|
|
|
|
method: 'get',
|
|
|
|
|
headers: {
|
|
|
|
|
//"merchant-id":"378915229716713472",
|
|
|
|
|
},
|
|
|
|
|
params:data
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-10-16 16:44:01 +08:00
|
|
|
export function getDevicelistApi(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/certificate/certificate_returnmanage/certificateSave/devicelist',
|
|
|
|
|
method: 'get',
|
|
|
|
|
headers: {
|
|
|
|
|
//"merchant-id":"378915229716713472",
|
|
|
|
|
},
|
|
|
|
|
params:data
|
|
|
|
|
})
|
|
|
|
|
}
|