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
9bbdfc40
Commit
9bbdfc40
authored
Oct 25, 2022
by
huaying
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 导出订单
parent
d0765b2c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
couponExchange.vue
src/views/order/couponExchange.vue
+5
-3
No files found.
src/views/order/couponExchange.vue
View file @
9bbdfc40
...
...
@@ -522,8 +522,8 @@ export default {
}
this
.
params
=
{
orderStatus
:
this
.
orderStatus
,
//
changeType: this.changeType,
changeType
:
-
1
,
changeType
:
this
.
changeType
,
//
changeType: -1,
searchParams
:
this
.
searchValue
,
searchType
:
this
.
searchType
,
beginTime
:
this
.
beginTime
,
...
...
@@ -539,7 +539,9 @@ export default {
// 计算自然月
natureMonth
(
curDate
,
step
)
{
if
(
!
curDate
||
!
step
)
return
curDate
;
if
(
typeof
curDate
===
'string'
)
{
curDate
=
new
Date
(
curDate
.
replace
(
/
[\/
|
\.]
/g
,
'-'
));
}
// new Date(str) 对str格式的,ios只支持yyyy-MM-dd
if
(
typeof
curDate
===
'string'
)
{
curDate
=
new
Date
(
curDate
.
replace
(
/
[\/
|
\.]
/g
,
'-'
));
}
// new Date(str) 对str格式的,ios只支持yyyy-MM-dd
const
targetDateLastDay
=
new
Date
(
curDate
.
getFullYear
(),
...
...
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