// 文档管理
|
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
|
})
|
}
|
|
// /coalField/coalFieldList
|
// 查询煤质字段列表
|
export function getCoalFieldList(query) {
|
return request({
|
url: '/coalField/coalFieldList',
|
method: 'get',
|
params: query
|
})
|
}
|