rev:新增设备状态监控功能;修改点位查询和批量修改;任务下方ACSAGV参数修改;烘箱温度和时间用redis进行存储和查询;

This commit is contained in:
2023-08-14 18:05:12 +08:00
parent d97cb48021
commit e11d91580d
41 changed files with 1157 additions and 198 deletions

View File

@@ -33,6 +33,14 @@ export function editUser(data) {
})
}
export function getUserList(data) {
return request({
url: 'api/users/getUserList',
method: 'post',
data
})
}
export function updatePass(user) {
const data = {
oldPass: encrypt(user.oldPass),
@@ -57,5 +65,5 @@ export function updateEmail(form) {
})
}
export default { add, edit, del, updatePass }
export default { add, edit, del, updatePass, getUserList }