| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885 |
- import axios from '../axios'
- // 查询所有订单任务列表
- export const findPage = (data) => {
- return axios({
- url: '/order/taskPools/query',
- method: 'post',
- data
- })
- }
- //任务池操作校验
- export const checkOrdersEdit = (data) => {
- return axios({
- url: "/order/taskPools/checkCurrentUserEdit",
- method: "post",
- data
- })
- }
- // 根据任务号查询订单报价信息
- export const getOrderInfoByOrderno = (data) => {
- return axios({
- url: '/order/taskPools/queryOrderInfo',
- method: 'post',
- data
- })
- }
- //添加影像信息
- export const yonganImage = (data) => {
- return axios({
- url: '/api/yongan/UploadImage',
- method: 'post',
- data
- })
- }
- // 根据任务号查询影像信息
- export const findTaskImage = (data) => {
- return axios({
- url: 'insTaskImage/findById?imgtype=' + data.imgtype + '&taskid=' + data.taskid,
- method: 'get'
- })
- }
- //提交核保
- export const yonganAudit = (data) => {
- return axios({
- url: '/api/yongan/audit?orderno=' + data.orderno + '&jqappoint=' + data.jqappoint + '&syappoint=' + data.syappoint,
- method: 'post'
- })
- }
- //提交核保
- export const renbaoAudit = (data) => {
- return axios({
- url: '/api/insRenbao/audit?orderno=' + data.orderno + '&jqappoint=' + data.jqappoint + '&syappoint=' + data.syappoint,
- method: 'post'
- })
- }
- //核保审核
- export const saveAudit = (data) => {
- return axios({
- url: '/insOrder/saveAudit',
- method: 'post',
- data
- })
- }
- // 关闭订单
- export const closeOrderno = (data) => {
- return axios({
- url: '/insOrder/closeOrder?quoteno=' + data.quoteno,
- method: 'post'
- })
- }
- // 提交线下缴费
- export const savePayType = (data) => {
- return axios({
- url: '/insOrder/savePayType',
- method: 'post',
- data
- })
- }
- // 确认线下缴费
- export const savePayment = (data) => {
- return axios({
- url: '/insOrder/savePayment',
- method: 'post',
- data
- })
- }
- // 确认承保
- export const savePolicy = (data) => {
- return axios({
- url: '/insOrder/savePolicy',
- method: 'post',
- data
- })
- }
- // 费用清单查询(承保确认时会自动生成费用清单)
- export const insFeeFindPage = (data) => {
- return axios({
- url: '/insFeeDetail/findPage',
- method: 'post',
- data
- })
- }
- // 费用详细信息查询
- export const insFeeQueryDetail = (data) => {
- return axios({
- url: '/insFeeDetail/queryDetail?orderno=' + data,
- method: 'get'
- })
- }
- //审核费用
- export const feeAudit = (data) => {
- return axios({
- url: '/insFeeDetail/feeAudit?auditid=' + data.auditid + '&ordernos=' + data.ordernos,
- method: 'post',
- })
- }
- //保险公司费用结算查询
- export const queryInsCompanyFee = (data) => {
- return axios({
- url: '/insFeeDetail/queryInsCompanyFee',
- method: 'post',
- data
- })
- }
- //与保险公司结算凭证
- export const insFeeSettle = (data) => {
- return axios({
- url: '/insFeeDetail/insFeeSettle?ordernos=' + data.ordernos + '&settleno=' + data.settleno,
- method: 'post',
- })
- }
- //与业务人员结算凭证
- export const userFeeSettle = (data) => {
- return axios({
- url: '/insFeeDetail/userFeeSettle?ordernos=' + data,
- method: 'post',
- })
- }
- //与业务人员结算凭证
- export const payApplyFindPage = (data) => {
- return axios({
- url: '/insPayApply/findPage',
- method: 'post',
- data
- })
- }
- export const payqueryPage = (data) => {
- return axios({
- url: 'sysAmountAuditing/queryPage',
- method: 'post',
- data
- })
- }
- //可提现余额提现审核
- export const insPayApplyAudit = (data) => {
- return axios({
- url: '/insPayApply/saveAudit',
- method: 'post',
- data
- })
- }
- // 可提现余额查询
- export const payAccount = (data) => {
- return axios({
- url: '/insPayApply/payAccount?userid=' + data,
- method: 'get'
- })
- }
- //推广账户清单查询
- export const queryCommission = (data) => {
- return axios({
- url: '/insFeeDetail/queryCommission',
- method: 'post',
- data
- })
- }
- // 机构费用清单查询
- export const queryDeptFee = (data) => {
- return axios({
- url: '/insFeeDetail/queryDeptFee',
- method: 'post',
- data
- })
- }
- // 机构费用账户余额查询
- export const deptAccount = (data) => {
- return axios({
- url: '/insPayApply/deptAccount?deptid=' + data,
- method: 'get'
- })
- }
- // 提现申请
- export const deptApply = (data) => {
- return axios({
- url: '/insPayApply/deptApply?amount=' + data.amount + '&deptid=' + data.deptid,
- method: 'post'
- })
- }
- // 根据任务号查询订单轨迹信息
- export const queryOrderHistory = (data) => {
- return axios({
- url: '/insOrder/queryOrderHistory?orderno=' + data,
- method: 'post'
- })
- }
- // 任务规则保存
- export const insOrderSaveTask = (data) => {
- return axios({
- url: '/insOrderTask/saveTask',
- method: 'post',
- data
- })
- }
- // 任务规则分页查询
- export const insOrderTaskPage = (data) => {
- return axios({
- url: '/insOrderTask/findPage',
- method: 'post',
- data
- })
- }
- // 任务转发
- export const forwarding = (data) => {
- return axios({
- url: '/order/taskPools/forwarding',
- method: 'post',
- data
- })
- }
- //上传保单
- export const uploadMore = (dirId, data) => {
- return axios({
- url: '/insFile/uploadMore?dirId=' + dirId,
- method: 'post',
- data
- })
- }
- //下载保单
- export const queryUploadList = (dirId) => {
- return axios({
- url: '/insFile/queryList?dirId=' + dirId,
- method: 'get'
- })
- }
- //删除保单
- export const deleteFile = (fileId) => {
- return axios({
- url: '/insFile/deleteFile?fileId=' + fileId,
- method: 'get'
- })
- }
- // 机构余额查询
- export const deptAccountPage = (data) => {
- return axios({
- url: '/insPayApply/deptAccountPage',
- method: 'post',
- data
- })
- }
- export const sysDeptAccountPage = (data) => {
- return axios({
- url: '/sysDeptAccount/sysDeptAccountPage',
- method: 'post',
- data
- })
- }
- // 账户余额分页查询
- export const findPageAccount = (data) => {
- return axios({
- url: '/insPayApply/findPageAccount',
- method: 'post',
- data
- })
- }
- export const findPageAccountPro = (data) => {
- return axios({
- url: '/sysUserAccount/queryPage',
- method: 'post',
- data
- })
- }
- // 证件识别
- export const imgAI = (data) => {
- return axios({
- url: '/api/huanong/imgAI',
- method: 'post',
- data
- })
- }
- // vin校验
- export const vinModelQuery = (data) => {
- return axios({
- url: '/api/tianan/modelQuery',
- method: 'post',
- data
- })
- }
- // 华农车辆实际价值
- export const huanongActualValue = (data) => {
- return axios({
- url: '/api/huanong/actualValue',
- method: 'post',
- data
- })
- }
- // 华农报价
- export const huanongQuote = (data) => {
- return axios({
- url: '/api/huanong/quote',
- method: 'post',
- data
- })
- }
- // 恒邦车辆实际价值
- export const hengbangActualValue = (data) => {
- return axios({
- url: '/api/hengbang/actualValue',
- method: 'post',
- data
- })
- }
- // 恒邦报价
- export const hengbangQuote = (data) => {
- return axios({
- url: '/api/hengbang/quote',
- method: 'post',
- data
- })
- }
- // 恒邦报价
- export const zhongmeiQuote = (data) => {
- return axios({
- url: '/zm/QuotedPrice',
- method: 'post',
- data
- })
- }
- // 天安报价
- export const tiananQuote = (data) => {
- return axios({
- url: '/api/tianan/quote',
- method: 'post',
- data
- })
- }
- // 导出Excel文件
- export const excelExport = (data) => {
- return axios({
- url: '/excel/v1/**',
- method: "post",
- data
- })
- }
- export const AmountReview = (data) => {
- return axios({
- url: 'sysAmountAuditing/AmountReview',
- method: "put",
- data
- })
- }
- //导入excel文件
- export const uploadExcel = (data, type) => {
- return axios({
- url: '/excel/uploadExcel?type=' + type,
- method: 'post',
- data
- })
- }
- //查询excel数据
- export const queryZMExcel = (data) => {
- return axios({
- url: '/excel/queryZMExcel',
- method: 'post',
- data
- })
- }
- //订单认领
- export const claimOrder = (data) => {
- return axios({
- url: '/excel/ClaimOrder',
- method: 'post',
- data
- })
- }
- //上传线下订单
- export const uploadOfflineExcel = (data) => {
- return axios({
- url: 'excel/uploadOfflineExcel',
- method: 'post',
- data
- })
- }
- //查询线下订单
- export const queryOfflineExcel = (data) => {
- return axios({
- url: 'excel/queryOfflineExcel',
- method: 'post',
- data
- })
- }
- //导出线下订单
- export const findOfflineExcel = (data) => {
- return axios({
- url: 'excel/findOfflineExcel',
- method: 'post',
- data
- })
- }
- //删除线下订单
- export const deleteExcel = (data) => {
- return axios({
- url: 'excel/delete',
- method: 'post',
- data
- })
- }
- //更新线下订单
- export const updateExcel = (data) => {
- return axios({
- url: 'excel/update',
- method: 'post',
- data
- })
- }
- //图表查询
- export const tongJiOffline = (data) => {
- return axios({
- url: 'excel/tongJiOffline',
- method: 'post',
- data
- })
- }
- // 对账系统批量结算
- export const batchUpdate = (data, flag) => {
- return axios({
- url: '/excel/batchUpdate?flag=' + flag,
- method: 'post',
- data
- })
- }
- //导入查询
- export const daoruchaxun = (data) => {
- return axios({
- url: '/excel/uploadOfflineFile_query',
- method: 'post',
- data
- })
- }
- //批量修改
- export const piliangupdate = (data) => {
- return axios({
- url: '/excel/batchUpdate_other',
- method: 'post',
- data
- })
- }
- export const addorder = (data) => {
- return axios({
- url: "/insOrder/addOrder",
- method: "post",
- data
- })
- }
- export const updateorder = (data) => {
- return axios({
- url: "/insOrder/updateOrder",
- method: "post",
- data
- })
- }
- //渠道结算模块
- export const payableStatement = (data) => {
- return axios({
- url: '/inv/payableStatement/import',
- method: 'post',
- data
- })
- }
- export const payableStatementList = (pageNum, pageSize) => {
- return axios({
- url: '/inv/payableStatement?pageNum=' + pageNum + '&pageSize=' + pageSize,
- method: 'get',
- })
- }
- //轮播图模块
- export const banneradd = (data) => {
- return axios({
- url: "/sys/carouse",
- method: "post",
- data
- })
- }
- export const bannerQuery = () => {
- return axios({
- url: "/sys/carouse",
- method: "get",
- })
- }
- export const bannerDelete = (id) => {
- return axios({
- url: "/sys/carouse/" + id,
- method: "delete",
- })
- }
- export const bannerPut = (data, id) => {
- return axios({
- url: "/sys/carouse/" + id,
- method: "put",
- data
- })
- }
- export const insZhongmeiverifyPayment = (data) => {
- return axios({
- url: "/insZhongmei/verifyPayment",
- method: "post",
- data
- })
- }
- export const esmInsCompanyselectList = (data) => {
- return axios({
- url: "/esmInsCompany/selectList",
- method: "post",
- data
- })
- }
- //订单查询接口
- export const queryPageOrder = (data) => {
- return axios({
- url: "/fnc/carSettle/queryPageOrder",
- method: "post",
- data
- })
- }
- //审核页面查询接口
- export const feeDetail = (data) => {
- return axios({
- url: "/fnc/carSettle/feeDetail",
- method: "post",
- data
- })
- }
- //审核接口
- export const auditFee = (data) => {
- return axios({
- url: "/fnc/carSettle/auditFee",
- method: "post",
- data
- })
- }
- // 海报列表接口
- export const posterList = (data) => {
- return axios({
- url: '/sysPoster/posterList',
- method: 'post',
- data
- })
- }
- // 添加海报接口
- export const addPoster = (data) => {
- return axios({
- url: '/sysPoster/addPoster',
- method: "post",
- data
- })
- }
- // 删除海报接口
- export const delPoster = (data) => {
- return axios({
- url: '/sysPoster/delPoster?id=' + data,
- method: "post",
- })
- }
- // ** 财务对账--应收应付 */
- //插入渠道账户
- export const channelAccountAdd = (data) => {
- return axios({
- url: '/InvChannelAccount/insertAccount',
- method: "post",
- data
- })
- }
- //删除渠道账户
- export const channelAccountDelete = (data) => {
- return axios({
- url: '/InvChannelAccount/' + data,
- method: "delete",
- })
- }
- //修改渠道列表
- export const channelAccountUpdate = (data) => {
- return axios({
- url: '/InvChannelAccount/updateAccount',
- method: "post",
- data
- })
- }
- //获取渠道列表
- export const channelAccountQuery = (data) => {
- return axios({
- url: '/InvChannelAccount/getAccount',
- method: "post",
- data
- })
- }
- //获取应收结果
- export const accountsResult = (data,data1) => {
- return axios({
- url: '/InsReceivable/receivableResult?yearMonthStr=' + data+'&insuranceId='+data1,
- method: "get",
- })
- }
- //获取签单日期结算来源表
- export const signingSourceResult = (data,data1) => {
- return axios({
- url: '/InsReceivable/signingSourceResult?yearMonthStr=' + data+'&insuranceId='+data1,
- method: "get",
- })
- }
- //获取结算日期结算来源表
- export const settlementSourceResult = (data,data1) => {
- return axios({
- url: '/InsReceivable/settlementSourceResult?yearMonthStr=' + data+'&insuranceId='+data1,
- method: "get",
- })
- }
- //结算来源表导入
- export const settlementExcel = (data) => {
- return axios({
- url: "/SettlementSource/excel?file=" + data,
- method: "get",
- })
- }
- //结算来源数据查询
- export const settlementExcelpage = (data) => {
- return axios({
- url: "/InsReceivable/settlementPage",
- method: "post",
- data
- })
- }
- //结算来源修改
- export const settlementUpdate = (data) => {
- return axios({
- url: "/InsReceivable/updateSettlement",
- method: "post",
- data
- })
- }
- //来源表导入
- export const SourceExcel = (data) => {
- return axios({
- url: "/Source/excel?file=" + data,
- method: "get",
- })
- }
- //来源表导入
- export const SourceExcelPage = (data) => {
- return axios({
- url: "/InsReceivable/receivablePage",
- method: "post",
- data
- })
- }
- //来源修改
- export const SourceUpdate = (data) => {
- return axios({
- url: "/InsReceivable/receivableUpdates",
- method: "post",
- data
- })
- }
- //应收应付表
- export const receivableAndSettlement = (data) => {
- return axios({
- url: "/InsReceivable/receivableAndSettlement",
- method: "post",
- data
- })
- }
- //应收表导出
- export const sourceExport = (data) => {
- return axios({
- url: "/InsReceivable/exportReceivable",
- method: "post",
- data
- })
- }
- //应收表批量删除
- export const sourcedeletes = (data) => {
- return axios({
- url: "/InsReceivable/deleteReceivable",
- method: "post",
- data
- })
- }
- //应收表批量修改
- export const sourceUpdates = (data) => {
- return axios({
- url: "/InsReceivable/receivableUpdateBatch",
- method: "post",
- data
- })
- }
- //结算导出
- export const SettlementExport = (data) => {
- return axios({
- url: "/InsReceivable/exportSettlement",
- method: "post",
- data
- })
- }
- //结算导出
- export const SettlementAdd = (data) => {
- return axios({
- url: "/InsReceivable/addSettlement",
- method: "post",
- data
- })
- }
- //结算表批量修改
- export const SettlementUpdates = (data) => {
- return axios({
- url: "/InsReceivable/updateSettlementBatch",
- method: "post",
- data
- })
- }
- //导出应收应付表
- export const excelReceivableAndSettlementExport = (data) => {
- return axios({
- url: "/InsReceivable/excelReceivableAndSettlement",
- method: "post",
- data
- })
- }
- //应收表新增
- export const sourceaddReceivable = (data) => {
- return axios({
- url: "/InsReceivable/addReceivable",
- method: "post",
- data
- })
- }
- //应收表单条数据删除
- export const sourcedeleteReceivable = (data) => {
- return axios({
- url: "/InsReceivable/deleteReceivable",
- method: "post",
- data
- })
- }
- //结算数据导入后是否匹配
- export const isVisibledataMatching = () => {
- return axios({
- url: "/InsReceivable/dataMatching",
- method: "get",
- })
- }
- //结算表批量删除
- export const SettlementDeletes = (data) => {
- return axios({
- url: "/InsReceivable/deleteSettlement",
- method: "post",
- data
- })
- }
- //获取应收模板
- export const sourceTemplate = () => {
- return axios({
- url: "/InsReceivable/getAccountsReceivable",
- method: "get",
- })
- }
- //获取结算模板
- export const settlementTemplate = () => {
- return axios({
- url: "/InsReceivable/getSettlement",
- method: "get",
- })
- }
- // 保险公司结算-手续费结算页面列表
- export const plyFeequery = (data) => {
- return axios({
- url: "/fnc/plyFee/query",
- method: "post",
- data
- })
- }
- // 保险公司结算-手续费结算页面-结算接口
- export const plyFeebalance = (data) => {
- return axios({
- url: "/fnc/plyFee/balance",
- method: "put",
- data
- })
- }
- // 保险公司结算-非跟单结算页面列表
- export const settlementFees = (data) => {
- return axios({
- url: "/fnc/SettlementFees/query",
- method: "post",
- data
- })
- }
- // 保险公司结算-非跟单结算页面查询批量手续费结算
- export const totalQuery = (data) => {
- return axios({
- url: "/fnc/plyFee/totalQuery",
- method: "post",
- data
- })
- }
- // 保险公司结算-非跟单结算页面批量手续费结算保存
- export const batchBalance = (data) => {
- return axios({
- url: "/fnc/plyFee/batchBalance",
- method: "put",
- data
- })
- }
- // 保险公司结算-非跟单结算页面单行结算保存
- export const documentarySettle = (data) => {
- return axios({
- url: "/fnc/SettlementFees/documentarySettle",
- method: "put",
- data
- })
- }
|