代码更新

This commit is contained in:
2023-04-14 17:50:11 +08:00
parent 88cc6a56e7
commit e379a9a86d
18 changed files with 1501 additions and 17 deletions

View File

@@ -154,7 +154,7 @@ export function html2Text(val) {
}
/**
* Merges two objects, giving the last one precedence
* Merges two objects, giving the last rikuone precedence
* @param {Object} target
* @param {(Object|Array)} source
* @returns {Object}

View File

@@ -7,3 +7,26 @@ export function getStructByCodes(data) { // 获取仓位信息
data: data
})
}
export function getStructByCodesFs(data) { // 获取点位信息
return request({
url: 'api/structattr/getStructByCodesFs',
method: 'post',
data: data
})
}
export function unLockPoint(data) { // 解锁点位
return request({
url: 'api/structattr/unLockPoint',
method: 'post',
data: data
})
}
export function autoWeb() { // 查询立库监控数据
return request({
url: 'api/autoWeb/query',
method: 'post'
})
}