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