Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Litemall
Commits
3fe6f406
Commit
3fe6f406
authored
Mar 08, 2020
by
Junling Bu
Browse files
fix[litemall-admin]: 订单管理时间过滤查询bug
parent
4ba784b1
Changes
2
Hide whitespace changes
Inline
Side-by-side
litemall-admin/src/router/index.js
View file @
3fe6f406
...
...
@@ -410,7 +410,7 @@ export const asyncRouterMap = [
{
path
:
'
notice
'
,
component
:
()
=>
import
(
'
@/views/sys/notice
'
),
name
:
'
n
otice
'
,
name
:
'
sysN
otice
'
,
meta
:
{
perms
:
[
'
GET /admin/notice/list
'
,
'
POST /admin/notice/create
'
,
'
POST /admin/notice/update
'
,
'
POST /admin/notice/delete
'
],
title
:
'
通知管理
'
,
...
...
litemall-admin/src/views/mall/order.vue
View file @
3fe6f406
...
...
@@ -248,10 +248,14 @@ export default {
checkPermission
,
getList
()
{
this
.
listLoading
=
true
if
(
this
.
listQuery
.
timeArray
.
length
===
2
)
{
if
(
this
.
listQuery
.
timeArray
&&
this
.
listQuery
.
timeArray
.
length
===
2
)
{
this
.
listQuery
.
start
=
this
.
listQuery
.
timeArray
[
0
]
this
.
listQuery
.
end
=
this
.
listQuery
.
timeArray
[
1
]
}
else
{
this
.
listQuery
.
start
=
null
this
.
listQuery
.
end
=
null
}
listOrder
(
this
.
listQuery
).
then
(
response
=>
{
this
.
list
=
response
.
data
.
data
.
list
this
.
total
=
response
.
data
.
data
.
total
...
...
Write
Preview
Supports
Markdown
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