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
9a07cee0
Commit
9a07cee0
authored
Jul 04, 2022
by
wangren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Litcan 交易转化
parent
1df38196
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
794 additions
and
27 deletions
+794
-27
Default.js
src/model/Litame/Default.js
+1
-0
Check.js
src/model/Litcan/Check.js
+2
-0
Default.js
src/model/Litcan/Default.js
+7
-0
Event.js
src/model/Litcan/Event.js
+230
-1
Pattern.js
src/model/Litcan/Pattern.js
+107
-0
index.js
src/model/Litcan/index.js
+60
-1
Pattern.js
src/model/Litopn/Pattern.js
+6
-6
index.js
src/model/Public/Liaall/index.js
+1
-0
BusRouter.js
src/views/Business/BusRouter.js
+5
-0
Amep.vue
src/views/Business/Litame/Amep.vue
+13
-2
index.vue
src/views/Business/Litame/index.vue
+1
-7
Canp.vue
src/views/Business/Litcan/Canp.vue
+0
-0
Shisuan.vue
src/views/Business/Litcan/Shisuan.vue
+275
-0
index.vue
src/views/Business/Litcan/index.vue
+84
-8
Ovwp.vue
src/views/Business/Litopn/Ovwp.vue
+2
-2
No files found.
src/model/Litame/Default.js
View file @
9a07cee0
...
...
@@ -153,5 +153,6 @@ export default {
"trnmod.swiadd.purpos"
:
Utils
.
defaultFunction
,
"mtabut.coninf.conexedat"
:
Utils
.
defaultFunction
,
"trnmod.swiadd.newnomton"
:
Utils
.
defaultFunction
,
"litamep.engamt"
:
Utils
.
defaultFunction
}
//你可以添加自动default处理
src/model/Litcan/Check.js
View file @
9a07cee0
...
...
@@ -4,6 +4,8 @@ import Utils from "~/utils"
* Litcan Check规则
*/
let
checkObj
=
{
"sndmsg"
:
null
,
"litcanf.strinf"
:
null
,
}
for
(
const
key
in
checkObj
)
{
...
...
src/model/Litcan/Default.js
View file @
9a07cee0
...
...
@@ -6,5 +6,12 @@ import Api from "~/service/Api";
import
Utils
from
"~/utils/index"
export
default
{
"lidgrp.rec.expdat"
:
Utils
.
defaultFunction
,
"litcanf.strinf"
:
Utils
.
defaultFunction
,
"lidgrp.cbs.opn1.amt"
:
Utils
.
defaultFunction
,
"lidgrp.adv.pts.nam"
:
Utils
.
defaultFunction
,
"lidgrp.ben.pts.nam"
:
Utils
.
defaultFunction
,
"lidgrp.rec.ownref"
:
Utils
.
defaultFunction
,
"lidgrp.apl.pts.nam"
:
Utils
.
defaultFunction
,
}
//你可以添加自动default处理
src/model/Litcan/Event.js
View file @
9a07cee0
...
...
@@ -2,5 +2,233 @@ import Api from "~/service/Api"
import
Utils
from
"~/utils"
export
default
{
async
onSav
(){
let
rtnmsg
=
await
this
.
executeRule
(
"sav"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onUsrcon
(){
let
rtnmsg
=
await
this
.
executeRule
(
"usrcon"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onChk
(){
let
rtnmsg
=
await
this
.
executeRule
(
"chk"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onUsrchk
(){
let
rtnmsg
=
await
this
.
executeRule
(
"usrchk"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onSyswrnButshw
(){
let
rtnmsg
=
await
this
.
executeRule
(
"syswrn.butshw"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onDiasel
(){
let
rtnmsg
=
await
this
.
executeRule
(
"diasel"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInc
(){
let
rtnmsg
=
await
this
.
executeRule
(
"inc"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onNotmap
(){
let
rtnmsg
=
await
this
.
executeRule
(
"notmap"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onIlccanletButtxmsel
(){
let
rtnmsg
=
await
this
.
executeRule
(
"ilccanlet.buttxmsel"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onFrmbut
(){
let
rtnmsg
=
await
this
.
executeRule
(
"frmbut"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onOrd
(){
let
rtnmsg
=
await
this
.
executeRule
(
"ord"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onIncben
(){
let
rtnmsg
=
await
this
.
executeRule
(
"incben"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onImgmodImage
(){
let
rtnmsg
=
await
this
.
executeRule
(
"imgmod.image"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onImgmodNewimg
(){
let
rtnmsg
=
await
this
.
executeRule
(
"imgmod.newimg"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onImgmodNewhisimg
(){
let
rtnmsg
=
await
this
.
executeRule
(
"imgmod.newhisimg"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onImgmodElcimage
(){
let
rtnmsg
=
await
this
.
executeRule
(
"imgmod.elcimage"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onEntmodEntbut
(){
let
rtnmsg
=
await
this
.
executeRule
(
"entmod.entbut"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onPen
(){
let
rtnmsg
=
await
this
.
executeRule
(
"pen"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onCan
(){
let
rtnmsg
=
await
this
.
executeRule
(
"can"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
}
\ No newline at end of file
src/model/Litcan/Pattern.js
View file @
9a07cee0
export
default
{
"litp0.recget.sdamod.dadsnd"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"lidgrp.rec.ownref"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"litp0.recget.sdamod.seainf"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"lidgrp.rec.nam"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
40
,
message
:
"长度不能超过40"
}
],
"lidgrp.cbs.nom1.amt"
:[
{
type
:
"number"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
18
,
message
:
"整数位不能超过14位"
},
{
pattern
:
/
(
^
\d
+$
)
|
(
^
\.\d{1,3}
$
)
|
(
^
\d
+
\.\d{1,3}
$
)
/
,
message
:
"小数位不能超过3位"
}
],
"lidgrp.apl.pts.ref"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"lidgrp.cbs.opn1.cur"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
3
,
message
:
"长度不能超过3"
}
],
"lidgrp.cbs.opn1.amt"
:[
{
type
:
"number"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
18
,
message
:
"整数位不能超过14位"
},
{
pattern
:
/
(
^
\d
+$
)
|
(
^
\.\d{1,3}
$
)
|
(
^
\d
+
\.\d{1,3}
$
)
/
,
message
:
"小数位不能超过3位"
}
],
"lidgrp.apl.pts.nam"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
40
,
message
:
"长度不能超过40"
}
],
"lidgrp.avbnam"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
40
,
message
:
"长度不能超过40"
}
],
"lidgrp.ben.pts.ref"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"lidgrp.ben.pts.nam"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
40
,
message
:
"长度不能超过40"
}
],
"lidgrp.rec.opndat"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"输入正确的日期"
}
],
"lidgrp.rec.shpdat"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"输入正确的日期"
}
],
"lidgrp.adv.pts.ref"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
16
,
message
:
"长度不能超过16"
}
],
"lidgrp.rec.expdat"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"输入正确的日期"
}
],
"lidgrp.rec.expplc"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
29
,
message
:
"长度不能超过29"
}
],
"lidgrp.adv.pts.nam"
:[
{
type
:
"string"
,
required
:
false
,
message
:
"必输项"
},
{
max
:
40
,
message
:
"长度不能超过40"
}
],
"litcanf.strinf"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
50
,
message
:
"长度不能超过50"
}
],
}
\ No newline at end of file
src/model/Litcan/index.js
View file @
9a07cee0
import
Api
from
"~/service/Api"
import
Pts
from
"../Common/Pts"
import
Pub
from
"../Public"
export
default
class
Litcan
{
constructor
()
{
this
.
data
=
{
litapll1blk
:
""
,
litrmbl3blk
:
""
,
litcanl1blk
:
""
,
trnmod
:
new
Pub
().
data
.
Trnmod
,
setmod
:
new
Pub
().
data
.
Setmod
,
mtabut
:
new
Pub
().
data
.
Mtabut
,
lidgrp
:{
rec
:{
ownref
:
""
,
// 参考号 .lidgrp.rec.ownref
nam
:
""
,
// 名称 .lidgrp.rec.nam
avbby
:
""
,
// 兑付方式 .lidgrp.rec.avbby
redclsflg
:
""
,
// Red/Green Clause .lidgrp.rec.redclsflg
opndat
:
""
,
// 开立日期 .lidgrp.rec.opndat
shpdat
:
""
,
// Shipment Date .lidgrp.rec.shpdat
expdat
:
""
,
// 到期日 .lidgrp.rec.expdat
expplc
:
""
,
// 到期日 .lidgrp.rec.expplc
lcrtyp
:
""
,
// 信用证类型 .lidgrp.rec.lcrtyp
revflg
:
""
,
// Revolving Flag .lidgrp.rec.revflg
},
cbs
:{
nom1
:{
cur
:
""
,
// 开证金额 .lidgrp.cbs.nom1.cur
amt
:
""
,
// 开证金额 .lidgrp.cbs.nom1.amt
},
opn1
:{
cur
:
""
,
// 信用证余额 .lidgrp.cbs.opn1.cur
amt
:
""
,
// Balance .lidgrp.cbs.opn1.amt
},
},
apl
:{
pts
:
new
Pts
().
data
,
},
ben
:{
pts
:
new
Pts
().
data
,
},
adv
:{
pts
:
new
Pts
().
data
,
},
avbnam
:
""
,
// 指定银行 .lidgrp.avbnam
},
litp0
:{
recget
:{
sdamod
:{
seainf
:
""
,
// .litp0.recget.sdamod.seainf
dadsnd
:
""
,
// Drag Drop Sender .litp0.recget.sdamod.dadsnd
},
},
aammod
:{
addamtflg
:
""
,
// Add. Amount .litp0.aammod.addamtflg
},
thdate
:
""
,
// 提货日期/服务提供日 .litp0.thdate
},
litcanf
:{
strinf
:
""
,
// Narrative .litcanf.strinf
},
byinst
:
""
,
// On Applicant instruction .byinst
sndmsg
:
""
,
// Send message to apllicant .sndmsg
liaall
:
new
Pub
().
data
.
Liaall
,
pageId
:
""
// ctx的key
}
}
...
...
src/model/Litopn/Pattern.js
View file @
9a07cee0
...
...
@@ -62,14 +62,14 @@ export default {
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
35
,
message
:
"长度不能超过35"
}
],
"lidgrp.rec.nomtop"
:[
{
type
:
"number"
,
required
:
false
,
message
:
""
},
//
"lidgrp.rec.nomtop":[
//
{type: "number", required: false, message: ""},
],
"lidgrp.rec.nomton"
:[
{
type
:
"number"
,
required
:
false
,
message
:
""
},
//
],
//
"lidgrp.rec.nomton":[
//
{type: "number", required: false, message: ""},
],
//
],
"lidgrp.apl.adrelc"
:[
{
type
:
"string"
,
required
:
true
,
message
:
"必输项"
},
{
max
:
35
,
message
:
"长度不能超过35"
}
...
...
src/model/Public/Liaall/index.js
View file @
9a07cee0
...
...
@@ -67,6 +67,7 @@ export default class Liaall {
chgcurflg
:
""
,
// Change currency flag .liaall.liaccv.chgcurflg
pctresamt
:
""
,
// reserve amount based percent .liaall.liaccv.pctresamt
liaccvg
:
[],
stgstm
:[],
},
}
}
...
...
src/views/Business/BusRouter.js
View file @
9a07cee0
...
...
@@ -164,6 +164,8 @@ import Litrog from "./Litrog"
import
Litacp
from
"./Litacp"
import
Litdla
from
"./Litdla"
/**
* 带有name的才会被添加进顶部的标签页里
*/
...
...
@@ -338,5 +340,7 @@ const BusRouter = [
{
path
:
'Litrog'
,
component
:
Litrog
,
name
:
'Litrog'
,
meta
:
{
title
:
'进口信用证提货担保'
}
},
{
path
:
'Litacp'
,
component
:
Litacp
,
name
:
'Litacp'
,
meta
:
{
title
:
'进口信用证减额修改接受'
}
},
{
path
:
'Litdla'
,
component
:
Litdla
,
name
:
'Litdla'
,
meta
:
{
title
:
'进口信用证减额修改接受'
}
},
]
export
default
BusRouter
\ No newline at end of file
src/views/Business/Litame/Amep.vue
View file @
9a07cee0
...
...
@@ -83,7 +83,9 @@
<c-col
:span=
"12"
>
<el-form-item
label=
"Amended Amount"
prop=
"trnmod.swiadd.ameamt"
>
<c-input
v-model=
"model.trnmod.swiadd.ameamt"
placeholder=
"请输入增减金额"
></c-input>
<c-input
v-model=
"model.trnmod.swiadd.ameamt"
placeholder=
"请输入增减金额"
@
keyup
.
enter
.
native=
"amendfunc"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
...
...
@@ -358,7 +360,16 @@ export default {
}
},
methods
:{...
Event
},
methods
:{...
Event
,
async
amendfunc
(){
let
rtnmsg
=
await
this
.
executeRule
(
"trnmod.swiadd.ameamt"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
){
this
.
updateModel
(
rtnmsg
.
data
);
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
}
},
created
:
function
(){
}
...
...
src/views/Business/Litame/index.vue
View file @
9a07cee0
...
...
@@ -5,13 +5,7 @@
:handleCheck=
"handleCheck"
:handleStash=
"handleStash"
>
<el-button
size=
"small"
>
备忘录
</el-button>
<el-button
size=
"small"
>
影像信息
</el-button>
<el-button
size=
"small"
>
保存模板
</el-button>
<el-button
size=
"small"
>
使用模板
</el-button>
<el-button
size=
"small"
>
制裁信息
</el-button>
<el-button
size=
"small"
>
拆分报文
</el-button>
<el-button
size=
"small"
>
提示
</el-button>
</c-function-btn>
<el-form
:model=
"model"
:rules=
"rules"
ref=
"modelForm"
label-width=
"150px"
label-position=
"right"
size=
"small"
:validate-on-rule-change=
"false"
>
<c-tabs
v-model=
"tabVal"
ref=
"elment"
type=
"card"
@
tab-click=
"myTabClick"
>
...
...
src/views/Business/Litcan/Canp.vue
0 → 100644
View file @
9a07cee0
This diff is collapsed.
Click to expand it.
src/views/Business/Litcan/Shisuan.vue
0 → 100644
View file @
9a07cee0
<
template
>
<div
class=
"eibs-tab"
>
<c-col
:span=
"24"
>
<div
class=
"e-table-wrapper"
>
<c-table
:list=
"this.model.liaall.limmod.limpfp.clmcbe || []"
style=
"width: 100%"
>
<el-table-column
prop=
"limtyp"
label=
"Limit Type"
sortable
width=
"120"
>
</el-table-column>
<el-table-column
prop=
"cur"
label=
"业务币种"
sortable
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"cbeamt"
label=
"业务发生额"
sortable
width=
"120"
>
</el-table-column>
<el-table-column
prop=
"reqtyp1"
label=
"Req.Typel"
sortable
width=
"120"
>
</el-table-column>
<el-table-column
prop=
"limcbeamt"
label=
"额度发生额"
sortable
width=
"120"
>
</el-table-column>
<el-table-column
prop=
"reqtyp2"
label=
"Req.Type2"
sortable
width=
"120"
>
</el-table-column>
<el-table-column
prop=
"ckcbeamt"
label=
"敞口发生额"
sortable
width=
"120"
>
</el-table-column>
<el-table-column
prop=
"credat"
label=
"额度日期"
sortable
width=
"180"
>
</el-table-column>
<el-table-column
prop=
"ptyextkey"
label=
"客户编号"
sortable
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"ptynam"
label=
"客户名称"
sortable
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"ownref"
label=
"业务编号"
sortable
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"ccvbl"
label=
"合同保证金比例"
sortable
width=
"150"
>
</el-table-column>
<el-table-column
prop=
"limvar"
label=
"额度类型"
sortable
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"dgzylimref"
label=
"额度编号"
sortable
width=
"100"
>
</el-table-column>
</c-table>
</div>
</c-col>
<c-col
:span=
"24"
>
<div
class=
"e-table-wrapper"
>
<c-table
:list=
"this.model.liaall.limmod.limpfp.clmcbb || []"
style=
"width: 100%"
>
<el-table-column
prop=
"dgzylimvar"
label=
"额度品种"
sortable
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"tzhamt"
label=
"调整后业务余额"
sortable
width=
"150"
>
</el-table-column>
<el-table-column
prop=
"tzhccv"
label=
"调整后保证金比例"
sortable
width=
"150"
>
</el-table-column>
<el-table-column
prop=
"tzhlimamt"
label=
"调整后拟占用额度"
sortable
width=
"150"
>
</el-table-column>
<el-table-column
prop=
"tzhlimck"
label=
"调整后拟占用敞口"
sortable
width=
"150"
>
</el-table-column>
<el-table-column
prop=
"tzqamt"
label=
"调整前业务余额"
sortable
width=
"150"
>
</el-table-column>
<el-table-column
prop=
"tzqccv"
label=
"调整后保证金比例"
sortable
width=
"150"
>
</el-table-column>
<el-table-column
prop=
"tzqlimamt"
label=
"调整前已占用额度"
sortable
width=
"150"
>
</el-table-column>
<el-table-column
prop=
"tzqlimck"
label=
"调整前已占用敞口"
sortable
width=
"150"
>
</el-table-column>
</c-table>
</div>
</c-col>
<c-col
:span=
"24"
>
<div
class=
"e-table-wrapper"
>
<c-table
:list=
"this.model.liaall.limmod.limpfp.clmpty || []"
style=
"width: 100%"
>
<el-table-column
prop=
"limvar"
label=
"额度类型"
sortable
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"dgzylimvar"
label=
"额度品种"
sortable
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"dglimcur"
label=
"额度币种"
sortable
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"dgsxlimamt"
label=
"授信额度"
sortable
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"dgyylimamt"
label=
"已用额度"
sortable
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"dgkylimamt"
label=
"可用额度"
sortable
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"dgcklimamt"
label=
"授信敞口"
sortable
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"dgyylimck"
label=
"已用敞口"
sortable
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"dgkylimck"
label=
"可用敞口"
sortable
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"dghfxh"
label=
"恢复序号"
sortable
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"dgzylimref"
label=
"额度编号"
sortable
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"dgzyliminfref"
label=
"额度明细编号"
sortable
width=
"120"
>
</el-table-column>
<el-table-column
prop=
"dgccvbl"
label=
"保证金比例"
sortable
width=
"120"
>
</el-table-column>
</c-table>
</div>
</c-col>
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litdla/Event"
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
data
(){
return
{
}
},
methods
:{...
Event
},
created
:
function
(){
}
}
</
script
>
<
style
>
</
style
>
src/views/Business/Litcan/index.vue
View file @
9a07cee0
<
template
>
<div
class=
"eContainer"
>
<el-form
:model=
"model"
:rules=
"rules"
ref=
"modelForm"
label-width=
"150px"
label-position=
"left"
size=
"small"
:validate-on-rule-change=
"false"
>
<c-function-btn
:handleSubmit=
"handleSubmit"
:handleCheck=
"handleCheck"
:handleStash=
"handleStash"
>
</c-function-btn>
<el-form
:model=
"model"
:rules=
"rules"
ref=
"modelForm"
label-width=
"150px"
label-position=
"right"
size=
"small"
:validate-on-rule-change=
"false"
>
<c-tabs
v-model=
"tabVal"
ref=
"elment"
type=
"card"
@
tab-click=
"tabClick"
>
</c-tabs>
<!--PD000003 -->
<el-tab-pane
label=
"Cancelation"
name=
"canp"
>
<m-canp
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<el-tab-pane
label=
"Liability"
name=
"engp"
>
<m-engp
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<el-tab-pane
label=
"Cash Cover"
name=
"ccvpan"
>
<m-ccvpan
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<el-tab-pane
label=
"Settlement"
name=
"setpan"
>
<m-setpan
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<el-tab-pane
label=
"Booking"
name=
"glepan"
>
<m-glepan
:model=
"model"
:code=
"codes"
/>
</el-tab-pane>
<el-tab-pane
label=
"Completion"
name=
"coninfp"
>
<m-coninfp
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<el-tab-pane
label=
"Message"
name=
"docpan"
>
<m-docpan
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<el-tab-pane
label=
"Attachments"
name=
"doctre"
>
<m-doctre
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<!--PD001139 -->
<el-tab-pane
label=
"试算结果"
name=
"shisuan"
>
<m-shisuan
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<el-tab-pane
label=
"统一授信"
name=
"limitbody"
>
<m-limitbody
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
</c-tabs>
</el-form>
</div>
</
template
>
...
...
@@ -11,42 +61,68 @@ import Api from "~/service/Api"
import
CodeTable
from
"~/config/CodeTable"
import
Litcan
from
"~/model/Litcan"
import
commonProcess
from
"~/mixin/commonProcess"
import
commonFuncs
from
"~/mixin/commonFuncs"
import
Check
from
"~/model/Litcan/Check"
import
Default
from
"~/model/Litcan/Default"
import
Pattern
from
"~/model/Litcan/Pattern"
import
Canp
from
"./Canp"
import
Shisuan
from
"./Shisuan"
import
Engp
from
"~/views/Public/Engp"
;
import
Ccvpan
from
"~/views/Public/Ccvpan"
;
import
Coninfp
from
"~/views/Public/Coninfp"
;
import
Setpan
from
"~/views/Public/Setpan"
;
import
Docpan
from
"~/views/Public/Docpan"
;
import
Doctre
from
"~/views/Public/Doctre"
;
import
Glepan
from
"~/views/Public/Glepan"
;
import
Limitbody
from
"~/views/Public/Limitbody"
;
export
default
{
name
:
"Litcan"
,
components
:{
"m-canp"
:
Canp
,
"m-shisuan"
:
Shisuan
,
"m-engp"
:
Engp
,
"m-ccvpan"
:
Ccvpan
,
"m-setpan"
:
Setpan
,
"m-coninfp"
:
Coninfp
,
"m-docpan"
:
Docpan
,
"m-doctre"
:
Doctre
,
"m-limitbody"
:
Limitbody
,
"m-glepan"
:
Glepan
,
},
provide
()
{
return
{
root
:
this
}
},
mixins
:
[
commonProcess
],
// 里面包含了Default、Check等的公共处理
mixins
:
[
commonProcess
,
commonFuncs
],
// 里面包含了Default、Check等的公共处理
data
(){
return
{
tabVal
:
""
,
tabVal
:
"
canp
"
,
trnName
:
"litcan"
,
model
:
new
Litcan
().
data
,
checkRules
:
Check
,
defaultRules
:
Default
,
pattern
:
Pattern
,
rules
:
null
,
codes
:
{
codes
:
{
...
CodeTable
},
}
},
methods
:{
tabClick
(){
}
// tabClick(tab){
// this.tabClick(tab)
// /**
// * do it yourself
// **/
// }
},
created
:
async
function
(){
console
.
log
(
"进入litcan交易"
);
let
rtnmsg
=
await
this
.
init
({})
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
this
.
updateModel
(
rtnmsg
.
data
)
//TODO 处理数据逻辑
}
...
...
src/views/Business/Litopn/Ovwp.vue
View file @
9a07cee0
...
...
@@ -29,7 +29,7 @@
style=
"margin: 0 0"
size=
"small"
type=
"primary"
:disabled=
"this.flag"
:disabled=
"this.flag
1
"
@
click=
"onLitpButgetref"
>
获取
...
...
@@ -718,7 +718,7 @@ export default {
}
},
computed
:
{
flag
()
{
flag
1
()
{
return
this
.
model
.
lidgrp
.
apl
.
pts
.
extkey
==
""
;
},
},
...
...
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