正在显示
1 个修改的文件
包含
5 行增加
和
4 行删除
@@ -2,12 +2,13 @@ import axios from 'axios' | @@ -2,12 +2,13 @@ import axios from 'axios' | ||
2 | import http from "../http"; | 2 | import http from "../http"; |
3 | 3 | ||
4 | let baseServiceURL = 'cross-border-service' | 4 | let baseServiceURL = 'cross-border-service' |
5 | +let baseServiceURL2 = 'wlpt-cbed-system' | ||
5 | 6 | ||
6 | //新增客户配置 | 7 | //新增客户配置 |
7 | -export const insertCustomer = params => { return http.post(`${baseServiceURL}/customer/insertCustomer`, params); }; | 8 | +export const insertCustomer = params => { return http.post(`${baseServiceURL2}/customer/insertCustomer`, params); }; |
8 | //删除客户配置 | 9 | //删除客户配置 |
9 | -export const delCustomer = params => { return axios.get(`${baseServiceURL}/customer/delCustomer`, { params: params }); }; | 10 | +export const delCustomer = params => { return axios.get(`${baseServiceURL2}/customer/delCustomer`, { params: params }); }; |
10 | //更新客户配置 | 11 | //更新客户配置 |
11 | -export const ediCustomer = params => { return http.post(`${baseServiceURL}/customer/ediCustomer`, params); }; | 12 | +export const ediCustomer = params => { return http.post(`${baseServiceURL2}/customer/ediCustomer`, params); }; |
12 | //客户配置列表 | 13 | //客户配置列表 |
13 | -export const selectCustomers = params => { return axios.get(`${baseServiceURL}/customer/selectCustomers`, { params: params }); }; | 14 | +export const selectCustomers = params => { return axios.get(`${baseServiceURL2}/customer/selectCustomers`, { params: params }); }; |
-
请 注册 或 登录 后发表评论