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
zhouqian
vue-gjjs
Commits
bad8efbd
Commit
bad8efbd
authored
Jan 14, 2022
by
hulei
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://114.115.138.98:8900/fukai/vue-gjjs
parents
7c380b65
1dd9ed86
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
36 additions
and
3 deletions
+36
-3
Event.js
src/model/Infbdd/Event.js
+12
-0
Event.js
src/model/Infdid/Event.js
+11
-1
Event.js
src/model/Sptsel/Event.js
+12
-2
index.js
src/model/Sptsel/index.js
+1
-0
No files found.
src/model/Infbdd/Event.js
View file @
bad8efbd
...
...
@@ -116,6 +116,18 @@ export default {
},
async
handleSearch
()
{
this
.
stmData
.
data
=
[];
let
opndatfrom
=
this
.
model
.
infcon
.
opndatfrom
;
if
(
!
opndatfrom
||
opndatfrom
==
''
){
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'查询开始日期必输!'
});
return
;
}
let
opndatto
=
this
.
model
.
infcon
.
opndatto
;
if
(
!
opndatto
||
opndatto
==
''
){
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'查询结束日期必输!'
});
return
;
}
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.searow"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
...
...
src/model/Infdid/Event.js
View file @
bad8efbd
...
...
@@ -177,7 +177,17 @@ export default {
},
async
handleSearch
()
{
this
.
stmData
.
data
=
[];
let
opndatfrom
=
this
.
model
.
infcon
.
opndatfrom
;
if
(
!
opndatfrom
||
opndatfrom
==
''
){
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'查询开始日期必输!'
});
return
;
}
let
opndatto
=
this
.
model
.
infcon
.
opndatto
;
if
(
!
opndatto
||
opndatto
==
''
){
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'查询结束日期必输!'
});
return
;
}
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.searow"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
this
.
stmData
.
data
=
rtnmsg
.
data
.
infbut_dspstm
.
rows
;
...
...
src/model/Sptsel/Event.js
View file @
bad8efbd
...
...
@@ -79,11 +79,21 @@ export default {
//let rtnmsg = await Api.post("getPendingData",{params:{'selsptinr':row[0]}})
//if (rtnmsg.respCode == SUCCESS) {
//var cacheFileName = rtnmsg.data.cacheFileName;
this
.
model
.
selsptinr
=
row
[
'INR'
];
let
rtnmsg
=
await
this
.
executeRule
(
"tak"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
let
trnName
=
row
.
交易代码
.
toLowerCase
();
// let viewurl = "/business/ditopn?selsptinr=" + row[0];
let
viewurl
=
"/business/"
+
trnName
+
"?selsptinr="
+
row
[
'INR'
];
//let viewurl = "/business/"+trnName+"?selsptinr=" + row['INR'];
let
viewurl
=
"/business/"
+
trnName
;
this
.
$router
.
push
(
viewurl
);
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
//}
},
async
handleReset
()
{
...
...
src/model/Sptsel/index.js
View file @
bad8efbd
...
...
@@ -60,6 +60,7 @@ export default class Sptsel {
relamt
:
""
,
// Relevant Amount Optional .sptp.smh.relamt
},
},
selsptinr
:
""
,
pageId
:
""
// ctx的key
}
}
...
...
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