From 0f47264ce0eb36be45590ceb603bf5aa80b9b366 Mon Sep 17 00:00:00 2001 From: xiangxy Date: Thu, 8 Dec 2022 16:47:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=BA=BA=E5=B7=A5=E7=83=98?= =?UTF-8?q?=E7=83=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 6 ++ pages/ProductManage/ManmadeBake.vue | 132 ++++++++++++++++++++++++++++ utils/getData1.js | 24 +++++ 3 files changed, 162 insertions(+) create mode 100644 pages/ProductManage/ManmadeBake.vue 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({