diff --git a/pages.json b/pages.json index 7884be1..35fafb5 100644 --- a/pages.json +++ b/pages.json @@ -44,6 +44,12 @@ "navigationStyle": "custom" } } + ,{ + "path" : "pages/ProductManage/ManmadeBake", + "style": { + "navigationStyle": "custom" + } + } ,{ "path" : "pages/ProductManage/PointManage", "style": { diff --git a/pages/ProductManage/ManmadeBake.vue b/pages/ProductManage/ManmadeBake.vue new file mode 100644 index 0000000..370d1cf --- /dev/null +++ b/pages/ProductManage/ManmadeBake.vue @@ -0,0 +1,132 @@ + + + + + diff --git a/utils/getData1.js b/utils/getData1.js index 621957c..801f1e2 100644 --- a/utils/getData1.js +++ b/utils/getData1.js @@ -84,6 +84,30 @@ export const inCoolIvt = (pcode, cname) => request({ } }) +/** + * 人工烘烤 + */ +// 1.1出入烘箱 +export const handleBakingovenInAndOut = (pcode, cname, temp, hours, nextpcode, option) => request({ + url: 'api/pda/handleBaking/ovenInAndOut', + data: { + point_code: pcode, + container_name: cname, + temperature: temp, + hours: hours, + next_point_code: nextpcode, + option: option, + } +}) +// 1.2入冷却 +export const handleBakingcheckConfirm = (pcode, cname) => request({ + url: 'api/pda/handleBaking/checkConfirm', + data: { + point_code: pcode, + container_name: cname + } +}) + // 点位管理 // 1.1点位解绑绑定 export const pointOperate = (pcode, cname, option) => request({