还原托盘登录普通接口请求方式
Some checks failed
Release pipeline / publish (push) Has been cancelled
Release pipeline / Always run job (push) Has been cancelled

This commit is contained in:
sheng
2026-06-25 11:58:17 +08:00
parent 4232d718c5
commit 5001bf81b1

View File

@@ -13,39 +13,39 @@ function apiParams (method, data = {}) {
export function getBatchAll (data) {
return request({
url: BASE + 'all',
method: 'post',
data: apiParams('planning_production_produce_traylogin_all', data)
method: 'get',
params: apiParams('planning_production_produce_traylogin_all', data)
})
}
export function getBatchTrayFormatAll (data) {
return request({
url: BASE + 'trayformat_all',
method: 'post',
data: apiParams('planning_production_produce_trayformat_all', data)
method: 'get',
params: apiParams('planning_production_produce_trayformat_all', data)
})
}
export function createBatchTrayFormat (data) {
return request({
url: BASE + 'create',
method: 'post',
data: apiParams('planning_production_produce_trayformat_create', data)
method: 'get',
params: apiParams('planning_production_produce_trayformat_create', data)
})
}
export function deleteBatchTrayFormat (data) {
return request({
url: BASE + 'delete',
method: 'post',
data: apiParams('planning_production_produce_trayformat_delete', data)
method: 'get',
params: apiParams('planning_production_produce_trayformat_delete', data)
})
}
export function checkBatteryid (data) {
return request({
url: BASE + 'check_batteryid',
method: 'post',
data: apiParams('planning_production_produce_trayformat_check_batteryid', data)
method: 'get',
params: apiParams('planning_production_produce_trayformat_check_batteryid', data)
})
}