Commit 8a43791e by LJM

bug

parent 837882a9
Showing with 11 additions and 8 deletions
...@@ -667,6 +667,7 @@ export default { ...@@ -667,6 +667,7 @@ export default {
showDrawer(type, data) { showDrawer(type, data) {
if (type == 1) { if (type == 1) {
//按货品拣货 //按货品拣货
this.formParams.pick_remark = '';
this.$refs.showRight.open(); this.$refs.showRight.open();
this.detail = data; this.detail = data;
this.picked_num = Number(data.lock_qty) - Number(data.pick_qty); this.picked_num = Number(data.lock_qty) - Number(data.pick_qty);
...@@ -674,6 +675,7 @@ export default { ...@@ -674,6 +675,7 @@ export default {
this.image_list = []; //清空图片列表 this.image_list = []; //清空图片列表
} else if (type == 2) { } else if (type == 2) {
//按容器拣货 //按容器拣货
this.formParams.pick_remark = '';
this.$refs.showRightPack.open(); this.$refs.showRightPack.open();
this.detailContainer = data; this.detailContainer = data;
this.image_list = []; //清空图片列表 this.image_list = []; //清空图片列表
...@@ -689,6 +691,7 @@ export default { ...@@ -689,6 +691,7 @@ export default {
}); });
return false; return false;
} }
this.formParams.pick_remark = '';
this.$refs.showRightPackMultiPick.open(); this.$refs.showRightPackMultiPick.open();
this.image_list = []; //清空图片列表 this.image_list = []; //清空图片列表
} }
......
const API_BASE_USER = 'http://user.liexindev.net'; //用户系统 // const API_BASE_USER = 'http://user.liexindev.net'; //用户系统
const API_BASE_PUR = 'http://pur.liexindev.net'; //采购系统 // const API_BASE_PUR = 'http://pur.liexindev.net'; //采购系统
const API_BASE = 'http://wms.liexindev.net'; //WMS系统 // const API_BASE = 'http://wms.liexindev.net'; //WMS系统
const API_BASE_OSS = 'http://image.liexindev.net'; //oss系统 // const API_BASE_OSS = 'http://image.liexindev.net'; //oss系统
// const API_BASE_USER = 'https://user.ichunt.net'; //用户系统 const API_BASE_USER = 'https://user.ichunt.net'; //用户系统
// const API_BASE_PUR = 'https://purchase.ichunt.net'; //采购系统 const API_BASE_PUR = 'https://purchase.ichunt.net'; //采购系统
// const API_BASE = 'https://wms.ichunt.net'; //WMS系统 const API_BASE = 'https://wms.ichunt.net'; //WMS系统
// const API_BASE_OSS = 'https://image.ichunt.net'; //oss系统 const API_BASE_OSS = 'https://image.ichunt.net'; //oss系统
const API = { const API = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment