| | |
| | | export function closeFacilityApi(data){ |
| | | return request('/api/facility/close',data,'POST') |
| | | } |
| | | //获取设备参数 |
| | | //获取售水机设备参数 |
| | | export function getParameterApi(sn){ |
| | | return request(`/waterFacility/getParameter?sn=${sn}`,{},'GET') |
| | | } |
| | | //修改设备参数 |
| | | //获取水控机设备参数 |
| | | export function getParameter1Api(sn){ |
| | | return request(`/waterFacility/getWaterControlParameter?sn=${sn}`,{},'GET') |
| | | } |
| | | //修改售水机设备参数 |
| | | export function editParameterApi(data){ |
| | | return request('/waterFacility/editParameter',data,'POST') |
| | | } |
| | | //修改水控机设备参数 |
| | | export function editParameter1Api(data){ |
| | | return request('/waterFacility/editWaterControlParameter',data,'POST') |
| | | } |
| | | |
| | | //查询设备故障上报 |
| | |
| | | export function editExamineApi(data){ |
| | | return request('/waterFacilityMalfunction/modify',data,'POST') |
| | | } |
| | | //修改密码 |
| | | export function changePasswordApi(data){ |
| | | return request('/admin/user/changePassword',data,'POST') |
| | | } |
| | | |
| | | |
| | | |
| | | |