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
4e1b9751
Commit
4e1b9751
authored
Aug 09, 2022
by
taojinrui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cnysel交易和cptato交易的修改
parent
ac3d981f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
117 additions
and
73 deletions
+117
-73
Event.js
src/model/Cnysel/Event.js
+78
-44
Selp.vue
src/views/Business/Cnysel/Selp.vue
+31
-23
Opnp1.vue
src/views/Business/Cptato/Opnp1.vue
+4
-2
Pardet.vue
src/views/Business/Cptato/Pardet.vue
+3
-3
Inftrnps copy.vue
src/views/Business/Cptrel/Inftrnps copy.vue
+0
-0
Inftrnps.vue
src/views/Business/Cptrel/Inftrnps.vue
+0
-0
index.vue
src/views/Business/Cptrel/index.vue
+1
-1
No files found.
src/model/Cnysel/Event.js
View file @
4e1b9751
...
@@ -2,53 +2,86 @@ import Api from "~/service/Api"
...
@@ -2,53 +2,86 @@ import Api from "~/service/Api"
import
Utils
from
"~/utils"
import
Utils
from
"~/utils"
export
default
{
export
default
{
async
onSerbut
(){
async
onSerbut
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"serbut"
)
let
rtnmsg
=
await
this
.
executeRule
(
"serbut"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
{
//TODO 处理数据逻辑
//TODO 处理数据逻辑
}
}
else
else
{
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
}
},
},
async
onButprt
()
{
async
onButprt
(){
let
rtnmsg
=
await
this
.
executeRule
(
"butprt"
)
let
rtnmsg
=
await
this
.
executeRule
(
"butprt"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
//TODO 处理数据逻辑
{
//TODO 处理数据逻辑
}
}
else
else
{
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
}
},
},
async
onDtlbut
()
{
async
onDtlbut
(){
let
rtnmsg
=
await
this
.
executeRule
(
"dtlbut"
)
let
rtnmsg
=
await
this
.
executeRule
(
"dtlbut"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
//TODO 处理数据逻辑
{
//TODO 处理数据逻辑
}
}
else
else
{
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
}
},
},
async
onExi
()
{
async
onExi
(){
let
rtnmsg
=
await
this
.
executeRule
(
"exi"
)
let
rtnmsg
=
await
this
.
executeRule
(
"exi"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
//TODO 处理数据逻辑
{
//TODO 处理数据逻辑
}
}
else
else
{
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
}
},
},
async
handleSearch
()
{
this
.
stmData
.
data
=
[];
let
opndatfrom
=
this
.
model
.
frmdat
;
if
(
!
opndatfrom
||
opndatfrom
==
''
)
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'查询开始日期必输!'
});
return
;
}
let
opndatto
=
this
.
model
.
tildat
;
if
(
!
opndatto
||
opndatto
==
''
)
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'查询结束日期必输!'
});
return
;
}
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.searow"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
this
.
stmData
.
data
=
rtnmsg
.
data
.
infbut_dspstm
.
rows
;
// this.updateModel(rtnmsg.data);
// this.stmData.data = rtnmsg.data.infbut_dspstm.rows;
//this.model.infbut.dspstm = rtnmsg.data.infbut_dspstm
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
handleReset
()
{
this
.
model
.
infcon
.
seaownref
=
""
this
.
model
.
infcon
.
opndatfrom
=
new
Date
();
this
.
model
.
infcon
.
opndatto
=
new
Date
();
this
.
model
.
infcon
.
searef
=
""
;
this
.
model
.
infcon
.
pty
.
extkey
=
""
;
this
.
model
.
infcon
.
usr
.
extkey
=
""
;
this
.
model
.
infcon
.
searol
=
""
;
this
.
model
.
infcon
.
pty
.
nam
=
""
;
this
.
model
.
infcon
.
seapty
=
""
;
this
.
model
.
infcon
.
curtxt1
=
""
;
this
.
model
.
infcon
.
nam
=
""
;
this
.
model
.
infcon
.
seaamtfr
=
""
;
this
.
model
.
infcon
.
seaamtto
=
""
;
this
.
model
.
infcon
.
seasta
=
""
;
this
.
model
.
infcon
.
doctypcod
=
""
;
},
}
}
\ No newline at end of file
src/views/Business/Cnysel/Selp.vue
View file @
4e1b9751
<
template
>
<
template
>
<div
class=
"eibs-tab"
>
<div
class=
"eibs-tab"
>
<c-list-search
@
form-reset=
"handleReset"
@
form-search=
"handleSearch"
>
<!-- ===================左边================= -->
<!-- ===================左边================= -->
<c-col
:span=
"11"
>
<c-col
:span=
"11"
>
<c-col
:span=
"24"
>
<c-col
:span=
"24"
>
...
@@ -30,6 +31,33 @@
...
@@ -30,6 +31,33 @@
</el-form-item>
</el-form-item>
</c-col>
</c-col>
</c-col>
<!-- =====================右边=========================== -->
<c-col
:span=
"11"
:offset=
"1"
>
<el-form-item
label=
"From"
prop=
"frmdat"
>
<c-col
:span=
"24"
>
<c-col
:span=
"11"
>
<c-date-picker
type=
"date"
v-model=
"model.frmdat"
style=
"width: 100%"
placeholder=
"请选择From"
></c-date-picker>
</c-col>
<c-col
:span=
"2"
style=
"text-align:center"
>
-
</c-col>
<c-col
:span=
"11"
>
<c-date-picker
type=
"date"
v-model=
"model.tildat"
style=
"width: 100%"
placeholder=
"请选择Until"
></c-date-picker>
</c-col>
</c-col>
</el-form-item>
<c-col
:span=
"24"
>
<c-col
:span=
"24"
>
<el-form-item
label=
"业务所属行"
prop=
"ownextkey"
>
<el-form-item
label=
"业务所属行"
prop=
"ownextkey"
>
<c-select
<c-select
...
@@ -48,30 +76,8 @@
...
@@ -48,30 +76,8 @@
</el-form-item>
</el-form-item>
</c-col>
</c-col>
</c-col>
</c-col>
<!-- =====================右边=========================== -->
</c-list-search>
<c-col
:span=
"11"
:offset=
"1"
>
<c-col
:span=
"24"
>
<el-form-item
label=
"From"
prop=
"frmdat"
>
<c-date-picker
type=
"date"
v-model=
"model.frmdat"
style=
"width: 100%"
placeholder=
"请选择From"
></c-date-picker>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"Until"
prop=
"tildat"
>
<c-date-picker
type=
"date"
v-model=
"model.tildat"
style=
"width: 100%"
placeholder=
"请选择Until"
></c-date-picker>
</el-form-item>
</c-col>
</c-col>
<!-- ======================底部============================ -->
<!-- ======================底部============================ -->
<c-col
:span=
"24"
>
<c-col
:span=
"24"
>
<!--
<c-col
:span=
"24"
>
<!--
<c-col
:span=
"24"
>
...
@@ -166,6 +172,8 @@
...
@@ -166,6 +172,8 @@
</c-button>
</c-button>
</c-col> -->
</c-col> -->
</div>
</div>
</template>
</template>
<
script
>
<
script
>
import
Api
from
"~/service/Api"
;
import
Api
from
"~/service/Api"
;
...
...
src/views/Business/Cptato/Opnp1.vue
View file @
4e1b9751
...
@@ -245,7 +245,7 @@
...
@@ -245,7 +245,7 @@
maxlength=
"65"
maxlength=
"65"
show-word-limit
show-word-limit
placeholder=
"请输入汇款人地址"
placeholder=
"请输入汇款人地址"
disabled
></c-input>
></c-input>
</el-form-item>
</el-form-item>
</c-col>
</c-col>
...
@@ -528,7 +528,9 @@
...
@@ -528,7 +528,9 @@
v-model=
"model.attp.resbchnam"
v-model=
"model.attp.resbchnam"
maxlength=
"42"
maxlength=
"42"
placeholder=
"请输入接收行名称"
placeholder=
"请输入接收行名称"
@
keyup
.
enter
.
native=
"showGridPromptDialog('attp.resbchnam')"
@
keyup
.
enter
.
native=
"
showGridPromptDialog('attp.resbchnam')
"
></c-input>
></c-input>
</el-form-item>
</el-form-item>
</c-col>
</c-col>
...
...
src/views/Business/Cptato/Pardet.vue
View file @
4e1b9751
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
maxlength=
"16"
maxlength=
"16"
placeholder=
"请输入External Key of Address"
placeholder=
"请输入External Key of Address"
@
keyup
.
enter
.
native=
"
@
keyup
.
enter
.
native=
"
showGridPromptDialog('
attp.atd.sbkact
')
showGridPromptDialog('
cpdgrp.ori.pts.extkey
')
"
"
></c-input>
></c-input>
</el-form-item>
</el-form-item>
...
@@ -229,7 +229,7 @@
...
@@ -229,7 +229,7 @@
</el-form-item>
</el-form-item>
</c-col>
</c-col>
<!-- <c-col :span="24">
<!-- <c-col :span="24">
showGridPromptDialog
<el-form-item
<el-form-item
label="Drag Drop Sender"
label="Drag Drop Sender"
prop="attp.pybp.ptsget.sdamod.dadsnd"
prop="attp.pybp.ptsget.sdamod.dadsnd"
...
@@ -252,7 +252,7 @@
...
@@ -252,7 +252,7 @@
maxlength=
"16"
maxlength=
"16"
placeholder=
"请输入External Key of Address"
placeholder=
"请输入External Key of Address"
@
keyup
.
enter
.
native=
"
@
keyup
.
enter
.
native=
"
showGridPromptDialog('cpdgrp.py
d
.pts.extkey')
showGridPromptDialog('cpdgrp.py
b
.pts.extkey')
"
"
></c-input>
></c-input>
</el-form-item>
</el-form-item>
...
...
src/views/Business/Cptrel/Inftrnps copy.vue
0 → 100644
View file @
4e1b9751
This diff is collapsed.
Click to expand it.
src/views/Business/Cptrel/Inftrnps.vue
View file @
4e1b9751
This diff is collapsed.
Click to expand it.
src/views/Business/Cptrel/index.vue
View file @
4e1b9751
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
<c-tabs
v-model=
"tabVal"
ref=
"elment"
type=
"card"
@
tab-click=
"myTabClick"
>
<c-tabs
v-model=
"tabVal"
ref=
"elment"
type=
"card"
@
tab-click=
"myTabClick"
>
<!--PD000071 -->
<!--PD000071 -->
<el-tab-pane
label=
"
PD000071
"
name=
"inftrnps"
>
<el-tab-pane
label=
"
selection panel
"
name=
"inftrnps"
>
<m-inftrnps
:model=
"model"
:codes=
"codes"
/>
<m-inftrnps
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
</el-tab-pane>
</c-tabs>
</c-tabs>
...
...
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