You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

46 lines
1.2 KiB

import request from '@/utils/request'
export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/buscenter/v1/bussalesorderloancontract/listPageForRepay',
method: 'post',
data: params,
headers: { 'Content-Type': 'application/json' }
})
},
// 生成还款计划--回显
loanCreateSchedule: function(data) {
return request({
url: '/riskcenter/v1/loanrepaymentschedule/loanCreateSchedule',
method: 'get',
params: data
})
},
// 生成还款计划--保存
loanCreateSchedulePdf: function(data) {
return request({
url: '/riskcenter/v1/loanrepaymentschedule/loanCreateSchedulePdf',
method: 'post',
data: data,
headers: { 'Content-Type': 'application/json' }
})
},
// 查看多台还款计划--回显(详情)
viewVinsSchedule: function(data) {
return request({
url: '/riskcenter/v1/loanrepaymentschedule/viewVinsSchedule',
method: 'get',
params: data
})
},
// 查看单车还款计划--回显
viewVinOneSchedule: function(data) {
return request({
url: '/riskcenter/v1/loanrepaymentschedule/viewVinOneSchedule',
method: 'get',
params: data
})
}
}