|
@@ -12,7 +12,7 @@ export function listCorps(query) {
|
|
// 查询客户详情列表
|
|
// 查询客户详情列表
|
|
export function listCorps_s(query) {
|
|
export function listCorps_s(query) {
|
|
return request({
|
|
return request({
|
|
- url: '/warehouseBusiness/otherFees/list',
|
|
|
|
|
|
+ url: '/finance/other/list',
|
|
method: 'get',
|
|
method: 'get',
|
|
params: query
|
|
params: query
|
|
})
|
|
})
|
|
@@ -21,14 +21,14 @@ export function listCorps_s(query) {
|
|
export function single(fId) {
|
|
export function single(fId) {
|
|
return request({
|
|
return request({
|
|
// url: '/basicdata/corps/selectCustomerDriverList',
|
|
// url: '/basicdata/corps/selectCustomerDriverList',
|
|
- url: '/warehouseBusiness/otherFees/' + fId,
|
|
|
|
|
|
+ url: '/finance/other/' + fId,
|
|
method: 'get',
|
|
method: 'get',
|
|
})
|
|
})
|
|
}
|
|
}
|
|
// 新增
|
|
// 新增
|
|
export function preservation(data) {
|
|
export function preservation(data) {
|
|
return request({
|
|
return request({
|
|
- url: '/warehouseBusiness/otherFees/save',
|
|
|
|
|
|
+ url: '/finance/other/save',
|
|
method: 'post',
|
|
method: 'post',
|
|
data: data
|
|
data: data
|
|
})
|
|
})
|
|
@@ -36,21 +36,21 @@ export function preservation(data) {
|
|
// 删除
|
|
// 删除
|
|
export function singleDeletion(fId) {
|
|
export function singleDeletion(fId) {
|
|
return request({
|
|
return request({
|
|
- url: '/warehouseBusiness/otherFees/remove/' + fId,
|
|
|
|
|
|
+ url: '/finance/other/remove/' + fId,
|
|
method: 'get'
|
|
method: 'get'
|
|
})
|
|
})
|
|
}
|
|
}
|
|
// 撤销
|
|
// 撤销
|
|
export function revokeContainerPort(fId) {
|
|
export function revokeContainerPort(fId) {
|
|
return request({
|
|
return request({
|
|
- url: '/warehouseBusiness/otherFees/revoke/' + fId,
|
|
|
|
|
|
+ url: '/finance/other/revoke/' + fId,
|
|
method: 'get'
|
|
method: 'get'
|
|
})
|
|
})
|
|
}
|
|
}
|
|
// 提交
|
|
// 提交
|
|
export function submit(data) {
|
|
export function submit(data) {
|
|
return request({
|
|
return request({
|
|
- url: '/warehouseBusiness/otherFees/add',
|
|
|
|
|
|
+ url: '/finance/other/add',
|
|
method: 'post',
|
|
method: 'post',
|
|
data: data
|
|
data: data
|
|
})
|
|
})
|