query.js
619 Bytes
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
31
32
33
34
35
36
37
38
import request from '@/utils/request'
/**
*/
export function queryBills(data) {
return request({
url: '/bus-employees/rde/op/approve/check',
method: 'post',
data: data
})
}
/**
* 查询菜单
*/
export function getAllMenus() {
return request({
url: '/menu/selectAllMenu',
method: 'get'
})
}
export function getAllExportingBills(data) {
return request({
url: '/bus-customer/exportOrder/search',
method: 'post',
data
})
}
export function getAllTransportBills(data) {
return request({
url: '/bus-customer/exportWaybill/search',
method: 'post',
data
})
}