mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-09 19:16:43 +08:00
159 lines
3.4 KiB
JavaScript
159 lines
3.4 KiB
JavaScript
/*
|
|
* @Author: PangXingYue
|
|
* @Date: 2021-03-26 10:38:37
|
|
* @LastEditTime: 2021-04-02 16:10:30
|
|
* @LastEditors: PangXingYue
|
|
* @Description:
|
|
* @FilePath:
|
|
*/
|
|
|
|
import request from '@/assets/js/utils/request'
|
|
import getUrl from '@/assets/js/utils/get-url'
|
|
|
|
// 审批流程查询接口
|
|
export function approveList(data) {
|
|
return request({
|
|
url: getUrl('/agent/allowance/approve/list', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 审批人列表接口
|
|
export function getApproveList(data) {
|
|
return request({
|
|
url: getUrl('/agent/allowance/approve/getApproveList', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 津贴申请-列表
|
|
export function getAllowanceLst(data) {
|
|
return request({
|
|
url: getUrl('/agent/allowance/getAllowanceLst', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 津贴申请-详情
|
|
export function getAllowanceDetail(data) {
|
|
return request({
|
|
url: getUrl('/agent/allowance/getAllowanceDetail', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 津贴申请和我的资料-获取地区编码信息(开户银行省市)
|
|
export function getProvinceCode(data) {
|
|
return request({
|
|
url: getUrl('/agent/code/getProvinceCode', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 津贴申请和我的资料-通过所在市编码获取银行信息(开户银行)
|
|
export function getCodeValue(data) {
|
|
return request({
|
|
url: getUrl('/agent/code/getCodeValue', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 津贴申请和我的资料-获取开户银行支行的信息(开户银行支行)
|
|
export function getBranchCodeValue(data) {
|
|
return request({
|
|
url: getUrl('/agent/code/getBranchCodeValue', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 津贴申请-权限校验
|
|
export function allowanceCheck(data) {
|
|
return request({
|
|
url: getUrl('/agent/allowance/check', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 津贴-审批批量通过接口
|
|
export function batchPass(data) {
|
|
return request({
|
|
url: getUrl('/agent/allowance/approve/batchPass', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 津贴-提交审批接口
|
|
export function updateApprove(data) {
|
|
return request({
|
|
url: getUrl('/agent/allowance/approve/updateApprove', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 津贴-审批催办接口
|
|
export function approveUrge(data) {
|
|
return request({
|
|
url: getUrl('/agent/allowance/approve/approveUrge', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 津贴-申请列表定期提醒修改
|
|
export function myDataremind(data) {
|
|
return request({
|
|
url: getUrl('/agent/allowance/myData/remind', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 津贴-津贴申请人撤销接口
|
|
export function revokerApprove(data) {
|
|
return request({
|
|
url: getUrl('/agent/allowance/approve/revokerApprove', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 津贴申请-删除
|
|
export function delAllowance(data) {
|
|
return request({
|
|
url: getUrl('/agent/allowance/delAllowance', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
// 津贴-提交审批初始化接口
|
|
export function approveInit(data) {
|
|
return request({
|
|
url: getUrl('/agent/allowance/approve/init', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
|
|
// <-- zhangqi 津贴申请与我的资料使用到的接口 begin -->
|
|
|
|
// 津贴申请-基本信息,账户信息,影像资料等点击下一步操作时调用的保存接口
|
|
export function saveOrUpdateAllowanceUrl(data) {
|
|
return request({
|
|
url: getUrl('/agent/allowance/saveOrUpdateAllowance', 1),
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
// <-- zhangqi 津贴申请与我的资料使用到的接口 end -->
|
|
|