rev:修改了点位仓位启用禁用同步、新增手持查询立库RGV状态接口

This commit is contained in:
2023-06-27 14:23:38 +08:00
parent 160e3989c0
commit 9a8652f3ca
10 changed files with 57 additions and 13 deletions

View File

@@ -503,10 +503,9 @@ export default {
})
},
changeUsed(data, flag) { // 更改启用状态
const param = {}
param.data = data
param.used = flag
crudPoint.changeUsed(param).then(res => {
const param = data[0]
param.lock_type = flag
crudPoint.changeActive(param).then(res => {
this.crud.notify('操作成功', CRUD.NOTIFICATION_TYPE.SUCCESS)
this.crud.toQuery()
})