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
6e52e28e
Commit
6e52e28e
authored
Jan 24, 2022
by
liuxin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://114.115.138.98:8900/fukai/vue-gjjs
parents
2106598a
b9b451d0
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
310 additions
and
264 deletions
+310
-264
Event.js
src/model/Infltd/Event.js
+50
-4
Pattern.js
src/model/Letopn/Pattern.js
+4
-4
Infsea.vue
src/views/Business/Infcpd/Infsea.vue
+28
-25
Infsea.vue
src/views/Business/Infltd/Infsea.vue
+209
-162
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
+8
-4
Detp.vue
src/views/Business/Letopn/Detp.vue
+1
-0
Sel.vue
src/views/Business/Letsel/Sel.vue
+3
-3
SelMune.vue
src/views/Business/Letsel/SelMune.vue
+5
-6
No files found.
src/model/Infltd/Event.js
View file @
6e52e28e
...
...
@@ -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/model/Letopn/Pattern.js
View file @
6e52e28e
...
...
@@ -76,11 +76,11 @@ export default {
],
"ledgrp.rec.nomtop"
:
[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
required
:
false
,
message
:
"必输项"
},
{
max
:
2
,
message
:
"长度不能超过2"
}
],
"ledgrp.rec.nomton"
:
[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
required
:
false
,
message
:
"必输项"
},
{
max
:
2
,
message
:
"长度不能超过2"
}
],
"ledgrp.ben.adrelc"
:
[
...
...
@@ -103,7 +103,7 @@ export default {
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"ledgrp.rec.opndat"
:
[
{
required
:
fals
e
,
message
:
"输入正确的日期"
}
{
required
:
tru
e
,
message
:
"输入正确的日期"
}
],
"ledgrp.rec.preadvdt"
:
[
{
required
:
false
,
message
:
"输入正确的日期"
}
...
...
@@ -137,7 +137,7 @@ export default {
{
max
:
140
,
message
:
"长度不能超过140"
}
],
"ledgrp.rec.expdat"
:
[
{
required
:
fals
e
,
message
:
"输入正确的日期"
}
{
required
:
tru
e
,
message
:
"输入正确的日期"
}
],
"ledgrp.iss.adrelc"
:
[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
...
...
src/views/Business/Infcpd/Infsea.vue
View file @
6e52e28e
...
...
@@ -342,29 +342,32 @@ export default {
searchToggle
:
true
,
stmData
:
{
columns
:
[
'1 1 "Reference" 120 '
,
'2 1 "Resp. User" 1200 '
,
'3 1 "PYE NO." 120 '
,
'1 2 "Party Number" 150'
,
'2 2 "Payee Customer" 150'
,
'3 2 "PYE.Customer CN" 150'
,
'1 3 "Party Number" 150'
,
'2 3 "Ord.Customer" 150'
,
'3 3 "Ord.Customer CN" 150'
,
'1 4 "Party Number" 150'
,
'2 4 "Ord.Institution" 150'
,
'3 4 "ORC NO." 150'
,
'1 5 "Party Number" 150'
,
'2 5 "Paying Bank" 150'
,
'1 6 "Opened" 100'
,
'2 6 "Value" 100'
,
'1 7 "Closed" 100'
,
'1 8 "Cur" 100'
,
'2 8 "Cur" 100'
,
'1 9 "Paym.Amount" 150'
,
'2 9 "Amount rcvd." 150'
,
'1 10 "Pyectycod" 150'
,
'1 11 "Orcctycod" 150'
,
'1 1 "Reference" 150 '
,
'2 2 "Resp. User" 100 '
,
'12 3 "PYE NO." 100 '
,
'9 4 "Payee.Party Number" 150'
,
'10 5 "Payee Customer" 250'
,
'11 6 "PYE.Customer CN" 130'
,
'13 7 "Ord.Party Number" 150'
,
'14 8 "Ord.Customer" 250'
,
'15 9 "Ord.Customer CN" 130'
,
'16 10 "1.Party Number" 150'
,
'17 11 "Ord.Institution" 200'
,
'12 12 "ORC NO." 150'
,
'18 13 "2.Party Number" 150'
,
'19 14 "Paying Bank" 150'
,
//'3 15 "Opened" 140',
{
index
:
3
,
position
:
15
,
width
:
140
,
pattern
:
'time'
,
label
:
'Opened'
},
//'4 16 "Value" 140',
{
index
:
4
,
position
:
16
,
width
:
140
,
pattern
:
'time'
,
label
:
'Value'
},
//'5 17 "Closed" 140',
{
index
:
5
,
position
:
17
,
width
:
140
,
pattern
:
'time'
,
label
:
'Closed'
},
'20 18 "1.Cur" 80'
,
'22 19 "2.Cur" 80'
,
'21 20 "Paym.Amount" 120'
,
'23 21 "Amount rcvd." 120'
,
'6 22 "Pyectycod" 100'
,
'7 23 "Orcctycod" 100'
,
],
data
:
[],
},
...
...
@@ -372,7 +375,7 @@ export default {
},
methods
:
{
...
Event
,
handleSearch
(
callback
)
{
/*
handleSearch(callback) {
setTimeout(() => {
this.$notify.info({
title: "提示",
...
...
@@ -381,7 +384,7 @@ export default {
// 执行子组件回调函数控制按钮状态
callback();
}, 1000);
},
},
*/
handleReset
()
{},
},
created
:
function
()
{},
...
...
src/views/Business/Infltd/Infsea.vue
View file @
6e52e28e
<
template
>
<div
class=
"eibs-tab"
>
<c-row>
<c-col
:span=
"24"
style=
"padding: 0 0 10px 0"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onInfbutSearow"
>
Search
</c-button>
<c-button
size=
"small"
type=
"primary"
@
click=
"onInfbutDsp"
>
Display
</c-button>
<c-button
size=
"small"
type=
"primary"
@
click=
"onInfbutUserow"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
@
click=
"onInfbutClr"
>
Clear
</c-button>
<c-button
size=
"small"
type=
"primary"
@
click=
"onInfbutButprt"
>
导Excel
</c-button>
<c-button
size=
"small"
type=
"primary"
@
click=
"onInfbutExi"
>
Exit
</c-button>
</c-col>
<c-col
:span=
"11"
>
<c-col
:span=
"20"
>
<!--
<c-col
:span=
"24"
style=
"padding: 0 0 10px 0"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onInfbutSearow"
>
Search
</c-button>
<c-button
size=
"small"
type=
"primary"
@
click=
"onInfbutDsp"
>
Display
</c-button>
<c-button
size=
"small"
type=
"primary"
@
click=
"onInfbutUserow"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
@
click=
"onInfbutClr"
>
Clear
</c-button>
<c-button
size=
"small"
type=
"primary"
@
click=
"onInfbutButprt"
>
导Excel
</c-button>
<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"
...
...
@@ -31,34 +32,8 @@
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"22"
>
<el-form-item
label=
"Party Reference"
prop=
"infcon.searef"
>
<c-input
v-model=
"model.infcon.searef"
maxlength=
"16"
placeholder=
"请输入Party Reference"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"Select Single Party"
prop=
"infcon.pty.extkey"
>
<c-input
v-model=
"model.infcon.pty.extkey"
maxlength=
"24"
placeholder=
"请输入Select Single Party"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"Party Name/BIC"
prop=
"infcon.seapty"
>
<c-input
v-model=
"model.infcon.seapty"
maxlength=
"24"
placeholder=
"请输入Party Name/BIC"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<c-col
:offset=
"1"
:span=
"5.5"
>
<el-form-item
label=
"Opening between"
prop=
"infcon.opndatfrom"
>
<c-date-picker
type=
"date"
...
...
@@ -68,7 +43,7 @@
></c-date-picker>
</el-form-item>
</c-col>
<c-col
:span=
"
12
"
>
<c-col
:span=
"
5.5
"
>
<el-form-item
label=
"Open Date to"
prop=
"infcon.opndatto"
>
<c-date-picker
type=
"date"
...
...
@@ -78,112 +53,184 @@
></c-date-picker>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"Currency"
prop=
"infcon.seacur"
>
<c-select
v-model=
"model.infcon.seacur"
style=
"width: 100%"
placeholder=
"请选择Currency"
>
</c-select>
</el-form-item>
</c-col>
</c-col>
<!--右边-->
<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
v-model=
"model.infcon.seaownref"
maxlength=
"16"
placeholder=
"请输入Own Reference"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"22"
>
<el-form-item
label=
"Party Reference"
prop=
"infcon.searef"
>
<c-input
v-model=
"model.infcon.searef"
maxlength=
"16"
placeholder=
"请输入Party Reference"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"Select Single Party"
prop=
"infcon.pty.extkey"
>
<c-input
v-model=
"model.infcon.pty.extkey"
maxlength=
"24"
placeholder=
"请输入Select Single Party"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"Party Name/BIC"
prop=
"infcon.seapty"
>
<c-input
v-model=
"model.infcon.seapty"
maxlength=
"24"
placeholder=
"请输入Party Name/BIC"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<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=
"12"
>
<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=
"24"
>
<el-form-item
label=
"Currency"
prop=
"infcon.seacur"
>
<c-select
v-model=
"model.infcon.seacur"
style=
"width: 100%"
placeholder=
"请选择Currency"
>
</c-select>
</el-form-item>
</c-col>
</c-col>
<c-col
:span=
"11"
:offset=
"1"
>
<c-col
:span=
"24"
><el-form-item
label=
"Name"
prop=
"infcon.nam"
>
<c-input
v-model=
"model.infcon.nam"
maxlength=
"40"
placeholder=
"请输入Name"
></c-input>
</el-form-item
></c-col>
<c-col
:span=
"22"
>
<el-form-item
label=
"Handling Type"
prop=
"infcon.hndtyp"
>
<c-select
v-model=
"model.infcon.hndtyp"
style=
"width: 100%"
placeholder=
"请选择Handling Type"
>
</c-select>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"Party Name"
prop=
"infcon.pty.nam"
>
<c-input
v-model=
"model.infcon.pty.nam"
maxlength=
"40"
placeholder=
"请输入External Visible Name"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"20"
>
<el-form-item
label=
"Role"
prop=
"infcon.searol"
>
<c-select
v-model=
"model.infcon.searol"
style=
"width: 100%"
placeholder=
"请选择Role"
>
</c-select>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"Responsible"
prop=
"infcon.usr.extkey"
>
<c-input
v-model=
"model.infcon.usr.extkey"
maxlength=
"8"
placeholder=
"请输入User ID"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"Status"
prop=
"infcon.seasta"
>
<c-select
v-model=
"model.infcon.seasta"
style=
"width: 100%"
placeholder=
"请选择Status"
>
</c-select>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"Amount between"
prop=
"infcon.seaamtfr"
>
<c-input
v-model=
"model.infcon.seaamtfr"
placeholder=
"0.00"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"and"
prop=
"infcon.seaamtto"
>
<c-input
v-model=
"model.infcon.seaamtto"
placeholder=
"0.00"
></c-input>
</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>
<c-col
:span=
"11"
:offset=
"1"
>
<c-col
:span=
"24"
><el-form-item
label=
"Name"
prop=
"infcon.nam"
>
<c-input
v-model=
"model.infcon.nam"
maxlength=
"40"
placeholder=
"请输入Name"
></c-input>
</el-form-item
></c-col>
<c-col
:span=
"22"
>
<el-form-item
label=
"Handling Type"
prop=
"infcon.hndtyp"
>
<c-select
v-model=
"model.infcon.hndtyp"
style=
"width: 100%"
placeholder=
"请选择Handling Type"
>
</c-select>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"Party Name"
prop=
"infcon.pty.nam"
>
<c-input
v-model=
"model.infcon.pty.nam"
maxlength=
"40"
placeholder=
"请输入External Visible Name"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"20"
>
<el-form-item
label=
"Role"
prop=
"infcon.searol"
>
<c-select
v-model=
"model.infcon.searol"
style=
"width: 100%"
placeholder=
"请选择Role"
>
</c-select>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"Responsible"
prop=
"infcon.usr.extkey"
>
<c-input
v-model=
"model.infcon.usr.extkey"
maxlength=
"8"
placeholder=
"请输入User ID"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"Status"
prop=
"infcon.seasta"
>
<c-select
v-model=
"model.infcon.seasta"
style=
"width: 100%"
placeholder=
"请选择Status"
>
</c-select>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"Amount between"
prop=
"infcon.seaamtfr"
>
<c-input
v-model=
"model.infcon.seaamtfr"
placeholder=
"0.00"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"and"
prop=
"infcon.seaamtto"
>
<c-input
v-model=
"model.infcon.seaamtto"
placeholder=
"0.00"
></c-input>
</el-form-item>
</c-col>
</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 @
6e52e28e
...
...
@@ -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 @
6e52e28e
...
...
@@ -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 @
6e52e28e
...
...
@@ -12,7 +12,9 @@
<c-tabs
v-model=
"tabVal"
ref=
"elment"
type=
"card"
@
tab-click=
"tabClick"
>
<!--PD000006 -->
<el-tab-pane
label=
"Selection"
name=
"infsea"
>
<m-infsea
:model=
"model"
:codes=
"codes"
/>
<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"
>
<m-ptyp
:model=
"model"
:codes=
"codes"
/>
<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
:
"服务请求失败!"
});
...
...
src/views/Business/Letopn/Detp.vue
View file @
6e52e28e
...
...
@@ -9,6 +9,7 @@
v-model=
"model.ledgrp.rec.avbwth"
style=
"width: 100%"
placeholder=
"请选择指定银行"
:code=
"codes.avbwth"
>
</c-select>
</el-form-item>
...
...
src/views/Business/Letsel/Sel.vue
View file @
6e52e28e
...
...
@@ -255,13 +255,13 @@ export default {
{
title
:
"Pre-Advising/Notifying"
,
url
:
"/business/letrsv"
,
disabled
:
false
,
disabled
:
this
.
model
.
ledgrp
.
rec
.
ownref
?
true
:
false
,
},
{
title
:
"Advising/Confirming"
,
url
:
"/business/letopn"
,
hotsubx
:
"6"
,
disabled
:
false
,
disabled
:
this
.
model
.
ledgrp
.
rec
.
ownref
?
true
:
false
,
},
{
title
:
"Reservation"
,
url
:
"#"
,
disabled
:
false
},
{
title
:
"Resevation & Receving Docs"
,
url
:
"#"
,
disabled
:
false
},
...
...
@@ -270,7 +270,7 @@ export default {
title
:
"Amending Issuing Bank"
,
url
:
"/business/letame"
,
hotsubx
:
"6"
,
disabled
:
fals
e
,
disabled
:
this
.
model
.
ledgrp
.
rec
.
ownref
?
false
:
tru
e
,
},
{
title
:
"Changing Issuing Bank"
,
...
...
src/views/Business/Letsel/SelMune.vue
View file @
6e52e28e
...
...
@@ -9,6 +9,7 @@
<el-table-column
prop=
"title"
align=
"center"
>
<template
slot-scope=
"scope"
>
<c-button
class=
"c_button_style"
@
click
.
native=
"onNarBtnClick(scope.row.url, scope.row.hotsubx)"
:title=
"scope.row.title"
:disabled=
"scope.row.disabled"
...
...
@@ -52,11 +53,8 @@ export default {
</
script
>
<
style
>
a
{
text-decoration-line
:
none
;
color
:
#606266
;
}
a
:hover
{
color
:
blue
;
.c_button_style
{
border
:
0px
;
border-radius
:
5px
;
}
</
style
>
\ No newline at end of file
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