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
fd9da570
authored
Dec 03, 2024
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
bug
parent
7ecb7ee1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
pages/arrivalRegister/splitGoodsRecord.vue
pages/putaway/record.vue
pages/arrivalRegister/splitGoodsRecord.vue
View file @
fd9da570
...
...
@@ -161,9 +161,14 @@
},
methods
:
{
changeDate
(
e
)
{
if
(
e
[
0
])
{
if
(
!
e
||
!
e
.
length
)
{
// 处理清除的情况
this
.
searchParams
.
register_time
=
''
;
}
else
{
// 处理正常选择日期的情况
this
.
searchParams
.
register_time
=
e
[
0
]
+
' ~ '
+
e
[
1
];
}
this
.
resetChange
();
this
.
getData
();
},
...
...
pages/putaway/record.vue
View file @
fd9da570
...
...
@@ -308,7 +308,11 @@
},
methods
:
{
changeDate
(
e
)
{
if
(
e
[
0
])
{
if
(
!
e
||
!
e
.
length
)
{
// 处理清除的情况
this
.
searchParams
.
stock_shelf_time
=
''
;
}
else
{
// 处理正常选择日期的情况
this
.
searchParams
.
stock_shelf_time
=
e
[
0
]
+
' ~ '
+
e
[
1
];
}
this
.
resetChange
();
...
...
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