| ¶Ô±ÈÐÂÎļþ |
| | |
| | | // ææ¡£ç®¡ç |
| | | 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 |
| | | }) |
| | | } |