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
6702ddd9
Commit
6702ddd9
authored
Jan 24, 2022
by
唐贵贤
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
infltd交易修改
parent
aad77f8c
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
133 additions
and
90 deletions
+133
-90
Event.js
src/model/Infltd/Event.js
+50
-4
Infsea.vue
src/views/Business/Infltd/Infsea.vue
+75
-28
Ovwp.vue
src/views/Business/Infltd/Ovwp.vue
+2
-2
Ptyp.vue
src/views/Business/Infltd/Ptyp.vue
+0
-54
index.vue
src/views/Business/Infltd/index.vue
+6
-2
No files found.
src/model/Infltd/Event.js
View file @
6702ddd9
...
...
@@ -8,16 +8,24 @@ export default {
//TODO 处理数据逻辑
this
.
stmData
.
data
=
rtnmsg
.
data
.
infbut_dspstm
.
rows
;
//console.log("smhstm:",rtnmsg);
if
(
rtnmsg
.
data
.
infbut_dspstm
.
rows
.
length
==
0
)
{
this
.
$notify
({
title
:
'成功'
,
message
:
'搜索完毕,无满足条件记录'
,
type
:
'success'
});
}
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutDsp
()
{
async
onInfbutDsp
(
row
)
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.dsp"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
//console.log(rtnmsg);
console
.
log
(
"rows:"
,
row
);
console
.
log
(
"你猜"
,
rtnmsg
);
}
else
{
...
...
@@ -28,6 +36,7 @@ export default {
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.userow"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
//console.log("use测试:",rtnmsg);
}
else
{
...
...
@@ -35,7 +44,24 @@ export default {
}
},
async
onInfbutClr
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.clr"
)
this
.
model
.
infcon
.
seaownref
=
""
;
this
.
model
.
infcon
.
searef
=
""
;
this
.
model
.
infcon
.
pty
.
extkey
=
""
;
this
.
model
.
infcon
.
seapty
=
""
;
this
.
model
.
infcon
.
opndatfrom
=
""
;
this
.
model
.
infcon
.
opndatto
=
""
;
this
.
model
.
infcon
.
seaamtfr
=
""
;
this
.
model
.
infcon
.
seaamtto
=
""
;
this
.
model
.
infcon
.
seasta
=
""
;
this
.
model
.
infcon
.
usr
.
extkey
=
""
;
this
.
model
.
infcon
.
nam
=
""
;
this
.
model
.
infcon
.
hndtyp
=
""
;
this
.
model
.
infcon
.
pty
.
nam
=
""
;
this
.
model
.
infcon
.
searol
=
""
;
this
.
model
.
infcon
.
seacur
=
""
;
this
.
stmData
.
data
=
""
;
//let rtnmsg = await this.executeRule("infbut.clr")
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
...
...
@@ -55,7 +81,27 @@ export default {
}
},
async
onInfbutExi
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.exi"
)
this
.
$confirm
(
"确认退出?"
,
""
,
{
confirmButtonText
:
"确认"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
,
})
.
then
((
res
)
=>
{
// this.$router.back();
this
.
$store
.
dispatch
(
"TagsView/delView"
,
this
.
$route
);
this
.
handleExit
&&
this
.
handleExit
();
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
routeParams
)
{
setTimeout
(()
=>
{
this
.
$router
.
back
();
},
500
);
}
else
{
setTimeout
(()
=>
{
this
.
$router
.
push
(
"/home"
);
},
500
);
}
})
.
catch
(()
=>
{});
//let rtnmsg = await this.executeRule("infbut.exi")
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
...
...
src/views/Business/Infltd/Infsea.vue
View file @
6702ddd9
<
template
>
<div
class=
"eibs-tab"
>
<c-row>
<c-col
:span=
"24"
style=
"padding: 0 0 10px 0"
>
<!--
<c-col
:span=
"24"
style=
"padding: 0 0 10px 0"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onInfbutSearow"
>
Search
</c-button>
...
...
@@ -20,8 +19,42 @@
<c-button
size=
"small"
type=
"primary"
@
click=
"onInfbutExi"
>
Exit
</c-button>
</c-col>
-->
<c-list-search>
<template
v-slot=
"searchSlot"
>
<c-col
:span=
"11"
:offset=
"1"
>
<el-form-item
label=
"Own Reference"
prop=
"infcon.seaownref"
>
<c-input
v-model=
"model.infcon.seaownref"
maxlength=
"16"
placeholder=
"请输入Own Reference"
></c-input>
</el-form-item>
</c-col>
<c-col
:offset=
"1"
:span=
"5.5"
>
<el-form-item
label=
"Opening between"
prop=
"infcon.opndatfrom"
>
<c-date-picker
type=
"date"
v-model=
"model.infcon.opndatfrom"
style=
"width: 100%"
placeholder=
"请选择Opening between"
></c-date-picker>
</el-form-item>
</c-col>
<c-col
:span=
"5.5"
>
<el-form-item
label=
"Open Date to"
prop=
"infcon.opndatto"
>
<c-date-picker
type=
"date"
v-model=
"model.infcon.opndatto"
style=
"width: 100%"
placeholder=
"请选择Open Date to"
></c-date-picker>
</el-form-item>
</c-col>
<c-col
:span=
"11"
>
<el-row
v-show=
"searchSlot.searchToggle"
>
<c-col
:span=
"11"
:offset=
"1"
>
<c-col
:span=
"20"
>
<el-form-item
label=
"Own Reference"
prop=
"infcon.seaownref"
>
<c-input
...
...
@@ -41,7 +74,10 @@
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"Select Single Party"
prop=
"infcon.pty.extkey"
>
<el-form-item
label=
"Select Single Party"
prop=
"infcon.pty.extkey"
>
<c-input
v-model=
"model.infcon.pty.extkey"
maxlength=
"24"
...
...
@@ -166,24 +202,35 @@
</el-form-item>
</c-col>
</c-col>
</c-row>
<c-col
:span=
"11"
>
<el-form-item
label=
"是否显示查询码"
prop=
"infcon.cxmflg"
>
<c-select
v-model=
"model.infcon.cxmflg"
style=
"width: 100%"
placeholder=
"请选择是否显示查询码"
>
</c-select>
</el-form-item>
</c-col>
</el-row>
</
template
>
</c-list-search>
<c-row>
<c-istream-table
:list=
"stmData.data"
:columns=
"stmData.columns"
prop=
"infbut.dspstm"
>
<el-table-column
fixed=
"right"
prop=
"op"
label=
"操作"
width=
"140px"
>
<
template
slot=
"header"
>
<c-col
:span=
"11"
style=
"text-align: left"
><span>
操作
</span></c-col>
<c-col
:span=
"12"
style=
"text-align: right"
><c-button
icon=
"el-icon-s-tools"
></c-button
></c-col>
</
template
>
<
template
slot-scope=
"scope"
>
<c-button
style=
"margin-left: 0"
size=
"small"
@
click=
"onDetails"
>
详情
</c-button>
<c-button
style=
"margin-left: 0"
size=
"small"
type=
"primary"
@
click=
"onInfbutDsp(scope.row)"
>
处理
</c-button>
</
template
>
</el-table-column>
<!--el-table-column prop="op" label="OP" width="100">placeholder="请输入display stream"</el-table-column-->
</c-istream-table>
</c-row>
...
...
@@ -203,19 +250,19 @@ export default {
return
{
stmData
:
{
columns
:
[
'1 1
\
"Reference
\
" 275 '
,
'8 2
\
"Party Number
\
" 275'
,
'9 2
\
"1st Beneficiary
\
" 275'
,
'11 3
\
"Party Number
\
" 275'
,
'12 3
\
"2nd Beneficiary
\
" 275'
,
'1 1
"Reference
" 275 '
,
'8 2
"Party Number
" 275'
,
'9 2
"1st Beneficiary
" 275'
,
'11 3
"Party Number
" 275'
,
'12 3
"2nd Beneficiary
" 275'
,
// "18 5 \"MT\" 100",
'3 4
\
"Opened
\
" 275'
,
'4 4
\
"Expired
\
" 275'
,
'5 4
\
"Closed
\
" 275'
,
'15 5
\
"Cur
\
" 275'
,
"17 5
\"
Cur
\"
275"
,
"16 6
\"
Amt
\"
275"
,
'18 6
\
"Amt
\
" 275'
,
'3 4
"Opened
" 275'
,
'4 4
"Expired
" 275'
,
'5 4
"Closed
" 275'
,
'15 5
"Cur" 275'
,
'17 5 "Cur" 275'
,
'16 6"Amt" 275'
,
'18 6
"Amt
" 275'
,
],
data
:
[],
},
...
...
src/views/Business/Infltd/Ovwp.vue
View file @
6702ddd9
...
...
@@ -62,7 +62,7 @@
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<
!--
<
c-col
:span=
"24"
>
<el-form-item
label=
"Drag Drop Sender"
prop=
"recpan.be1p.ptsget.sdamod.dadsnd"
...
...
@@ -72,7 +72,7 @@
placeholder=
"请输入Drag Drop Sender"
></c-input>
</el-form-item>
</c-col>
</c-col>
-->
<c-col
:span=
"12"
>
<el-form-item
label=
"Nominal Amount"
prop=
"ltdgrp.cbs.nom1.cur"
>
<c-select
...
...
src/views/Business/Infltd/Ptyp.vue
View file @
6702ddd9
...
...
@@ -155,48 +155,6 @@
</c-row>
<c-col
:span=
"12"
>
<el-form-item
label=
"Drag Drop Sender"
prop=
"recpan.a2tp.ptsget.sdamod.dadsnd"
>
<c-input
v-model=
"model.recpan.a2tp.ptsget.sdamod.dadsnd"
placeholder=
"请输入Drag Drop Sender"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"Drag Drop Sender"
prop=
"recpan.rmtp.ptsget.sdamod.dadsnd"
>
<c-input
v-model=
"model.recpan.rmtp.ptsget.sdamod.dadsnd"
placeholder=
"请输入Drag Drop Sender"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
""
prop=
"recpan.a2tp.ptsget.sdamod.seainf"
>
<c-input
v-model=
"model.recpan.a2tp.ptsget.sdamod.seainf"
placeholder=
"请输入"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
""
prop=
"recpan.rmtp.ptsget.sdamod.seainf"
>
<c-input
v-model=
"model.recpan.rmtp.ptsget.sdamod.seainf"
placeholder=
"请输入"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"名称"
prop=
"ltdgrp.a2t.namelc"
>
<c-input
type=
"textarea"
...
...
@@ -269,18 +227,6 @@
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"Drag Drop Sender"
prop=
"recpan.conp.ptsget.sdamod.dadsnd"
>
<c-input
v-model=
"model.recpan.conp.ptsget.sdamod.dadsnd"
placeholder=
"请输入Drag Drop Sender"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
""
prop=
"recpan.conp.ptsget.sdamod.seainf"
>
<c-input
v-model=
"model.recpan.conp.ptsget.sdamod.seainf"
...
...
src/views/Business/Infltd/index.vue
View file @
6702ddd9
...
...
@@ -12,7 +12,9 @@
<c-tabs
v-model=
"tabVal"
ref=
"elment"
type=
"card"
@
tab-click=
"tabClick"
>
<!--PD000006 -->
<el-tab-pane
label=
"Selection"
name=
"infsea"
>
<c-content>
<m-infsea
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
<!--PD000001 -->
...
...
@@ -27,7 +29,9 @@
<!--PD000042 -->
<el-tab-pane
label=
"Parties"
name=
"ptyp"
>
<c-content>
<m-ptyp
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
<!--PD000169 -->
...
...
@@ -146,7 +150,7 @@ export default {
pattern
:
Pattern
,
rules
:
null
,
codes
:
{
...
CodeTable
},
}
}
;
},
methods
:
{
tabClick
()
{},
...
...
@@ -155,7 +159,7 @@ export default {
console
.
log
(
"进入infltd交易"
);
let
rtnmsg
=
await
this
.
init
({});
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
console
.
log
(
"ini方法:"
)
console
.
log
(
"ini方法:"
)
;
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
"错误"
,
message
:
"服务请求失败!"
});
...
...
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