Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
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
罗超
confucius
Commits
3d8281a7
Commit
3d8281a7
authored
Oct 09, 2023
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
cd91553e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
15 deletions
+3
-15
RecPayDetail.vue
src/pages/financial/financalDocument/RecPayDetail.vue
+3
-15
No files found.
src/pages/financial/financalDocument/RecPayDetail.vue
View file @
3d8281a7
...
...
@@ -813,22 +813,10 @@ import treeItemVue from 'src/components/common/tree-table/tree-item.vue';
this
.
userId
=
userInfo
.
EmployeeId
;
this
.
msg
.
EmployeeId
=
userInfo
.
EmployeeId
;
let
nowDay
=
new
Date
();
var
year
=
nowDay
.
getFullYear
();
//年
var
month
=
nowDay
.
getMonth
()
;
//月
var
day
=
nowDay
.
getDate
();
//日
var
firstDay
=
year
+
'-'
+
month
+
'-01'
;
this
.
msg
.
sTradeDate
=
firstDay
let
lastDayOfMonth
=
new
Date
(
nowDay
.
getFullYear
(),
nowDay
.
getMonth
()
+
1
,
0
);
var
year
=
lastDayOfMonth
.
getFullYear
();
//年
var
month
=
lastDayOfMonth
.
getMonth
()
;
//月
var
day
=
lastDayOfMonth
.
getDate
()
-
1
;
//日
var
lastDay
=
year
+
'-'
+
month
+
'-'
+
day
;
this
.
transactionDate
=
[]
this
.
transactionDate
.
push
(
firstDay
)
this
.
transactionDate
.
push
(
lastDay
)
this
.
transactionDate
.
push
(
new
Date
()
)
this
.
transactionDate
.
push
(
new
Date
()
)
//this.transactionDate.push('2021-02-01')
//this.transactionDate.push('2021-02-28')
this
.
msg
.
sTradeDate
=
this
.
transactionDate
[
0
];
...
...
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