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
| // 文档管理
| import request from '@/utils/request'
|
|
| // /system/user/listAll
| // 查询所有用户列表
| export function userListAll() {
| return request({
| url: '/system/user/listAll',
| method: 'get'
| })
| }
|
| // /equipmentManagement/equipmentList
| // 查询设备列表
| export function getEquipmentList(query) {
| return request({
| url: '/equipmentManagement/equipmentList',
| method: 'get',
| params: query
| })
| }
|
| // /coalInfo/coalInfoList
| // 查询煤种列表
| export function getCoalInfoList(query) {
| return request({
| url: '/coalInfo/coalInfoList',
| method: 'get',
| params: query
| })
| }
|
|