This commit is contained in:
2025-11-14 15:15:03 +08:00
parent eba34e24ef
commit 982f94068d
2 changed files with 7 additions and 49 deletions

View File

@@ -192,15 +192,12 @@ export const getHotTempPointInfo = (code, order) => request({
url:'api/pda/baking/getHotTempPointInfo',
data: {point_code: code, order_code: order}
})
export const doModifyRawInfos = (code, order, type, is, temperature, time, roll) => request({
export const doModifyRawInfos = (code, order, is, roll) => request({
url:'api/pda/baking/doModifyRawInfos',
data: {
point_code: code,
order_code: order,
roll_type: type,
is_baking: is,
temperature: temperature,
time: time,
roll_code: roll
}
})