From ec334251eccb70bf0cfec76fd369a514af435b7b Mon Sep 17 00:00:00 2001 From: HeYQ Date: Thu, 6 Nov 2025 10:12:46 +0800 Subject: [PATCH] =?UTF-8?q?add:=E9=87=8D=E5=BA=86=E7=94=B5=E7=83=AD?= =?UTF-8?q?=EF=BC=8C=E9=A1=B9=E7=9B=AE=E7=BA=A7=E4=BB=A3=E7=A0=81=E6=8F=90?= =?UTF-8?q?=E4=BA=A4=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/project/ctuOperateApi.js | 43 ++ api/project/smtOperateApi.js | 42 ++ pages.json | 12 + pages/work/project/smt/bunchPoleCall.vue | 423 ++++++++++++ pages/work/project/smt/bunchPolePutaway.vue | 686 ++++++++++++++++++++ 5 files changed, 1206 insertions(+) create mode 100644 api/project/ctuOperateApi.js create mode 100644 api/project/smtOperateApi.js create mode 100644 pages/work/project/smt/bunchPoleCall.vue create mode 100644 pages/work/project/smt/bunchPolePutaway.vue diff --git a/api/project/ctuOperateApi.js b/api/project/ctuOperateApi.js new file mode 100644 index 0000000..38ab480 --- /dev/null +++ b/api/project/ctuOperateApi.js @@ -0,0 +1,43 @@ +import request from '@/utils/request' + +/** 接口 */ +const Api = { + qurey: '/api/wms/pda/queryInBillSkuInfo', + save: '/api/wms/pda/createPalletByBill', + queryEmptyLoc:'/api/wms/pda/queryEmptyLoc', + clearEmptyLoc:'/api/wms/pda/clearEmptyLoc', +} + +/** 入库单明细查询 */ +export const qurey = data => { + return request({ + url: Api.qurey + this.invoiceCode, + data: data, + method: 'GET' + }) +} + +/** 单据组盘表单提交 */ +export const save = data => { + return request({ + url: Api.save, + data: data, + method: 'POST' + }) +} +/** 查询空托盘巷道信息 */ +export const queryEmptyLoc = data => { + return request({ + url: Api.queryEmptyLoc, + data: data, + method: 'POST' + }) +} +/** 查询空托盘巷道信息 */ +export const clearEmptyLoc = data => { + return request({ + url: Api.clearEmptyLoc, + data: data, + method: 'POST' + }) +} \ No newline at end of file diff --git a/api/project/smtOperateApi.js b/api/project/smtOperateApi.js new file mode 100644 index 0000000..3707f45 --- /dev/null +++ b/api/project/smtOperateApi.js @@ -0,0 +1,42 @@ +import request from '@/utils/request' +/**重庆电热SMT操作相关接口定义**/ +const Api = { + emptyPoleCall: '/api/restful/SMTPda/emptyPoleCall', + save: '/api/wms/pda/createPalletByBill', + queryEmptyLoc: '/api/wms/pda/queryEmptyLoc', + clearEmptyLoc: '/api/wms/pda/clearEmptyLoc', +} + +/** 容器呼叫 */ +export const emptyPoleCall = data => { + return request({ + url: Api.emptyPoleCall, + data: data, + method: 'POST' + }) +} + +/** 单据组盘表单提交 */ +export const save = data => { + return request({ + url: Api.save, + data: data, + method: 'POST' + }) +} +/** 查询空托盘巷道信息 */ +export const queryEmptyLoc = data => { + return request({ + url: Api.queryEmptyLoc, + data: data, + method: 'POST' + }) +} +/** 查询空托盘巷道信息 */ +export const clearEmptyLoc = data => { + return request({ + url: Api.clearEmptyLoc, + data: data, + method: 'POST' + }) +} \ No newline at end of file diff --git a/pages.json b/pages.json index 88dcb25..498a086 100644 --- a/pages.json +++ b/pages.json @@ -215,6 +215,18 @@ "style": { "navigationBarTitleText": "空容器入库" } + }, + //project + { + "path": "pages/work/project/smt/bunchPoleCall", + "style": { + "navigationBarTitleText": "串杆呼叫" + } + },{ + "path": "pages/work/project/smt/bunchPolePutaway", + "style": { + "navigationBarTitleText": "空容器入库" + } } ], "tabBar": { diff --git a/pages/work/project/smt/bunchPoleCall.vue b/pages/work/project/smt/bunchPoleCall.vue new file mode 100644 index 0000000..ee57b79 --- /dev/null +++ b/pages/work/project/smt/bunchPoleCall.vue @@ -0,0 +1,423 @@ + + + + + + \ No newline at end of file diff --git a/pages/work/project/smt/bunchPolePutaway.vue b/pages/work/project/smt/bunchPolePutaway.vue new file mode 100644 index 0000000..44a378d --- /dev/null +++ b/pages/work/project/smt/bunchPolePutaway.vue @@ -0,0 +1,686 @@ + + + + + + \ No newline at end of file