Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-gjjs
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
fukai
vue-gjjs
Commits
828fb1c9
Commit
828fb1c9
authored
Nov 16, 2023
by
yangxiaolei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug
parent
0e199d99
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
index.js
src/business/infbrd/event/index.js
+2
-2
index.js
src/business/inflid/event/index.js
+2
-3
No files found.
src/business/infbrd/event/index.js
View file @
828fb1c9
...
...
@@ -22,8 +22,8 @@ export default {
inr
:
this
.
model
.
brdgrp
.
rec
.
inr
,
pageIndex
:
this
.
pagination
.
pageIndex
,
pageSize
:
this
.
pagination
.
pageSize
,
opndatfrom
:
this
.
$route
.
query
.
trn
?
null
:
moment
(
opndatfrom
).
format
(
'YYYY-MM-DD'
),
opndatto
:
this
.
$route
.
query
.
trn
?
null
:
moment
(
opndatto
).
format
(
'YYYY-MM-DD'
),
opndatfrom
:
!
opndatfrom
?
null
:
moment
(
opndatfrom
).
format
(
'YYYY-MM-DD'
),
opndatto
:
!
opndatto
?
null
:
moment
(
opndatto
).
format
(
'YYYY-MM-DD'
),
};
let
rtnmsg
=
await
Api
.
post
(
'/service/infbrd/getList'
,
params
);
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
...
...
src/business/inflid/event/index.js
View file @
828fb1c9
...
...
@@ -6,7 +6,6 @@ export default {
methods
:
{
async
handleSearch
()
{
let
opndatfrom
=
this
.
model
.
infcon
.
opndatfrom
;
console
.
log
(
"this.$route.query.trn=>"
,
this
.
$route
.
query
.
trn
)
if
((
!
opndatfrom
||
opndatfrom
==
''
)
&&
!
this
.
$route
.
query
.
trn
)
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'查询开始日期必输!'
});
...
...
@@ -28,8 +27,8 @@ export default {
fingua
:
this
.
model
.
fingua
,
pageIndex
:
this
.
pagination
.
pageIndex
,
pageSize
:
this
.
pagination
.
pageSize
,
opndatfrom
:
this
.
$route
.
query
.
trn
?
null
:
moment
(
opndatfrom
).
format
(
'YYYY-MM-DD'
),
opndatto
:
this
.
$route
.
query
.
trn
?
null
:
moment
(
opndatto
).
format
(
'YYYY-MM-DD'
),
opndatfrom
:
!
opndatfrom
?
null
:
moment
(
opndatfrom
).
format
(
'YYYY-MM-DD'
),
opndatto
:
!
opndatto
?
null
:
moment
(
opndatto
).
format
(
'YYYY-MM-DD'
),
};
let
rtnmsg
=
await
Api
.
post
(
'/service/inflid/getList'
,
params
);
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
...
...
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