diff --git a/manifest.json b/manifest.json
index fc85078..40a3369 100644
--- a/manifest.json
+++ b/manifest.json
@@ -2,8 +2,8 @@
"name" : "干巷仓库APP",
"appid" : "__UNI__A67E78B",
"description" : "",
- "versionName" : "2.1.6",
- "versionCode" : 216,
+ "versionName" : "2.1.7",
+ "versionCode" : 217,
"transformPx" : false,
"app-plus" : {
"usingComponents" : true,
diff --git a/pages/outWarehouse/outWarehouse.vue b/pages/outWarehouse/outWarehouse.vue
index 7838f28..d1d5416 100644
--- a/pages/outWarehouse/outWarehouse.vue
+++ b/pages/outWarehouse/outWarehouse.vue
@@ -29,20 +29,28 @@
- 选择物料号
+ 选择物料号
-
-
+
+
+
+
+
+
+
+
+
+
+
- 出库计划查看
+ 出库计划查看
-
-
+
@@ -52,7 +60,7 @@
:text="item.outOrder+' 计划批次号:\n'+item.packageCode">
-
+
@@ -90,8 +98,8 @@
-
+
出库清单
@@ -104,7 +112,7 @@
- 多箱出库清单
+ 出库清单
@@ -141,6 +149,7 @@
return {
loading: false,
showPopup: false,
+ showChouseMaterial: false,
// 双击判定
touchNum: 0,
clearData: {},
@@ -176,8 +185,8 @@
// 1-仓库扫码 2-货物扫码 3-出货单扫码
searchType: 3,
subsectionList: ['单箱出库', '多箱出库'],
- subsectionCurrent: 0,
- show: false,
+ subsectionCurrent: 1,
+
columns: [
['无物料号']
],
@@ -414,7 +423,7 @@
} else {
uni.showModal({
title: '提示',
- content: '出库成功!已成功出库' + res.data.item2 + '箱',
+ content: '出库成功!已成功出库' + res.data.item1 + '箱',
showCancel: false,
confirmText: '确认'
});
@@ -423,6 +432,8 @@
}
}
});
+ }else{
+ this.loading = false;
}
}
});
@@ -459,19 +470,31 @@
});
}
});
+ }else{
+ this.loading = false;
}
}
});
},
+ //选择物料
+ // 开启
+ chouseMaterialOpen() {
+
+ },
+ chouseMaterialClose() {
+ this.showChouseMaterial = false;
+ },
+ chouseMaterial(item) {
+ this.material_id = item.name;
+ this.chouseMaterialClose();
+ },
//取消
pick_cancel() {
this.show = false;
},
// 确认
pick_confirm(e) {
- console.log(e.value);
this.material_id = e.value[0];
- console.log(this.material_id);
this.show = false;
},
// 长按弹出删除
@@ -531,7 +554,7 @@
if (res.code === 200) {
this.outOrderPlanList = res.data;
this.loading = false;
- }else{
+ } else {
this.loading = false;
}
})