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
| export const jihua = {
| //获取用户信息
| getUserInfo: {
| url: '/admin/user/info',
| method: 'GET'
| },
| // 发运列表
| fyList: {
| url: '/yunxiao/contractorder/fyList',
| method: 'GET'
| },
| xscarshippingdayplan: {
| url: '/yunxiao/xscarshippingdayplan/page',
| method: 'GET'
| },
| // /yunxiao/xscarshippingdayplan
| addObj: {
| url: '/yunxiao/xscarshippingdayplan',
| method: 'POST'
| },
| // /yunxiao/xscarshippingdayplan/setCarNums
| setCarNums: {
| url: '/yunxiao/xscarshippingdayplan/setCarNums',
| method: 'POST'
| },
| }
|
|