Commit 50a5154e by LJM

移动端--到货登记、已登记、理货、已理货配合供应链箱标签调整功能

parent 33b226f9
...@@ -332,12 +332,13 @@ ...@@ -332,12 +332,13 @@
} }
.uni-textarea { .uni-textarea {
width: 100%; width: 100%;
height: 150rpx; height: 110rpx;
overflow-y: auto;
background: #ffffff; background: #ffffff;
border-radius: 5rpx; border-radius: 5rpx;
border: 1px solid #1969f9; border: 1px solid #1969f9;
font-size: 17rpx; font-size: 17rpx;
padding: 18rpx; padding: 18rpx 18rpx 0 18rpx;
} }
} }
.select-box { .select-box {
...@@ -483,7 +484,7 @@ ...@@ -483,7 +484,7 @@
.print-content { .print-content {
flex-wrap: wrap; flex-wrap: wrap;
.box { .box {
width: 33.3%; width: 50%;
height: 50rpx; height: 50rpx;
font-size: 20rpx; font-size: 20rpx;
color: #292b33; color: #292b33;
......
...@@ -812,14 +812,7 @@ ...@@ -812,14 +812,7 @@
this.searchParams.mobile_register_all_search = val; this.searchParams.mobile_register_all_search = val;
} else if (type == 2) { } else if (type == 2) {
// 入仓号处理逻辑 // 入仓号处理逻辑
var str = val; this.searchParams.stock_in_with_stock_in_items_inhouse = val;
if (str.startsWith('F')) {
// 如果以 'F' 开头,直接赋值给搜索参数
this.searchParams.stock_in_with_stock_in_items_inhouse = val;
} else {
// 否则去掉最后一个字符后赋值给搜索参数
this.searchParams.stock_in_with_stock_in_items_inhouse = str.slice(0, -1);
}
} else if (type == 3) { } else if (type == 3) {
//FedEx //FedEx
if (val.length > 22) { if (val.length > 22) {
......
...@@ -193,7 +193,7 @@ ...@@ -193,7 +193,7 @@
filter_id_warehouse_id: [], //过滤处理的仓库id filter_id_warehouse_id: [], //过滤处理的仓库id
detail: {}, //详情的数据 detail: {}, //详情的数据
hasMoreData: true, //是否分页加载 hasMoreData: true, //是否分页加载
maxInputLength: 7, maxInputLength: 8,
searchParams: { searchParams: {
mobile_register_all_search: '', //全量搜索 mobile_register_all_search: '', //全量搜索
stock_in_with_stock_in_items_inhouse: '', //入仓单号 stock_in_with_stock_in_items_inhouse: '', //入仓单号
...@@ -297,12 +297,6 @@ ...@@ -297,12 +297,6 @@
this.searchParams.mobile_register_all_search = val; this.searchParams.mobile_register_all_search = val;
} else if (type == 2) { } else if (type == 2) {
//入仓号 //入仓号
var str = val;
if (str.startsWith('F')) {
this.maxInputLength = 8;
} else {
this.maxInputLength = 7;
}
this.searchParams.stock_in_with_stock_in_items_inhouse = val; this.searchParams.stock_in_with_stock_in_items_inhouse = val;
} else if (type == 3) { } else if (type == 3) {
//箱号 //箱号
......
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