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
0e199d99
Commit
0e199d99
authored
Nov 16, 2023
by
yangxiaolei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
同步修改
parent
fd0c39fa
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
10 deletions
+19
-10
index.js
src/business/infbrd/event/index.js
+4
-4
Infsea.vue
src/business/infbrd/views/Infsea.vue
+2
-0
index.js
src/business/inflid/event/index.js
+7
-4
Infsea.vue
src/business/inflid/views/Infsea.vue
+3
-1
index.vue
src/business/inflid/views/index.vue
+3
-1
No files found.
src/business/infbrd/event/index.js
View file @
0e199d99
...
...
@@ -6,12 +6,12 @@ export default {
methods
:
{
async
handleSearch
()
{
let
opndatfrom
=
this
.
model
.
infcon
.
opndatfrom
;
if
(
!
opndatfrom
||
opndatfrom
==
''
)
{
if
(
(
!
opndatfrom
||
opndatfrom
==
''
)
&&
!
this
.
$route
.
query
.
trn
)
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'查询开始日期必输!'
});
return
;
}
let
opndatto
=
this
.
model
.
infcon
.
opndatto
;
if
(
!
opndatto
||
opndatto
==
''
)
{
if
(
(
!
opndatto
||
opndatto
==
''
)
&&
!
this
.
$route
.
query
.
trn
)
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'查询结束日期必输!'
});
return
;
}
...
...
@@ -22,8 +22,8 @@ export default {
inr
:
this
.
model
.
brdgrp
.
rec
.
inr
,
pageIndex
:
this
.
pagination
.
pageIndex
,
pageSize
:
this
.
pagination
.
pageSize
,
opndatfrom
:
moment
(
opndatfrom
).
format
(
'YYYY-MM-DD'
),
opndatto
:
moment
(
opndatto
).
format
(
'YYYY-MM-DD'
),
opndatfrom
:
this
.
$route
.
query
.
trn
?
null
:
moment
(
opndatfrom
).
format
(
'YYYY-MM-DD'
),
opndatto
:
this
.
$route
.
query
.
trn
?
null
:
moment
(
opndatto
).
format
(
'YYYY-MM-DD'
),
};
let
rtnmsg
=
await
Api
.
post
(
'/service/infbrd/getList'
,
params
);
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
...
...
src/business/infbrd/views/Infsea.vue
View file @
0e199d99
...
...
@@ -570,6 +570,8 @@ export default {
mounted
:
function
()
{
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
trn
){
this
.
model
.
infcon
.
ownref
=
this
.
$route
.
query
.
trn
this
.
model
.
infcon
.
opndatfrom
=
null
this
.
model
.
infcon
.
opndatto
=
null
this
.
handleSearch
()
}
},
...
...
src/business/inflid/event/index.js
View file @
0e199d99
...
...
@@ -6,15 +6,18 @@ export default {
methods
:
{
async
handleSearch
()
{
let
opndatfrom
=
this
.
model
.
infcon
.
opndatfrom
;
if
(
!
opndatfrom
||
opndatfrom
==
''
)
{
console
.
log
(
"this.$route.query.trn=>"
,
this
.
$route
.
query
.
trn
)
if
((
!
opndatfrom
||
opndatfrom
==
''
)
&&
!
this
.
$route
.
query
.
trn
)
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'查询开始日期必输!'
});
return
;
}
let
opndatto
=
this
.
model
.
infcon
.
opndatto
;
if
(
!
opndatto
||
opndatto
==
''
)
{
if
(
(
!
opndatto
||
opndatto
==
''
)
&&
!
this
.
$route
.
query
.
trn
)
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'查询结束日期必输!'
});
return
;
}
let
params
=
{
...
this
.
model
.
infcon
,
fenlishi
:
this
.
model
.
fenlishi
,
...
...
@@ -25,8 +28,8 @@ export default {
fingua
:
this
.
model
.
fingua
,
pageIndex
:
this
.
pagination
.
pageIndex
,
pageSize
:
this
.
pagination
.
pageSize
,
opndatfrom
:
moment
(
opndatfrom
).
format
(
'YYYY-MM-DD'
),
opndatto
:
moment
(
opndatto
).
format
(
'YYYY-MM-DD'
),
opndatfrom
:
this
.
$route
.
query
.
trn
?
null
:
moment
(
opndatfrom
).
format
(
'YYYY-MM-DD'
),
opndatto
:
this
.
$route
.
query
.
trn
?
null
:
moment
(
opndatto
).
format
(
'YYYY-MM-DD'
),
};
let
rtnmsg
=
await
Api
.
post
(
'/service/inflid/getList'
,
params
);
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
...
...
src/business/inflid/views/Infsea.vue
View file @
0e199d99
...
...
@@ -432,7 +432,9 @@ export default {
methods
:
{},
created
:
function
()
{
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
trn
){
this
.
model
.
infcon
.
seaownref
=
this
.
$route
.
query
.
trn
this
.
root
.
model
.
infcon
.
seaownref
=
this
.
$route
.
query
.
trn
this
.
root
.
model
.
infcon
.
opndatfrom
=
null
this
.
root
.
model
.
infcon
.
opndatto
=
null
this
.
handleSearch
()
}
},
...
...
src/business/inflid/views/index.vue
View file @
0e199d99
...
...
@@ -48,7 +48,9 @@ export default {
}
},
mounted
()
{
this
.
getInidatfro
()
if
(
!
this
.
$route
.
query
.
trn
){
this
.
getInidatfro
()
}
},
}
</
script
>
...
...
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