...
|
...
|
@@ -2,12 +2,13 @@ import axios from 'axios' |
|
|
import http from "../http";
|
|
|
|
|
|
let baseServiceURL = 'cross-border-service'
|
|
|
let baseServiceURL2 = 'wlpt-cbed-system'
|
|
|
|
|
|
//新增客户配置
|
|
|
export const insertCustomer = params => { return http.post(`${baseServiceURL}/customer/insertCustomer`, params); };
|
|
|
export const insertCustomer = params => { return http.post(`${baseServiceURL2}/customer/insertCustomer`, params); };
|
|
|
//删除客户配置
|
|
|
export const delCustomer = params => { return axios.get(`${baseServiceURL}/customer/delCustomer`, { params: params }); };
|
|
|
export const delCustomer = params => { return axios.get(`${baseServiceURL2}/customer/delCustomer`, { params: params }); };
|
|
|
//更新客户配置
|
|
|
export const ediCustomer = params => { return http.post(`${baseServiceURL}/customer/ediCustomer`, params); };
|
|
|
export const ediCustomer = params => { return http.post(`${baseServiceURL2}/customer/ediCustomer`, params); };
|
|
|
//客户配置列表
|
|
|
export const selectCustomers = params => { return axios.get(`${baseServiceURL}/customer/selectCustomers`, { params: params }); }; |
|
|
export const selectCustomers = params => { return axios.get(`${baseServiceURL2}/customer/selectCustomers`, { params: params }); }; |
...
|
...
|
|