diff --git a/common/http.api.js b/common/http.api.js index 97bbfc6..29d75ac 100644 --- a/common/http.api.js +++ b/common/http.api.js @@ -23,32 +23,30 @@ const install = (Vue, vm) => { //货位调整确认 pdaAdjustConfirm: (params = {}) => vm.$u.post('/wms/stock/adjust/pdaAdjustConfirm', params), + + //容器查询 + getContainerList: (params = {}) =>vm.$u.get('/wms/container/queryBaseContainerList', params), //收货管理 recevie: { //分页查询带订单明细汇总 pageOrder: (params = {}) => vm.$u.get('/wms/receiving/pda/pageOrder', params), - //获取汇总以及详情信息 getOrder: (params = {}) => vm.$u.get('/wms/receiving/pda/getOrder', params), - //查询商品对应的包装信息 queryBasPackageByGoodId: (params = {}) => vm.$u.get('/wms/receiving/pda/queryBasPackageByGoodId', params), - //确认收货22 confirmReceiving: (params = {}) => vm.$u.post('/wms/receiving/pda/confirmReceiving', params), //确认收货(多选) multipleConfirmReceiving: (params = {}) => vm.$u.post('/wms/receiving/pda/multipleConfirmReceiving', params), //确认收货(多选)改 multipleConfirmReceivingList: (params = {}) => vm.$u.post('/wms/receiving/pda/multipleConfirmReceivingList', params), - }, //出库拣货 pickBy:{ //根据托盘编号获取需要拣货的明细 pickByContainerCode: (params = {}) => vm.$u.post('/wms/pick/pda/pickByContainerCode', params), - // 出库拣货拣货页面 -- 完成出库 pickAGV: (params = {}) => vm.$u.post('/wms/pick/pda/v2/pickAGV', params), diff --git a/pages.json b/pages.json index 771a3a0..ff11594 100644 --- a/pages.json +++ b/pages.json @@ -340,6 +340,13 @@ "navigationBarTitleText": "点位释放", "navigationBarBackgroundColor": "rgb(18, 150, 219,0.8)" } + }, + { + "path": "pages/queryContainer/index", + "style": { + "navigationBarTitleText": "容器查询", + "navigationBarBackgroundColor": "rgb(18, 150, 219,0.8)" + } } ], diff --git a/pages/index/index.vue b/pages/index/index.vue index aa2d770..955efc8 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -38,6 +38,10 @@ 点位释放 + + + + 查询容器 @@ -247,7 +243,6 @@ methods: { //下拉框 queryList(index, item) { - // console.log(item.ptPart); this.dataForm.ptPart = item.ptPart this.dataForm.ptName = item.ptName this.dataForm.ptDesc = item.ptDesc @@ -365,20 +360,17 @@ }, 500) }, 400) - // console.log(this.$refs); - // this.$refs.input='' + }, //延时关闭 confirm() { - // this.pickUpObj.containerCode=this.containerCode console.log(JSON.stringify(this.dataList)); setTimeout(() => { this.$u.api.saveInPlanAndItemIn(this.dataList).then(res => { if (res.code == '200') { - // this.$u.toast("入库完成"); this.$u.toast("入库已完成,请重新扫描"); this.dataForm = {}, this.dataList = [], @@ -388,10 +380,6 @@ }, 500) } }) - // setTimeout(()=>{ - // this.$router.go(0) - // },800) - // 3秒后自动关闭 this.show = false; diff --git a/pages/user/user.vue b/pages/user/user.vue index 02261c9..e4f8019 100644 --- a/pages/user/user.vue +++ b/pages/user/user.vue @@ -14,10 +14,10 @@ - + 版本信息 {{vuex_code}}