1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| // 统一请求路径前缀在libs/axios.js中修改
| import {
| getRequest,
| postRequest,
| putRequest,
| deleteRequest,
| } from "@/libs/axios";
|
|
|
| // 分页获取物流公司
| export const getLogisticsPage = params => {
| return getRequest(`/other/logistics/getByPage`, params);
| };
| // 删除
| export const delLogistics = id => {
| return deleteRequest(`/other/logistics/delete/${id}`);
| };
| // 添加
| export const addLogistics = params => {
| return postRequest(`/other/logistics/save`,params);
| };
| // 通过id查询详情
| export const getLogisticsDetail = id => {
| return getRequest(`/other/logistics/get/${id}`);
| };
| // 编辑
| export const updateLogistics = (id,params) => {
| return putRequest(`/other/logistics/${id}`,params);
| };
|
|