|
|
@@ -3,7 +3,7 @@ import request from '@/utils/request'
|
|
|
// 查询企业授信额度列表
|
|
|
export function listCreditLine(query) {
|
|
|
return request({
|
|
|
- url: '/sc-service_pxh/creditLine/list',
|
|
|
+ url: '/sc-service/creditLine/list',
|
|
|
method: 'get',
|
|
|
params: query
|
|
|
})
|
|
|
@@ -12,7 +12,7 @@ export function listCreditLine(query) {
|
|
|
// 查询企业授信额度详细
|
|
|
export function getCreditLine(zfpcrId) {
|
|
|
return request({
|
|
|
- url: '/sc-service_pxh/creditLine/' + zfpcrId,
|
|
|
+ url: '/sc-service/creditLine/' + zfpcrId,
|
|
|
method: 'get'
|
|
|
})
|
|
|
}
|
|
|
@@ -20,7 +20,7 @@ export function getCreditLine(zfpcrId) {
|
|
|
// 新增企业授信额度
|
|
|
export function addCreditLine(data) {
|
|
|
return request({
|
|
|
- url: '/sc-service_pxh/creditLine',
|
|
|
+ url: '/sc-service/creditLine',
|
|
|
method: 'post',
|
|
|
data: data
|
|
|
})
|
|
|
@@ -29,7 +29,7 @@ export function addCreditLine(data) {
|
|
|
// 修改企业授信额度
|
|
|
export function updateCreditLine(data) {
|
|
|
return request({
|
|
|
- url: '/sc-service_pxh/creditLine',
|
|
|
+ url: '/sc-service/creditLine',
|
|
|
method: 'put',
|
|
|
data: data
|
|
|
})
|
|
|
@@ -38,7 +38,7 @@ export function updateCreditLine(data) {
|
|
|
// 删除企业授信额度
|
|
|
export function delCreditLine(zfpcrId) {
|
|
|
return request({
|
|
|
- url: '/sc-service_pxh/creditLine/' + zfpcrId,
|
|
|
+ url: '/sc-service/creditLine/' + zfpcrId,
|
|
|
method: 'delete'
|
|
|
})
|
|
|
}
|