From 23b28f832177f052f31b870335ab38dcd8983e98 Mon Sep 17 00:00:00 2001
From: "Mr.sun" <2290907227@qq.com>
Date: Mon, 22 Apr 2024 08:59:25 +0800
Subject: [PATCH] =?UTF-8?q?=E5=AE=B9=E5=99=A8=E6=9F=A5=E8=AF=A2=E6=9C=AA?=
=?UTF-8?q?=E6=94=B9=E5=AE=8C?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
common/http.api.js | 8 +++---
pages.json | 7 ++++++
pages/index/index.vue | 9 +++++++
pages/inventory/index.vue | 53 +++++++++++++++++++++------------------
pages/payInto/index.vue | 14 +----------
pages/user/user.vue | 4 +--
6 files changed, 51 insertions(+), 44 deletions(-)
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}}