Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
梁建民
/
wmsApp
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
0953b476
authored
May 30, 2024
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
add
parent
e3a5cd02
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
pages/picking/sort.vue
pages/picking/sort.vue
View file @
0953b476
...
...
@@ -657,7 +657,7 @@
filter_id
:
[],
//过滤处理的id
company_id
:
uni
.
getStorageSync
(
'company_id'
)
||
1
,
//公司组织
page
:
1
,
limit
:
100
0
,
limit
:
100
,
curr
:
0
,
itemArr
:
[
'按货品拣货'
,
'按容器拣货'
],
list
:
[],
...
...
@@ -759,6 +759,14 @@
this
.
old_Label
=
e
.
detail
.
value
;
}
else
{
this
.
is_batch
=
e
.
detail
.
value
;
//批量模式下分页显示为20条
if
(
this
.
is_batch
)
{
this
.
limit
=
20
;
}
else
{
this
.
limit
=
100
;
}
//重置相关数据
this
.
history_id
=
[];
this
.
list
=
[];
...
...
@@ -828,7 +836,7 @@
content
:
msg
,
confirmText
:
'关闭'
,
showCancel
:
false
,
success
:
res
=>
{
success
:
()
=>
{
let
index_history_id
=
this
.
history_id
.
indexOf
(
val
);
this
.
history_id
.
splice
(
index_history_id
,
1
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment