122 lines
2.4 KiB
JavaScript
122 lines
2.4 KiB
JavaScript
import request from '@/utils/request'
|
|
|
|
/**
|
|
* @data 可申请证件列表 applyType 1 查询能存证证件编号 2 查询能取证的证件编号
|
|
*/
|
|
export function applyCertificateNoListApi(data) {
|
|
return request({
|
|
url: '/certificate/certificate_check/certificateCheck/applyCertificateNo',
|
|
method: 'get',
|
|
params:data
|
|
})
|
|
}
|
|
/**
|
|
* @data 代领人列表-不分页
|
|
*/
|
|
export function thridListApi(data) {
|
|
return request({
|
|
url: '/certificate/certificate_system/certificateInfo/thridList',
|
|
method: 'get',
|
|
params:data
|
|
})
|
|
}
|
|
|
|
/**
|
|
* @data 证件申请列表
|
|
*/
|
|
export function certificateApplyListPageApi(data) {
|
|
return request({
|
|
url: '/certificate/certificate_check/certificateApply/list',
|
|
method: 'get',
|
|
params:data
|
|
})
|
|
}
|
|
|
|
/**
|
|
* @data 证件申请-添加
|
|
*/
|
|
export function addCertificateApplyApi(data) {
|
|
return request({
|
|
url: '/certificate/certificate_check/certificateApply/add',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
/**
|
|
* @data 证件申请-编辑
|
|
*/
|
|
export function editCertificateApplyApi(data) {
|
|
return request({
|
|
url: '/certificate/certificate_check/certificateApply/edit',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
/**
|
|
* @data 证件申请-撤回
|
|
*/
|
|
export function revokeCertificateApplyApi(data) {
|
|
return request({
|
|
url: '/certificate/certificate_check/certificateApply/Revoke',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* @data 证件审批列表
|
|
*/
|
|
export function certificateCheckListPageApi(data) {
|
|
return request({
|
|
url: '/certificate/certificate_check/certificateCheck/list',
|
|
method: 'get',
|
|
params:data
|
|
})
|
|
}
|
|
/**
|
|
* @data 证件审批列表 type 1 待处理 2已处理
|
|
*/
|
|
export function certificatelistByTypePageApi(data) {
|
|
return request({
|
|
url: '/certificate/certificate_check/certificateCheck/listByType',
|
|
method: 'get',
|
|
params:data
|
|
})
|
|
}
|
|
|
|
/**
|
|
* @data 证件列表
|
|
*/
|
|
export function deviceListApi(data) {
|
|
return request({
|
|
url: '/certificate/certificate_returnmanage/certificateSave/devicelist',
|
|
method: 'get',
|
|
params:data
|
|
})
|
|
}
|
|
|
|
|
|
/**
|
|
* @data 证件申请-审核
|
|
*/
|
|
export function checkCertificateApplyApi(data) {
|
|
return request({
|
|
url: '/certificate/certificate_check/certificateCheck/check',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
/**
|
|
* @data 证件申请-审核流程
|
|
*/
|
|
export function checkProcessCertificateApplyApi(data) {
|
|
return request({
|
|
url: '/certificate/certificate_check/certificateCheck/checkProcess',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|