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
dea7417b
Commit
dea7417b
authored
Jul 18, 2022
by
Eivi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bftdcr、bftsnd交易bug修改
parent
7785aee3
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
33 additions
and
8 deletions
+33
-8
Betdcrd.vue
src/views/Business/Bftdcr/Betdcrd.vue
+1
-0
Rgfp.vue
src/views/Business/Bftsnd/Rgfp.vue
+12
-1
Detp.vue
src/views/Business/Letrsv/Detp.vue
+1
-0
Ovwp.vue
src/views/Business/Letrsv/Ovwp.vue
+11
-6
Ptyp.vue
src/views/Business/Letrsv/Ptyp.vue
+1
-0
Spcbenp.vue
src/views/Business/Letrsv/Spcbenp.vue
+1
-0
Spcrcvp.vue
src/views/Business/Letrsv/Spcrcvp.vue
+1
-0
index.vue
src/views/Business/Letrsv/index.vue
+5
-1
No files found.
src/views/Business/Bftdcr/Betdcrd.vue
View file @
dea7417b
...
...
@@ -225,6 +225,7 @@ export default {
},
set
(
val
)
{
this
.
model
.
bfdgrp
.
blk
.
docdisflg
=
val
?
"X"
:
""
;
this
.
model
.
bfdgrp
.
blk
.
docdis
=
""
;
},
},
...
...
src/views/Business/Bftsnd/Rgfp.vue
View file @
dea7417b
...
...
@@ -327,7 +327,7 @@
:list=
"this.model.bftp.docgrdm.docgrd || []"
:paginationShow=
"false"
:border=
"true"
@
c
hange=
"executeDefault('bfdgrp.blk.prsdoc')
"
@
c
lick=
"prsdoc
"
>
<el-table-column
label=
"1st"
width=
"auto"
>
<template
slot-scope=
"scope"
>
...
...
@@ -865,7 +865,18 @@ export default {
// break;
// }
// }
},
//表格输入传入数据库
async
prsdoc
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"bfdgrp.blk.prsdoc"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
this
.
model
.
bfdgrp
.
blk
.
prsdoc
=
rtnmsg
.
data
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
},
created
:
function
()
{},
};
...
...
src/views/Business/Letrsv/Detp.vue
View file @
dea7417b
...
...
@@ -176,6 +176,7 @@
style=
"margin-left: 10px; padding: 0 10px"
size=
"small"
type=
"primary"
disabled
>
...
</c-button>
...
...
src/views/Business/Letrsv/Ovwp.vue
View file @
dea7417b
...
...
@@ -348,13 +348,15 @@
</c-col>
<c-col
:span=
"24"
>
<c-col
:span=
"12"
style=
"margin-left: 150px"
>
<c-col
:span=
"12"
>
<el-form-item
label=
""
prop=
"letp.aamp.aammod.addamtflg"
>
<c-checkbox
:disabled=
"true"
v-model=
"model.ledgrp.rec.collflg"
>
Collateralized L/C
</c-checkbox
>
</el-form-item>
</c-col>
<c-col
:span=
"12"
style=
"margin-right: -150px"
>
<c-col
:span=
"12"
>
<el-form-item
label=
""
prop=
"letp.aamp.aammod.addamtflg"
>
<c-checkbox
v-model=
"model.letp.aamp.aammod.addamtflg"
>
Add. Amount
</c-checkbox>
</el-form-item>
...
...
@@ -362,11 +364,14 @@
</c-col>
<c-col
:span=
"24"
>
<c-col
:span=
"12"
style=
"margin-left: 150px"
>
<c-col
:span=
"12"
>
<el-form-item
label=
""
prop=
"ledgrp.rec.inctrf"
>
<c-checkbox
v-model=
"model.ledgrp.rec.inctrf"
disabled
>
Incoming Transfer
</c-checkbox>
</el-form-item>
</c-col>
<c-col
:span=
"12"
style=
"margin-right: -150px"
>
<c-col
:span=
"12"
>
<el-form-item
label=
""
prop=
"ledgrp.rec.resflg"
>
<c-checkbox
v-model=
"resflg"
>
Reserved Contract
</c-checkbox>
</el-form-item>
...
...
@@ -521,14 +526,14 @@ export default {
this
.
model
.
ledgrp
.
rec
.
nonban
=
val
?
"X"
:
""
;
},
},
teskeyunc
:{
teskeyunc
:
{
get
()
{
return
this
.
model
.
ledgrp
.
rec
.
teskeyunc
!=
""
;
},
set
(
val
)
{
this
.
model
.
ledgrp
.
rec
.
teskeyunc
=
val
?
"X"
:
""
;
},
}
}
,
},
methods
:
{
...
Event
,
...
...
src/views/Business/Letrsv/Ptyp.vue
View file @
dea7417b
...
...
@@ -39,6 +39,7 @@
style=
"width: 100%"
placeholder=
"Please select Confirm. Instruct. to 2nd Adv. Bank"
:code=
"codes.cnfins"
disabled
>
</c-select>
</el-form-item>
...
...
src/views/Business/Letrsv/Spcbenp.vue
View file @
dea7417b
...
...
@@ -19,6 +19,7 @@
style=
"margin-left: 10px; padding: 0 10px"
size=
"small"
type=
"primary"
disabled
>
...
</c-button>
...
...
src/views/Business/Letrsv/Spcrcvp.vue
View file @
dea7417b
...
...
@@ -19,6 +19,7 @@
style=
"margin-left: 10px; padding: 0 10px"
size=
"small"
type=
"primary"
disabled
>
...
</c-button>
...
...
src/views/Business/Letrsv/index.vue
View file @
dea7417b
...
...
@@ -77,7 +77,7 @@
</el-tab-pane>
<!--PD000546 -->
<el-tab-pane
label=
"Attachments"
name=
"doctre"
>
<el-tab-pane
label=
"Attachments"
name=
"doctre"
v-if=
"attachments"
>
<m-doctre
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
...
...
@@ -162,11 +162,15 @@ export default {
codes
:
{
...
CodeTable
},
attachments
:
false
}
},
methods
:{
myTabClick
(
tab
){
this
.
tabClick
(
tab
)
if
(
tab
.
name
===
'setpan'
)
{
this
.
attachments
=
true
}
/**
* do it yourself
**/
...
...
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