szh-new
张同海 4 months ago
parent 4953579ab3
commit c509f20cd7

@ -8,7 +8,7 @@ enum Api {
GetClientFrtSelectList = '/mainApi/Common/GetClientFrtSelectList',
GetClientSourceSelectList = '/mainApi/Common/GetClientSourceSelectList',
GetClientCountrySelectList = '/mainApi/Common/GetCountrySelectList',
GetClientCountrySelectList = '/mainApi/Common/GetClientCountrySelectList',
GetClientStlModeSelectList = '/mainApi/Common/GetClientStlModeSelectList',
GetClientBankList = '/mainApi/ClientBank/GetClientBankList',

@ -12,7 +12,7 @@ enum Api {
Import = '/mainApi/CodePort/ImportCodePort',
GetLanesSelectList = '/mainApi/Common/GetClientLanesSelectList',
GetCountrySelectList = '/mainApi/Common/GetCountrySelectList',
GetCountrySelectList = '/mainApi/Common/GetClientCountrySelectList',
}
// 列表 (Auth)
export function ApiList(data: PageRequest) {

@ -337,7 +337,7 @@ export function GetOpenPrintTemplateList(data) {
return request({
url: '/mainApi/Print/GetOpenPrintTemplateList',
method: 'post',
data
data,
})
}
// 获取Json打印信息 (Auth)
@ -594,7 +594,7 @@ export function GetShippingBillTemplateSelectList(parameter) {
//获取国家信息下拉列表-客户端 (Auth)
export function GetClientCountrySelectList(parameter) {
return request({
url: '/mainApi/Common/GetCountrySelectList',
url: '/mainApi/Common/GetClientCountrySelectList',
method: 'get',
params: parameter,
})
@ -1913,7 +1913,7 @@ export function SeaExportCopy(params) {
return request({
url: '/opApi/SeaExport/SeaExportCopy',
method: 'get',
params
params,
})
}
@ -1922,7 +1922,7 @@ export function EditSeaExportBillManage(data) {
return request({
url: '/opApi/SeaExportBillManage/EditSeaExportBillManage',
method: 'post',
data
data,
})
}
@ -1931,7 +1931,7 @@ export function GetShippingBillPartCtnList(data) {
return request({
url: '/opApi/ShippingBillPartCtn/GetShippingBillPartCtnList',
method: 'post',
data
data,
})
}
@ -1940,7 +1940,7 @@ export function EditShippingBillPartCtn(data) {
return request({
url: '/opApi/ShippingBillPartCtn/EditShippingBillPartCtn',
method: 'post',
data
data,
})
}
@ -1949,7 +1949,7 @@ export function BatchDelBillManageCtn(data) {
return request({
url: '/opApi/SeaExportBillManage/BatchDelBillManageCtn',
method: 'post',
data
data,
})
}
@ -1958,7 +1958,7 @@ export function GetBillManageHistoryList(data) {
return request({
url: '/opApi/SeaExportBillManage/GetBillManageHistoryList',
method: 'post',
data
data,
})
}
@ -1967,7 +1967,7 @@ export function ImportBillManageHistory(data) {
return request({
url: '/opApi/SeaExportBillManage/ImportBillManageHistory',
method: 'post',
data
data,
})
}
@ -1976,7 +1976,7 @@ export function GetSeaExportBillManageInfo(params) {
return request({
url: '/opApi/SeaExportBillManage/GetSeaExportBillManageInfo',
method: 'get',
params
params,
})
}
@ -1985,7 +1985,7 @@ export function GetBusinessOrderContactList(data) {
return request({
url: '/opApi/BusinessOrderContact/GetBusinessOrderContactList',
method: 'post',
data
data,
})
}
@ -1994,7 +1994,7 @@ export function EditBusinessOrderContact(data) {
return request({
url: '/opApi/BusinessOrderContact/EditBusinessOrderContact',
method: 'post',
data
data,
})
}
@ -2003,7 +2003,7 @@ export function GetBusinessOrderContactInfo(params) {
return request({
url: '/opApi/BusinessOrderContact/GetBusinessOrderContactInfo',
method: 'get',
params
params,
})
}
@ -2012,7 +2012,7 @@ export function GetOrderContactListByClientId(params) {
return request({
url: '/opApi/BusinessOrderContact/GetOrderContactListByClientId',
method: 'get',
params
params,
})
}
@ -2021,6 +2021,6 @@ export function GetClientParamListById(params) {
return request({
url: '/mainApi/ClientCommon/GetClientParamListById',
method: 'get',
params
params,
})
}

Loading…
Cancel
Save