Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
integral-mall
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
integralMall
integral-mall
Commits
422b2673
Commit
422b2673
authored
Jan 18, 2022
by
caoyanzhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 礼品兑换、优惠券兑换列表导出添加3个月时长限制
parent
05928635
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
couponExchange.vue
src/views/order/couponExchange.vue
+4
-0
giftExchange.vue
src/views/order/giftExchange.vue
+4
-0
No files found.
src/views/order/couponExchange.vue
View file @
422b2673
...
...
@@ -474,6 +474,10 @@ export default {
this
.
$message
.
error
(
'时间不能为空'
);
return
;
}
if
(
new
Date
(
this
.
endTime
).
getTime
()
-
new
Date
(
this
.
beginTime
).
getTime
()
>
90
*
24
*
3600
*
1000
)
{
this
.
$message
.
error
(
'导出订单不支持导出超过3个月时长的数据,请重新选择时间'
);
return
;
}
this
.
paramsAll
=
{
orderStatus
:
this
.
orderStatus
,
changeType
:
-
1
,
...
...
src/views/order/giftExchange.vue
View file @
422b2673
...
...
@@ -847,6 +847,10 @@ export default {
this
.
$message
.
error
(
'时间不能为空'
);
return
;
}
if
(
new
Date
(
this
.
endTime
).
getTime
()
-
new
Date
(
this
.
beginTime
).
getTime
()
>
90
*
24
*
3600
*
1000
)
{
this
.
$message
.
error
(
'导出订单不支持导出超过3个月时长的数据,请重新选择时间'
);
return
;
}
this
.
params
=
{
orderStatus
:
this
.
orderStatus
,
changeType
:
this
.
changeType
?
this
.
changeType
:
-
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