import { get, post } from '@/utils/request' // 渠道准入申请单列表查询 export const qryChannelAdmitInList = p => post('/server/qryChannelAdmitInList', p) // 渠道准入申请单列表查询 export const addChannelLoan = p => post('/server/addChannelLoan', p) // 查询合作方信息 export const qryChannelAdmitInDetailAndDeal = p => post('/server/qryChannelAdmitInDetailAndDeal', p) // 查询下拉菜单 export const channelCode = p => post('/server/channelCode', p) // 查询合作方准入申请信息详情 export const qryChannelApplyInfoRequest = p => post('/server/qryChannelApplyInfoRequest', p) // 合作方左侧信息tab查询 export const queryChannelTabTree = p => post('/server/queryChannelTabTree', p) // 获取历史审批意见列表 export const qryChannelOpinionList = p => post('/server/qryChannelOpinionList', p) // 获取流程流转记录 export const qryChannelFlowTaskList = p => post('/server/qryChannelFlowTaskList', p) // 查询合作方详情参数-旧 export const qryEnpDetailParams = p => post('/server/qryEnpDetailParams', p) // 查询合作方详情参数-新 export const qryChannelAdmitInDetail = p => post('/server/qryChannelAdmitInDetail', p) // 合作方维护记录列表 export const qryChannelHistoryList = p => post('/server/qryChannelHistoryList', p) // 渠道准入申请单详情保存 export const saveChannelAdmit = p => post('/server/saveChannelAdmit', p) // 渠道准入申请单详情提交 export const submitChannelAdmitIn = p => post('/server/submitChannelAdmitIn', p) // 查询合作方专项资金收款账户列表 export const qryChannelAccountList = p => post('/server/qryChannelAccountList', p) // 新增合作方专项资金收款账户 export const addChannelAccountInfo = p => post('/server/addChannelAccountInfo', p) // 删除合作方专项资金账户 export const delChannelAccoutInfo = p => post('/server/delChannelAccoutInfo', p) // 修改或保存合作方专项资金收款账户 export const saveChannelAccountInfo = p => post('/server/saveChannelAccountInfo', p) // 获取字典数据通用接口 export const getDictionaryList = p => post('/server/getDictionaryList', p) // 开户支行 export const qryBankBranchList = p => post('/server/qryBankBranchList', p) // <---产品信息---> // 查询合作方开通产品信息列表 export const qryChannelProductList = p => post('/server/qryChannelProductList', p) // 合作方开通产品信息新增 export const addChannelQcInfo = p => post('/server/addChannelQcInfo', p) // 修改或保存合作方开通产品信息 export const saveChannelQcInfo = p => post('/server/saveChannelQcInfo', p) // 删除合作方开通产品信息 export const delChannelQcInfo = p => post('/server/delChannelQcInfo', p) // 影像资料 // 查询合作方影像资料信息 export const queryChannelImageInfo = p => post('/server/queryChannelImageInfo', p) // 影像预览 export const queryRiskEcmPageList = p => post('/server/queryRiskEcmPageList', p) // 添加合作方影像资料信息 export const addChannelImage = p => post('/server/addChannelImage', p) // 删除影像资料 export const delChannelImage = p => post('/server/delChannelImage', p) // 审批意见页面展示 export const ChannelApproveInfoRequest = p => post('/server/ChannelApproveInfoRequest', p) // 保存审批意见 export const saveChannelApproveInfo = p => post('/server/saveChannelApproveInfo', p) // 查询授信信息 export const addChannelDepositsum = p => post('/server/addChannelDepositsum', p) // 申请信息保存 export const saveChannelDepositsum = p => post('/server/saveChannelDepositsum', p) // 复核页面 export const qryChannelApproveList = p => post('/server/qryChannelApproveList', p) // 准出 export const channelTakeOut = p => post('/server/channelTakeOut', p) // 取消申请 export const channelCancelApply = p => post('/server/channelCancelApply', p) // 撤回申请 export const channelRecallApply = p => post('/server/channelRecallApply', p) // 变更申请 export const addChannelChangeApply = p => post('/server/addChannelChangeApply', p) // 变更申请 export const getChanneApprovTask = p => post('/server/getChanneApprovTask', p) // 重新申请 export const channelApplyAgain = p => post('/server/channelApplyAgain', p) // 审批结果 export const queryChanelCommitActionRange = p => post('/server/queryChanelCommitActionRange', p) // 系统随机分配任务 export const autoGetTask = p => post('/server/autoGetTask', p)