Commit 131c1cea by liyixun

getamt (bug870)

parent e03530ab
......@@ -91,12 +91,12 @@
<c-col :span="24">
<el-form-item
label="Old appr. Expiry Date"
prop="trnmod.swiadd.newdtaappexpdat"
prop="oldgidgrp.blk.dtaappexpdat"
>
<c-date-picker
disabled
type="date"
v-model="model.trnmod.swiadd.newdtaappexpdat"
v-model="model.oldgidgrp.blk.dtaappexpdat"
style="width: 100%"
placeholder="请选择"
></c-date-picker>
......@@ -122,7 +122,11 @@
prop="trnmod.swiadd.newexpdat"
>
<c-date-picker
disabled
:disabled="
model.trnmod.swiadd.exptyp == 'OPEN' ||
(model.trnmod.swiadd.exptyp == '' &&
model.oldgidgrp.rec.expdat == '')
"
type="date"
v-model="model.trnmod.swiadd.newexpdat"
style="width: 100%"
......@@ -137,12 +141,19 @@
prop="trnmod.swiadd.exptxt"
>
<c-input
:disabled="model.trnmod.swiadd.exptyp != 'COND'"
:disabled="
!(model.trnmod.swiadd.exptyp == 'COND') &&
!(
model.oldgidgrp.blk.exptxt != '' &&
model.trnmod.swiadd.exptyp == ''
)
"
type="textarea"
v-model="model.trnmod.swiadd.exptxt"
maxlength="65"
show-word-limit
placeholder="请输入New Expiry Condition"
@blur="exptxtBlur"
></c-input>
</c-form-item>
</c-col>
......@@ -154,6 +165,10 @@
prop="trnmod.swiadd.liatypc"
>
<c-select
:disabled="
model.gidgrp.rec.hndtyp != 'OC' &&
model.gidgrp.rec.purpos != 'CO'
"
:code="codes.exptyp"
v-model="model.trnmod.swiadd.liatypc"
style="width: 100%"
......@@ -189,7 +204,11 @@
prop="trnmod.swiadd.newliadat"
>
<c-date-picker
disabled
:disabled="
model.trnmod.swiadd.liatypc == 'OPEN' ||
(model.trnmod.swiadd.liatypc == '' &&
model.oldgidgrp.rec.liadat == '')
"
type="date"
v-model="model.trnmod.swiadd.newliadat"
style="width: 100%"
......@@ -204,7 +223,13 @@
prop="trnmod.swiadd.liatxtc"
>
<c-input
:disabled="model.trnmod.swiadd.liatypc != 'COND'"
:disabled="
!(model.trnmod.swiadd.liatypc == 'COND') &&
!(
model.oldgidgrp.blk.liatxtc != '' &&
model.trnmod.swiadd.liatypc == ''
)
"
type="textarea"
v-model="model.trnmod.swiadd.liatxtc"
maxlength="65"
......@@ -237,6 +262,10 @@
prop="trnmod.swiadd.newdtaappexpdat"
>
<c-date-picker
:disabled="
model.trnmod.swiadd.exptyp != 'OPEN' &&
model.oldgidgrp.rec.exptyp != 'OPEN'
"
type="date"
v-model="model.trnmod.swiadd.newdtaappexpdat"
style="width: 100%"
......@@ -254,6 +283,7 @@ import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Getame/Event";
import Utils from "~/utils";
export default {
inject: ["root"],
......@@ -262,7 +292,20 @@ export default {
data() {
return {};
},
methods: { ...Event },
methods: {
...Event,
async exptxtBlur() {
let rtnmsg = await this.executeDefault("gidgrp.blk.exptxt");
if (rtnmsg.respCode == SUCCESS) {
Utils.copyValueFromVO(this.model, rtnmsg.data);
}
let rtnmsg1 = await this.executeDefault("gidgrp.blk.atxexptxt");
if (rtnmsg1.respCode == SUCCESS) {
Utils.copyValueFromVO(this.model, rtnmsg1.data);
}
},
},
created: function () {},
};
</script>
......
<template>
<div class="eibs-tab">
<c-row>
<c-col :span="24">
<c-col :span="24">
<c-col :span="12">
<!-- 左边不为swift格式 -->
<c-col :span="24">
<c-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Reference"
prop="gidgrp.rec.ownref"
>
<c-input
disabled
v-model="model.gidgrp.rec.ownref"
maxlength="16"
placeholder="请输入Reference"
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Amendment Date"
prop="trnmod.swiadd.amedat"
>
<c-date-picker
type="date"
v-model="model.trnmod.swiadd.amedat"
style="width: 100%"
placeholder="请选择Amendment Date"
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Order From"
prop="gitamep.orddat"
>
<c-date-picker
type="date"
v-model="model.gitamep.orddat"
style="width: 100%"
placeholder="请选择Order From"
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="12">
<!-- 左边不为swift格式 -->
<c-col :span="24">
<c-form-item v-if="model.gitp.swiftflg=='N'" label="Reference" prop="gidgrp.rec.ownref">
<c-input disabled v-model="model.gidgrp.rec.ownref" maxlength="16" placeholder="请输入Reference"></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="Amendment Date" prop="trnmod.swiadd.amedat">
<c-date-picker type="date" v-model="model.trnmod.swiadd.amedat" style="width:100%" placeholder="请选择Amendment Date"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="Order From" prop="gitamep.orddat">
<c-date-picker type="date" v-model="model.gitamep.orddat" style="width:100%" placeholder="请选择Order From"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="12">
<c-form-item v-if="model.gitp.swiftflg=='N'" label="Old Guarantee Amt." prop="oldgidgrp.cbs.max.cur">
<c-input disabled v-model="model.oldgidgrp.cbs.max.cur" maxlength="3" placeholder="请输入Old Guarantee Amt."></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item v-if="model.gitp.swiftflg=='N'" label-width="5px" prop="oldgidgrp.cbs.max.amt">
<c-input disabled v-model="model.oldgidgrp.cbs.max.amt" placeholder="请输入Balance"></c-input>
</c-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="12">
<c-form-item v-if="model.gitp.swiftflg=='N'" label="Amended" prop="trnmod.swiadd.amecur">
<c-input disabled v-model="model.trnmod.swiadd.amecur" maxlength="3" placeholder="请输入Amended"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item v-if="model.gitp.swiftflg=='N'" label-width="5px" prop="trnmod.swiadd.ameamt">
<c-input v-model="model.trnmod.swiadd.ameamt" placeholder="请输入Amended Amount" @blur="ameamtBlur"></c-input>
</c-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="12">
<c-form-item v-if="model.gitp.swiftflg=='N'" label="Guarantee Amount" prop="trnmod.swiadd.newcur">
<c-input disabled v-model="model.trnmod.swiadd.newcur" maxlength="3" placeholder="请输入Guarantee Amount"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item v-if="model.gitp.swiftflg=='N'" label-width="5px" prop="trnmod.swiadd.newamt">
<c-input v-model="model.trnmod.swiadd.newamt" placeholder="请输入New amount" @blur="newamtBlur"></c-input>
</c-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="12">
<c-form-item v-if="model.gitp.swiftflg=='N'" label="Currency" prop="gidgrp.cbs.max2.cur">
<c-input disabled v-model="model.gidgrp.cbs.max2.cur" maxlength="3" placeholder="请输入Currency"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item v-if="model.gitp.swiftflg=='N'" label-width="5px" prop="trnmod.swiadd.addamt">
<c-input disabled v-model="model.trnmod.swiadd.addamt" placeholder="请输入Additional Amount"></c-input>
</c-form-item>
</c-col>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="Send Amendment to" prop="gitamep.ramrol">
<c-select v-model="model.gitamep.ramrol" :disabled="model.trnmod.swiadd.amemsgdonflg==''" style="width:100%" placeholder="请输入Request of Amendment send to">
<el-option
v-for="item in codes.ramrol"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<c-form-item v-if="model.gitp.swiftflg=='N'" label="Amounts Covered" prop="trnmod.swiadd.addamtcov">
<c-input type="textarea" v-model="model.trnmod.swiadd.addamtcov" maxlength="35" show-word-limit placeholder="请输入Amounts Covered" ></c-input>
</c-form-item>
</c-col>
<c-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Old Guarantee Amt."
prop="oldgidgrp.cbs.max.cur"
>
<c-input
disabled
v-model="model.oldgidgrp.cbs.max.cur"
maxlength="3"
placeholder="请输入Old Guarantee Amt."
></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item
v-if="model.gitp.swiftflg == 'N'"
label-width="5px"
prop="oldgidgrp.cbs.max.amt"
>
<c-input
disabled
v-model="model.oldgidgrp.cbs.max.amt"
placeholder="请输入Balance"
></c-input>
</c-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-form-item v-if="model.gitp.swiftflg=='N'" label="Amendment :77C:" prop="gitamep.ametxt">
<c-input disabled type="textarea" v-model="model.gitamep.ametxt" maxlength="65" show-word-limit placeholder="请输入Amendment :77C:" ></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-col :span="12">
<c-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Amended"
prop="trnmod.swiadd.amecur"
>
<c-input
disabled
v-model="model.trnmod.swiadd.amecur"
maxlength="3"
placeholder="请输入Amended"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item
v-if="model.gitp.swiftflg == 'N'"
label-width="5px"
prop="trnmod.swiadd.ameamt"
>
<c-input
v-model="model.trnmod.swiadd.ameamt"
placeholder="请输入Amended Amount"
@blur="ameamtBlur"
></c-input>
</c-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="12">
<c-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Guarantee Amount"
prop="trnmod.swiadd.newcur"
>
<c-input
disabled
v-model="model.trnmod.swiadd.newcur"
maxlength="3"
placeholder="请输入Guarantee Amount"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item
v-if="model.gitp.swiftflg == 'N'"
label-width="5px"
prop="trnmod.swiadd.newamt"
>
<c-input
v-model="model.trnmod.swiadd.newamt"
placeholder="请输入New amount"
@blur="newamtBlur"
></c-input>
</c-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="12">
<c-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Currency"
prop="gidgrp.cbs.max2.cur"
>
<c-input
disabled
v-model="model.gidgrp.cbs.max2.cur"
maxlength="3"
placeholder="请输入Currency"
></c-input>
</c-form-item>
</c-col>
<!-- <c-col :span="24">
<c-col :span="12">
<c-form-item
v-if="model.gitp.swiftflg == 'N'"
label-width="5px"
prop="trnmod.swiadd.addamt"
>
<c-input
disabled
v-model="model.trnmod.swiadd.addamt"
placeholder="请输入Additional Amount"
></c-input>
</c-form-item>
</c-col>
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Send Amendment to"
prop="gitamep.ramrol"
>
<c-select
v-model="model.gitamep.ramrol"
:disabled="model.trnmod.swiadd.amemsgdonflg == ''"
style="width: 100%"
placeholder="请输入Request of Amendment send to"
>
<el-option
v-for="item in codes.ramrol"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<c-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Amounts Covered"
prop="trnmod.swiadd.addamtcov"
>
<c-input
type="textarea"
v-model="model.trnmod.swiadd.addamtcov"
maxlength="35"
show-word-limit
placeholder="请输入Amounts Covered"
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Amendment :77C:"
prop="gitamep.ametxt"
>
<c-input
disabled
type="textarea"
v-model="model.gitamep.ametxt"
maxlength="65"
show-word-limit
placeholder="请输入Amendment :77C:"
></c-input>
</c-form-item>
</c-col>
<!-- <c-col :span="24">
<c-form-item v-if="model.gitp.swiftflg=='N'" label="面函标题" prop="gitamep.mstitle">
<c-input type="textarea" v-model="model.gitamep.mstitle" maxlength="30" show-word-limit placeholder="请输入面函标题" ></c-input>
</c-form-item>
</c-col> -->
<!-- 左边为swift格式 -->
<c-col :span="24">
<c-form-item v-if="model.gitp.swiftflg=='Y'" label="Reference" prop="gidgrp.rec.ownref">
<c-input disabled v-model="model.gidgrp.rec.ownref" maxlength="16" placeholder="请输入Reference"></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='Y'" label="Inc. Purpose of amend." prop="trnmod.swiadd.purposamein">
<c-select disabled v-model="model.trnmod.swiadd.purposamein" style="width:100%" placeholder="请输入Inc. Purpose of amend.">
<el-option
v-for="item in codes.purposamein"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-show="model.gitp.swiftflg=='Y'" label="Purpose of amend." prop="trnmod.swiadd.purposame">
<c-select v-model="model.trnmod.swiadd.purposame" style="width:100%" placeholder="请输入Purpose of amend.">
<el-option
v-for="item in codes.purposame"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='Y'" label="Amendment Date" prop="trnmod.swiadd.amedat">
<c-date-picker type="date" v-model="model.trnmod.swiadd.amedat" style="width:100%" placeholder="请选择Amendment Date"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='Y'" label="Order from" prop="trnmod.swiadd.orddat">
<c-date-picker type="date" v-model="model.trnmod.swiadd.orddat" style="width:100%" placeholder="请选择Order from"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<c-form-item v-if="model.gitp.swiftflg=='Y'" label="Amend. No Receiv." prop="trnmod.swiadd.amenbr">
<c-input disabled v-model="model.trnmod.swiadd.amenbr" placeholder="请输入Amend. No Receiv."></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item v-if="model.gitp.swiftflg=='Y'" label="Actual Amendment No " prop="gidgrp.rec.amenbr">
<c-input v-model="model.gidgrp.rec.amenbr" placeholder="请输入Actual Amendment No "></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-col :span="12">
<c-form-item v-if="model.gitp.swiftflg=='Y'" label="Old Guarantee Amt." prop="oldgidgrp.cbs.max.cur">
<c-input disabled v-model="model.oldgidgrp.cbs.max.cur" maxlength="3" placeholder="请输入Old Guarantee Amt."></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item v-if="model.gitp.swiftflg=='Y'" label-width="5px" prop="oldgidgrp.cbs.max.amt">
<c-input disabled v-model="model.oldgidgrp.cbs.max.amt" placeholder="请输入Balance"></c-input>
</c-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="12">
<c-form-item v-if="model.gitp.swiftflg=='Y'" label="Amended" prop="trnmod.swiadd.amecur">
<c-input disabled v-model="model.trnmod.swiadd.amecur" maxlength="3" placeholder="请输入Amended"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item v-if="model.gitp.swiftflg=='Y'" label-width="5px" prop="trnmod.swiadd.ameamt">
<c-input v-model="model.trnmod.swiadd.ameamt" placeholder="请输入Amended Amount" @blur="ameamtBlur"></c-input>
</c-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="12">
<c-form-item v-if="model.gitp.swiftflg=='Y'" label="Guarantee Amount" prop="trnmod.swiadd.newcur">
<c-input disabled v-model="model.trnmod.swiadd.newcur" maxlength="3" placeholder="请输入Guarantee Amount"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item v-if="model.gitp.swiftflg=='Y'" label-width="5px" prop="trnmod.swiadd.newamt">
<c-input v-model="model.trnmod.swiadd.newamt" placeholder="请输入New amount" @blur="newamtBlur"></c-input>
</c-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-form-item v-if="model.gitp.swiftflg=='Y'" label="GCDOWNREF" prop="gitamep.gcdownref">
<c-input v-model="model.gitamep.gcdownref" maxlength="16" placeholder="请输入GCDOWNREF"></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='Y'" label="Send Amendment to" prop="gitamep.ramrol">
<c-select v-model="model.gitamep.ramrol" :disabled="model.trnmod.swiadd.amemsgdonflg==''" style="width:100%" placeholder="请输入Request of Amendment send to">
<el-option
v-for="item in codes.ramrol"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='Y'" label="Reason for Reduce / Discharge" prop="trnmod.swiadd.redrea">
<c-select v-model="model.trnmod.swiadd.redrea" style="width:100%" placeholder="请输入Reason for Reduce / Discharge">
<el-option
v-for="item in codes.redrea"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
</el-form-item>
</c-col>
<!-- 左边为swift格式 -->
<c-col :span="24">
<c-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Reference"
prop="gidgrp.rec.ownref"
>
<c-input
disabled
v-model="model.gidgrp.rec.ownref"
maxlength="16"
placeholder="请输入Reference"
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Inc. Purpose of amend."
prop="trnmod.swiadd.purposamein"
>
<c-select
disabled
v-model="model.trnmod.swiadd.purposamein"
style="width: 100%"
placeholder="请输入Inc. Purpose of amend."
>
<el-option
v-for="item in codes.purposamein"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
v-show="model.gitp.swiftflg == 'Y'"
label="Purpose of amend."
prop="trnmod.swiadd.purposame"
>
<c-select
v-model="model.trnmod.swiadd.purposame"
style="width: 100%"
placeholder="请输入Purpose of amend."
:code="getValues('trnmod.swiadd.purposame')"
>
<!-- <el-option
v-for="item in codes.purposame"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option> -->
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Amendment Date"
prop="trnmod.swiadd.amedat"
>
<c-date-picker
type="date"
v-model="model.trnmod.swiadd.amedat"
style="width: 100%"
placeholder="请选择Amendment Date"
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Order from"
prop="trnmod.swiadd.orddat"
>
<c-date-picker
type="date"
v-model="model.trnmod.swiadd.orddat"
style="width: 100%"
placeholder="请选择Order from"
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<c-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Amend. No Receiv."
prop="trnmod.swiadd.amenbr"
>
<c-input
disabled
v-model="model.trnmod.swiadd.amenbr"
placeholder="请输入Amend. No Receiv."
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Actual Amendment No "
prop="gidgrp.rec.amenbr"
>
<c-input
v-model="model.gidgrp.rec.amenbr"
placeholder="请输入Actual Amendment No "
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-col :span="12">
<c-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Old Guarantee Amt."
prop="oldgidgrp.cbs.max.cur"
>
<c-input
disabled
v-model="model.oldgidgrp.cbs.max.cur"
maxlength="3"
placeholder="请输入Old Guarantee Amt."
></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item
v-if="model.gitp.swiftflg == 'Y'"
label-width="5px"
prop="oldgidgrp.cbs.max.amt"
>
<c-input
disabled
v-model="model.oldgidgrp.cbs.max.amt"
placeholder="请输入Balance"
></c-input>
</c-form-item>
</c-col>
<c-col :span="11" :offset="1">
<!-- 右边不为swift格式 -->
<c-col :span="24">
<c-form-item v-if="model.gitp.swiftflg=='N'" label="Name" prop="gidgrp.rec.nam">
<c-input disabled v-model="model.gidgrp.rec.nam" maxlength="40" placeholder="请输入name"></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item v-if="model.gitp.swiftflg=='N'" label="Amend. No Receiv." prop="trnmod.swiadd.amenbr">
<c-input v-model="model.trnmod.swiadd.amenbr" placeholder="请输入Amend. No Receiv."></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item v-if="model.gitp.swiftflg=='N'" label="Actual Amendment No" prop="gitamep.amenbr">
<c-input disabled v-model="model.gitamep.amenbr" placeholder="请输入Actual Amendment No"></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="Old Expiry Date" prop="oldgidgrp.rec.expdat">
<c-date-picker disabled type="date" v-model="model.oldgidgrp.rec.expdat" style="width:100%" placeholder="请选择Old Expiry Date"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="Liability until" prop="oldgidgrp.rec.liadat">
<c-date-picker disabled type="date" v-model="model.oldgidgrp.rec.liadat" style="width:100%" placeholder="请选择Liability until"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<c-form-item v-if="model.gitp.swiftflg=='N'" label="变更次数" prop="gitamep.amenumjmg">
<c-input disabled v-model="model.gitamep.amenumjmg" maxlength="2" placeholder="请输入变更次数"></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'&&model.trnmod.swiadd.newexpflg==''" label="New Expiry Date" prop="trnmod.swiadd.newexpdat">
<c-date-picker type="date" v-model="model.trnmod.swiadd.newexpdat" style="width:100%" placeholder="请输入New Liability Date"></c-date-picker>
</el-form-item>
<c-form-item v-if="model.gitp.swiftflg=='N'&&model.trnmod.swiadd.newexpflg=='X'" label="new expiry" prop="gitamep.expnewtxt">
<c-input :disabled="model.trnmod.swiadd.newexpflg=='X'" v-model="model.gitamep.expnewtxt" maxlength="11" placeholder="请输入new expiry"></c-input>
</c-form-item>
<!-- <el-form-item v-if="model.gitp.swiftflg=='N'" label="New Liability Date" prop="trnmod.swiadd.newliadat">
</c-col>
<c-col :span="24">
<c-col :span="12">
<c-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Amended"
prop="trnmod.swiadd.amecur"
>
<c-input
disabled
v-model="model.trnmod.swiadd.amecur"
maxlength="3"
placeholder="请输入Amended"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item
v-if="model.gitp.swiftflg == 'Y'"
label-width="5px"
prop="trnmod.swiadd.ameamt"
>
<c-input
v-model="model.trnmod.swiadd.ameamt"
placeholder="请输入Amended Amount"
@blur="ameamtBlur"
></c-input>
</c-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="12">
<c-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Guarantee Amount"
prop="trnmod.swiadd.newcur"
>
<c-input
disabled
v-model="model.trnmod.swiadd.newcur"
maxlength="3"
placeholder="请输入Guarantee Amount"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item
v-if="model.gitp.swiftflg == 'Y'"
label-width="5px"
prop="trnmod.swiadd.newamt"
>
<c-input
v-model="model.trnmod.swiadd.newamt"
placeholder="请输入New amount"
@blur="newamtBlur"
></c-input>
</c-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="GCDOWNREF"
prop="gitamep.gcdownref"
>
<c-input
v-model="model.gitamep.gcdownref"
maxlength="16"
placeholder="请输入GCDOWNREF"
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Send Amendment to"
prop="gitamep.ramrol"
>
<c-select
v-model="model.gitamep.ramrol"
:disabled="model.trnmod.swiadd.amemsgdonflg == ''"
style="width: 100%"
placeholder="请输入Request of Amendment send to"
>
<el-option
v-for="item in codes.ramrol"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Reason for Reduce / Discharge"
prop="trnmod.swiadd.redrea"
>
<c-select
v-model="model.trnmod.swiadd.redrea"
style="width: 100%"
placeholder="请输入Reason for Reduce / Discharge"
>
<el-option
v-for="item in codes.redrea"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
</el-form-item>
</c-col>
</c-col>
<c-col :span="11" :offset="1">
<!-- 右边不为swift格式 -->
<c-col :span="24">
<c-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Name"
prop="gidgrp.rec.nam"
>
<c-input
disabled
v-model="model.gidgrp.rec.nam"
maxlength="40"
placeholder="请输入name"
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Amend. No Receiv."
prop="trnmod.swiadd.amenbr"
>
<c-input
v-model="model.trnmod.swiadd.amenbr"
placeholder="请输入Amend. No Receiv."
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Actual Amendment No"
prop="gitamep.amenbr"
>
<c-input
disabled
v-model="model.gitamep.amenbr"
placeholder="请输入Actual Amendment No"
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Old Expiry Date"
prop="oldgidgrp.rec.expdat"
>
<c-date-picker
disabled
type="date"
v-model="model.oldgidgrp.rec.expdat"
style="width: 100%"
placeholder="请选择Old Expiry Date"
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Liability until"
prop="oldgidgrp.rec.liadat"
>
<c-date-picker
disabled
type="date"
v-model="model.oldgidgrp.rec.liadat"
style="width: 100%"
placeholder="请选择Liability until"
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<c-form-item
v-if="model.gitp.swiftflg == 'N'"
label="变更次数"
prop="gitamep.amenumjmg"
>
<c-input
disabled
v-model="model.gitamep.amenumjmg"
maxlength="2"
placeholder="请输入变更次数"
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<el-form-item
v-if="
model.gitp.swiftflg == 'N' &&
model.trnmod.swiadd.newexpflg == ''
"
label="New Expiry Date"
prop="trnmod.swiadd.newexpdat"
>
<c-date-picker
type="date"
v-model="model.trnmod.swiadd.newexpdat"
style="width: 100%"
placeholder="请输入New Liability Date"
></c-date-picker>
</el-form-item>
<c-form-item
v-if="
model.gitp.swiftflg == 'N' &&
model.trnmod.swiadd.newexpflg == 'X'
"
label="new expiry"
prop="gitamep.expnewtxt"
>
<c-input
:disabled="model.trnmod.swiadd.newexpflg == 'X'"
v-model="model.gitamep.expnewtxt"
maxlength="11"
placeholder="请输入new expiry"
></c-input>
</c-form-item>
<!-- <el-form-item v-if="model.gitp.swiftflg=='N'" label="New Liability Date" prop="trnmod.swiadd.newliadat">
<c-date-picker type="date" v-model="model.trnmod.swiadd.newliadat" style="width:100%" placeholder="请输入New Liability Date"></c-date-picker>
</el-form-item> -->
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="New Liability Date" prop="trnmod.swiadd.newliadat">
<c-date-picker disabled type="date" v-model="model.trnmod.swiadd.newliadat" style="width:100%" placeholder="请输入New Liability Date"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="核销日期" prop="gidgrp.rec.vrfdat">
<c-date-picker disabled type="date" v-model="model.gidgrp.rec.vrfdat" style="width:100%" placeholder="请选择核销日期"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="20">
<c-form-item v-if="model.gitp.swiftflg=='N'" label="Text for Amendments:" prop="trnmod.swiadd.ameblk">
<c-input type="textarea" rows="4" v-model="model.trnmod.swiadd.ameblk" maxlength="65" show-word-limit placeholder="请输入Text for Amendments" ></c-input>
</c-form-item>
</c-col>
<c-col :span="4">
<c-button v-if="model.gitp.swiftflg=='N'" style="margin:5px 0 0 10px" size="small" type="primary" icon="el-icon-search" @click="onAmebutButtxmsel">
...
</c-button>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="6" :offset="6">
<c-checkbox v-if="model.gitp.swiftflg=='N'" v-model="model.trnmod.swiadd.newexpflg" @change="newexpflgChange">Unlimited</c-checkbox>
</c-col>
<c-col :span="6" :offset="6">
<c-checkbox v-if="model.gitp.swiftflg=='N'" disabled v-model="model.trnmod.swiadd.newliaflg">Unlimited</c-checkbox>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="6" :offset="6">
<c-checkbox disabled v-if="model.gitp.swiftflg=='N'" v-model="model.gitamep.cre767flg">Create Amendment Message</c-checkbox>
</c-col>
<c-col :span="6" :offset="6">
<c-checkbox disabled v-if="model.gitp.swiftflg=='N'" v-model="model.gitamep.prtflg">Choose full Text</c-checkbox>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="6" :offset="6">
<c-checkbox disabled v-if="model.gitp.swiftflg=='N'" v-model="model.gitamep.clsclmflg">Close Claim</c-checkbox>
</c-col>
<!-- <c-col :span="6" :offset="6" >
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="New Liability Date"
prop="trnmod.swiadd.newliadat"
>
<c-date-picker
disabled
type="date"
v-model="model.trnmod.swiadd.newliadat"
style="width: 100%"
placeholder="请输入New Liability Date"
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="核销日期"
prop="gidgrp.rec.vrfdat"
>
<c-date-picker
disabled
type="date"
v-model="model.gidgrp.rec.vrfdat"
style="width: 100%"
placeholder="请选择核销日期"
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="20">
<c-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Text for Amendments:"
prop="trnmod.swiadd.ameblk"
>
<c-input
type="textarea"
rows="4"
v-model="model.trnmod.swiadd.ameblk"
maxlength="65"
show-word-limit
placeholder="请输入Text for Amendments"
></c-input>
</c-form-item>
</c-col>
<c-col :span="4">
<c-button
v-if="model.gitp.swiftflg == 'N'"
style="margin: 5px 0 0 10px"
size="small"
type="primary"
icon="el-icon-search"
@click="onAmebutButtxmsel"
>
...
</c-button>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="6" :offset="6">
<c-checkbox
v-if="model.gitp.swiftflg == 'N'"
v-model="model.trnmod.swiadd.newexpflg"
@change="newexpflgChange"
>Unlimited</c-checkbox
>
</c-col>
<c-col :span="6" :offset="6">
<c-checkbox
v-if="model.gitp.swiftflg == 'N'"
disabled
v-model="model.trnmod.swiadd.newliaflg"
>Unlimited</c-checkbox
>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="6" :offset="6">
<c-checkbox
disabled
v-if="model.gitp.swiftflg == 'N'"
v-model="model.gitamep.cre767flg"
>Create Amendment Message</c-checkbox
>
</c-col>
<c-col :span="6" :offset="6">
<c-checkbox
disabled
v-if="model.gitp.swiftflg == 'N'"
v-model="model.gitamep.prtflg"
>Choose full Text</c-checkbox
>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="6" :offset="6">
<c-checkbox
disabled
v-if="model.gitp.swiftflg == 'N'"
v-model="model.gitamep.clsclmflg"
>Close Claim</c-checkbox
>
</c-col>
<!-- <c-col :span="6" :offset="6" >
<c-checkbox v-if="model.gitp.swiftflg=='N'" v-model="model.gitamep.plateflg" @change="plateflgChange">保函修改面函模板</c-checkbox>
</c-col> -->
</c-col>
<!-- 右边为swift格式 -->
<c-col :span="24">
<c-form-item v-if="model.gitp.swiftflg=='Y'" label="Amendment :77C:" prop="gitamep.ametxt">
<c-input type="textarea" :disabled="model.gitamep.ametxtflg==''" v-model="model.gitamep.ametxt" rows="4" maxlength="65" show-word-limit placeholder="请输入Amendment :77C:" ></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-col :span="20">
<c-form-item v-if="model.gitp.swiftflg=='Y'" label="Text for Amendments:" prop="trnmod.swiadd.ameblk">
<c-input :disabled="model.gitamep.prtflg=='X'" type="textarea" rows="4" v-model="model.trnmod.swiadd.ameblk" maxlength="65" show-word-limit placeholder="请输入Text for Amendments" ></c-input>
</c-form-item>
</c-col>
<c-col :span="4">
<c-checkbox v-if="model.gitp.swiftflg=='Y'" style="margin:0 0 0 10px" v-model="model.gitamep.amebut.chkast">Allow</c-checkbox>
<c-button v-if="model.gitp.swiftflg=='Y'" style="margin:5px 0 0 10px" size="small" type="primary" icon="el-icon-search" @click="onAmebutButtxmsel">
...
</c-button>
</c-col>
</c-col>
<c-col :span="24">
<c-form-item v-if="model.gitp.swiftflg=='Y'" label="Additional Amount Covered" prop="trnmod.swiadd.addamtcovs20">
<c-input type="textarea" rows="4" :disabled="model.trnmod.swiadd.addamtflg==''" v-model="model.trnmod.swiadd.addamtcovs20" maxlength="65" show-word-limit placeholder="请输入Additional Amount Covered" ></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-col :span="12">
<c-form-item v-if="model.gitp.swiftflg=='Y'" label="Additional Currency" prop="trnmod.swiadd.addcur">
<c-input v-model="model.trnmod.swiadd.addcur" maxlength="3" placeholder="请输入Additional Currency"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item v-if="model.gitp.swiftflg=='Y'" label-width="5px" prop="trnmod.swiadd.addamt">
<c-input :disabled="model.trnmod.swiadd.addamtflg==''" v-model="model.trnmod.swiadd.addamt" placeholder="请输入Additional Amount"></c-input>
</c-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="6" :offset="6">
<c-checkbox v-if="model.gitp.swiftflg=='Y'" v-model="model.trnmod.swiadd.reqcan" @change="reqChange">Cancellation Request</c-checkbox>
</c-col>
<c-col :span="6" :offset="6">
<c-checkbox v-if="model.gitp.swiftflg=='Y'" v-model="model.trnmod.swiadd.amemsgdonflg">Create Amendment Message</c-checkbox>
</c-col>
<!-- <c-col :span="4" :offset="4">
</c-col>
<!-- 右边为swift格式 -->
<c-col :span="24">
<c-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Amendment :77C:"
prop="gitamep.ametxt"
>
<c-input
type="textarea"
:disabled="model.gitamep.ametxtflg == ''"
v-model="model.gitamep.ametxt"
rows="4"
maxlength="65"
show-word-limit
placeholder="请输入Amendment :77C:"
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-col :span="20">
<c-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Text for Amendments:"
prop="trnmod.swiadd.ameblk"
>
<c-input
:disabled="model.gitamep.prtflg == 'X'"
type="textarea"
rows="4"
v-model="model.trnmod.swiadd.ameblk"
maxlength="65"
show-word-limit
placeholder="请输入Text for Amendments"
></c-input>
</c-form-item>
</c-col>
<c-col :span="4">
<c-checkbox
v-if="model.gitp.swiftflg == 'Y'"
style="margin: 0 0 0 10px"
v-model="model.gitamep.amebut.chkast"
>Allow</c-checkbox
>
<c-button
v-if="model.gitp.swiftflg == 'Y'"
style="margin: 5px 0 0 10px"
size="small"
type="primary"
icon="el-icon-search"
@click="onAmebutButtxmsel"
>
...
</c-button>
</c-col>
</c-col>
<c-col :span="24">
<c-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Additional Amount Covered"
prop="trnmod.swiadd.addamtcovs20"
>
<c-input
type="textarea"
rows="4"
:disabled="model.trnmod.swiadd.addamtflg == ''"
v-model="model.trnmod.swiadd.addamtcovs20"
maxlength="65"
show-word-limit
placeholder="请输入Additional Amount Covered"
></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<c-col :span="12">
<c-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Additional Currency"
prop="trnmod.swiadd.addcur"
>
<c-input
v-model="model.trnmod.swiadd.addcur"
maxlength="3"
placeholder="请输入Additional Currency"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item
v-if="model.gitp.swiftflg == 'Y'"
label-width="5px"
prop="trnmod.swiadd.addamt"
>
<c-input
:disabled="model.trnmod.swiadd.addamtflg == ''"
v-model="model.trnmod.swiadd.addamt"
placeholder="请输入Additional Amount"
></c-input>
</c-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="6" :offset="6">
<c-checkbox
v-if="model.gitp.swiftflg == 'Y'"
v-model="model.trnmod.swiadd.reqcan"
@change="reqChange"
>Cancellation Request</c-checkbox
>
</c-col>
<c-col :span="6" :offset="6">
<c-checkbox
v-if="model.gitp.swiftflg == 'Y'"
v-model="model.trnmod.swiadd.amemsgdonflg"
>Create Amendment Message</c-checkbox
>
</c-col>
<!-- <c-col :span="4" :offset="4">
<c-checkbox v-model="model.gitamep.prtflg">Choose full Text</c-checkbox>
</c-col> -->
</c-col>
<c-col :span="24">
<c-col :span="6" :offset="6">
<c-checkbox v-if="model.gitp.swiftflg=='Y'" v-model="model.gitamep.prtflg">Choose full Text</c-checkbox>
</c-col>
<c-col :span="6" :offset="6">
<c-checkbox disabled v-if="model.gitp.swiftflg=='Y'" v-model="model.gitamep.clsclmflg">Close Claim</c-checkbox>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="6" :offset="6">
<c-checkbox v-if="model.gitp.swiftflg=='Y'" v-model="model.trnmod.swiadd.addamtflg">Add .Amount</c-checkbox>
</c-col>
<c-col :span="6" :offset="6">
<c-checkbox v-if="model.gitp.swiftflg=='Y'" :disabled="model.trnmod.swiadd.amemsgdonflg==''" v-model="model.gitamep.ametxtflg">Amendments Modify</c-checkbox>
</c-col>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="6" :offset="6">
<c-checkbox
v-if="model.gitp.swiftflg == 'Y'"
v-model="model.gitamep.prtflg"
>Choose full Text</c-checkbox
>
</c-col>
<c-col :span="6" :offset="6">
<c-checkbox
disabled
v-if="model.gitp.swiftflg == 'Y'"
v-model="model.gitamep.clsclmflg"
>Close Claim</c-checkbox
>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="6" :offset="6">
<c-checkbox
v-if="model.gitp.swiftflg == 'Y'"
v-model="model.trnmod.swiadd.addamtflg"
>Add .Amount</c-checkbox
>
</c-col>
<c-col :span="6" :offset="6">
<c-checkbox
v-if="model.gitp.swiftflg == 'Y'"
:disabled="model.trnmod.swiadd.amemsgdonflg == ''"
v-model="model.gitamep.ametxtflg"
>Amendments Modify</c-checkbox
>
</c-col>
</c-col>
</c-col>
</c-col>
</c-row>
<!-- SF002083 : Reference -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitp.S0001237')" prop="gidgrp.rec.ownref">
<c-input v-model="model.gidgrp.rec.ownref" maxlength="16" :placeholder="$t('other.please_enter')+$t('gitp.S0001237')"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitamep.SF002083')" prop="gitamep.recget.sdamod.seainf">
<c-input v-model="model.gitamep.recget.sdamod.seainf" :placeholder="$t('other.please_enter')+$t('gitamep.SF002083')"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.trnmod.swiadd.reqcan">{{$t('gitamep.CF002113')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gitamep.abrflg">{{$t('gitamep.CF002081')}}</c-checkbox>
</c-col> -->
<!-- SF002156 : Inc. Purpose of amend. -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitamep.SF002156')" prop="trnmod.swiadd.purposamein">
<c-select v-model="model.trnmod.swiadd.purposamein" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitamep.SF002156')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.trnmod.swiadd.amemsgdonflg">{{$t('gitamep.CF002078')}}</c-checkbox>
</c-col> -->
<!-- SF002112 : Purpose of amend. -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitamep.SF002112')" prop="trnmod.swiadd.purposame">
<c-select v-model="model.trnmod.swiadd.purposame" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitamep.SF002112')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gitamep.ameaccflg">{{$t('gitamep.CF002133')}}</c-checkbox>
</c-col> -->
<!-- SF002084 : Amendment Date -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitamep.SF002084')" prop="trnmod.swiadd.amedat">
<c-date-picker type="date" v-model="model.trnmod.swiadd.amedat" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitamep.SF002084')"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gitamep.prtflg">{{$t('gitamep.CF002079')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gitamep.clsclmflg">{{$t('gitamep.CF002080')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-form-item label="GCDOWNREF" prop="gitamep.gcdownref">
<c-input v-model="model.gitamep.gcdownref" maxlength="16" :placeholder="$t('other.please_enter')+'GCDOWNREF'"></c-input>
</c-form-item>
</c-col> -->
<!-- SF002094 : Order from -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitamep.SF002094')" prop="trnmod.swiadd.orddat">
<c-date-picker type="date" v-model="model.trnmod.swiadd.orddat" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitamep.SF002094')"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.trnmod.swiadd.addamtflg">{{$t('gitamep.CF002076')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-form-item label="Additional Currency" prop="trnmod.swiadd.addcur">
<c-input v-model="model.trnmod.swiadd.addcur" maxlength="3" :placeholder="$t('other.please_enter')+'Additional Currency'"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Additional Amount" prop="trnmod.swiadd.addamt">
<c-input v-model="model.trnmod.swiadd.addamt" :placeholder="$t('other.please_enter')+'Additional Amount'"></c-input>
</c-form-item>
</c-col> -->
<!-- SF002096 : Amend. No Receiv. -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitamep.SF002096')" prop="trnmod.swiadd.amenbr">
<c-input v-model="model.trnmod.swiadd.amenbr" :placeholder="$t('other.please_enter')+$t('gitamep.SF002096')"></c-input>
</c-form-item>
</c-col> -->
<!-- SF002101 : Additional Amount Covered -->
<!-- SF002093 : Actual Amendment No -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitamep.SF002093')" prop="gidgrp.rec.amenbr">
<c-input v-model="model.gidgrp.rec.amenbr" :placeholder="$t('other.please_enter')+$t('gitamep.SF002093')"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Additional Amount Covered" prop="trnmod.swiadd.addamtcovs20">
<c-input type="textarea" v-model="model.trnmod.swiadd.addamtcovs20" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+'Additional Amount Covered'" ></c-input>
</c-form-item>
</c-col> -->
<!-- SF002085 : Old Guarantee Amt. -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitamep.SF002085')" prop="oldgidgrp.cbs.max.cur">
<c-input v-model="model.oldgidgrp.cbs.max.cur" maxlength="3" :placeholder="$t('other.please_enter')+$t('gitamep.SF002085')"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Balance" prop="oldgidgrp.cbs.max.amt">
<c-input v-model="model.oldgidgrp.cbs.max.amt" :placeholder="$t('other.please_enter')+'Balance'"></c-input>
</c-form-item>
</c-col> -->
<!-- SF002087 : Amended -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitamep.SF002087')" prop="trnmod.swiadd.amecur">
<c-input v-model="model.trnmod.swiadd.amecur" maxlength="3" :placeholder="$t('other.please_enter')+$t('gitamep.SF002087')"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Amended Amount" prop="trnmod.swiadd.ameamt">
<c-input v-model="model.trnmod.swiadd.ameamt" :placeholder="$t('other.please_enter')+'Amended Amount'"></c-input>
</c-form-item>
</c-col> -->
<!-- SF002086 : Guarantee Amount -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitamep.SF002086')" prop="trnmod.swiadd.newcur">
<c-input v-model="model.trnmod.swiadd.newcur" maxlength="3" :placeholder="$t('other.please_enter')+$t('gitamep.SF002086')"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="New amount" prop="trnmod.swiadd.newamt">
<c-input v-model="model.trnmod.swiadd.newamt" :placeholder="$t('other.please_enter')+'New amount'"></c-input>
</c-form-item>
</c-col> -->
<!-- SF002088 : Amendments -->
<!-- <c-col :span="12">
<c-checkbox v-model="model.gitamep.ametxtflg">{{$t('gitamep.CF002077')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-form-item label="Amendment :77C:" prop="gitamep.ametxt">
<c-input type="textarea" v-model="model.gitamep.ametxt" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+'Amendment :77C:'" ></c-input>
</c-form-item>
</c-col> -->
<!-- SF002097 : Create Autoregistration for -->
<!-- <c-col :span="12">
<c-form-item label="Text for Amendments" prop="trnmod.swiadd.ameblk">
<c-input type="textarea" v-model="model.trnmod.swiadd.ameblk" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+'Text for Amendments'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" icon="el-icon-search" @click="onAmebutButtxmsel">
{{$t('gitamep.CF002149')}}
</c-button>
</c-col>
<c-col :span="12">
<el-form-item label="Create Autoregistration for" prop="gitamep.crereg">
<c-select v-model="model.gitamep.crereg" style="width:100%" :placeholder="$t('other.please_enter')+'Create Autoregistration for'">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gitamep.amebut.chkast">{{$t('gitamep.CF002158')}}</c-checkbox>
</c-col>
<c-col :span="12">
<span v-text="model.gitamep.ramrollab" data-path=".gitamep.ramrollab" > </span>
</c-col>
<c-col :span="12">
<el-form-item label="Request of Amendment send to" prop="gitamep.ramrol">
<c-select v-model="model.gitamep.ramrol" style="width:100%" :placeholder="$t('other.please_enter')+'Request of Amendment send to'">
</c-select>
</el-form-item>
</c-col> -->
<!-- SF002100 : Reason for Reduce / Discharge -->
<!-- <c-col :span="12">
<el-form-item label="Reason for Reduce / Discharge" prop="trnmod.swiadd.redrea">
<c-select v-model="model.trnmod.swiadd.redrea" style="width:100%" :placeholder="$t('other.please_enter')+'Reason for Reduce / Discharge'">
</c-select>
</el-form-item>
</c-col> -->
</div>
</template>
<script>
import Api from "~/service/Api"
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Getame/Event"
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Getame/Event";
import Utils from "~/utils";
export default {
inject: ['root'],
props:["model","codes"],
mixins: [commonProcess],
data(){
return {
}
},
methods:{...Event,
inject: ["root"],
props: ["model", "codes"],
mixins: [commonProcess],
data() {
return {};
},
methods: {
...Event,
// async plateflgChange() {
// let rtnmsg = await this.executeRule("gitamep.plateflg")
// if (rtnmsg.respCode == SUCCESS) {
......@@ -638,40 +925,36 @@ export default {
// }
// },
async reqChange(){
let rtnmsg = await this.executeRule("gitamep.ametxt")
if (rtnmsg.respCode == SUCCESS) {
Utils.copyValueFromVO(this.model, rtnmsg.data);
}
},
async newexpflgChange(){
let rtnmsg = await this.executeRule("swiadd.newexpflg")
if (rtnmsg.respCode == SUCCESS) {
Utils.copyValueFromVO(this.model, rtnmsg.data);
}
},
async newamtBlur(){
let rtnmsg = await this.executeRule("trnmod.swiadd.newamt")
if (rtnmsg.respCode == SUCCESS) {
Utils.copyValueFromVO(this.model, rtnmsg.data);
}
},
async ameamtBlur(){
let rtnmsg = await this.executeDefault("trnmod.swiadd.newamt")
if (rtnmsg.respCode == SUCCESS) {
Utils.copyValueFromVO(this.model, rtnmsg.data);
}
},
async reqChange() {
let rtnmsg = await this.executeRule("gitamep.ametxt");
if (rtnmsg.respCode == SUCCESS) {
Utils.copyValueFromVO(this.model, rtnmsg.data);
}
},
async newexpflgChange() {
let rtnmsg = await this.executeRule("swiadd.newexpflg");
if (rtnmsg.respCode == SUCCESS) {
Utils.copyValueFromVO(this.model, rtnmsg.data);
}
},
created:function(){
}
}
async newamtBlur() {
let rtnmsg = await this.executeRule("trnmod.swiadd.newamt");
if (rtnmsg.respCode == SUCCESS) {
Utils.copyValueFromVO(this.model, rtnmsg.data);
}
},
async ameamtBlur() {
let rtnmsg = await this.executeDefault("trnmod.swiadd.newamt");
if (rtnmsg.respCode == SUCCESS) {
Utils.copyValueFromVO(this.model, rtnmsg.data);
}
},
},
created: function () {},
};
</script>
<style>
</style>
<template>
<div class="eibs-tab">
<c-row>
<c-row>
<c-col :span="24">
<!-- ==================左边================ -->
<c-col :span="12">
<!-- -->
<!-- -->
<c-col :span="24">
<el-form-item label="Reference" prop="gidgrp.rec.ownref">
<c-fullbox>
<c-input
disabled
v-model="model.gidgrp.rec.ownref"
maxlength="16"
placeholder="请输入Reference"
></c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
>
<span
style="
font-size: 15px;
font-family: '宋体';
font-weight: bold;
"
>i</span
<el-form-item label="Reference" prop="gidgrp.rec.ownref">
<c-fullbox>
<c-input
disabled
v-model="model.gidgrp.rec.ownref"
maxlength="16"
placeholder="请输入Reference"
></c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
>
</c-button>
<span
style="
font-size: 15px;
font-family: '宋体';
font-weight: bold;
"
>i</span
>
</c-button>
<c-button
style="margin: 0 0"
disabled
size="small"
type="primary"
@click="onGitpButgetref"
>
获取
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-button
style="margin: 0 0"
disabled
size="small"
type="primary"
@click="onGitpButgetref"
>
获取
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<!-- -->
<!-- -->
<c-col :span="24">
<el-form-item label="Responsible User" prop="gitp.usr.extkey">
<c-fullbox>
......@@ -78,7 +77,7 @@
</el-form-item>
</c-col>
<!-- -->
<!-- -->
<c-col :span="24">
<c-col :span="12">
<el-form-item label="Guarantee Amount" prop="gidgrp.cbs.max.cur">
......@@ -88,13 +87,13 @@
style="width: 100%"
placeholder="请选择Guarantee Amount"
>
<el-option
v-for="item in codes.cur"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
<el-option
v-for="item in codes.cur"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
</el-form-item>
</c-col>
......@@ -108,7 +107,11 @@
placeholder="请输入Guarantee Amount"
></c-input>
</c-col>
<c-col :span="4" v-if="model.gitp.swiftflg!='Y'" class="centerLable">
<c-col
:span="4"
v-if="model.gitp.swiftflg != 'Y'"
class="centerLable"
>
<c-checkbox v-model="model.gitp.dzbhflg">电子保函标志</c-checkbox>
</c-col>
</c-col>
......@@ -116,7 +119,8 @@
<c-col :span="24">
<c-col :span="12">
<el-form-item label="Open Amount" prop="gidgrp.cbs.opn1.cur">
<c-input disabled
<c-input
disabled
v-model="model.gidgrp.cbs.opn1.cur"
style="width: 100%"
placeholder="请输入Open Amount"
......@@ -125,46 +129,76 @@
</c-col>
<c-col :span="8">
<!-- <el-form-item label="" prop="gidgrp.cbs.opn1.amt"> -->
<c-input disabled
<c-input
disabled
v-model="model.gidgrp.cbs.opn1.amt"
style="margin: 0 0 0 10px; width: 80%"
placeholder="请输入Balance"
></c-input>
<!-- </el-form-item> -->
</c-col>
<c-col :span="4" v-if="model.gitp.swiftflg=='Y'" class="centerLable">
<c-col
:span="4"
v-if="model.gitp.swiftflg == 'Y'"
class="centerLable"
>
<c-checkbox v-model="model.gitp.inc760">incoming lose</c-checkbox>
</c-col>
</c-col>
<!-- -->
<!-- -->
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='Y'" label="Incoming Purpose " prop="gidgrp.rec.purposin">
<c-select disabled v-model="model.gidgrp.rec.purposin" style="width:100%" :code="codes.purposin" placeholder="请选择Incoming Purpose ">
</c-select>
</el-form-item>
<el-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Incoming Purpose "
prop="gidgrp.rec.purposin"
>
<c-select
disabled
v-model="model.gidgrp.rec.purposin"
style="width: 100%"
:code="codes.purposin"
placeholder="请选择Incoming Purpose "
>
</c-select>
</el-form-item>
</c-col>
<!-- -->
<!-- -->
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='Y'" label="Outgoing Purpose" prop="gidgrp.rec.purpos">
<c-select disabled v-model="model.gidgrp.rec.purpos" :code="codes.purpos" style="width:100%" placeholder="请选择Outgoing Purpose">
</c-select>
</el-form-item>
<el-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Outgoing Purpose"
prop="gidgrp.rec.purpos"
>
<c-select
disabled
v-model="model.gidgrp.rec.purpos"
:code="codes.purpos"
style="width: 100%"
placeholder="请选择Outgoing Purpose"
>
</c-select>
</el-form-item>
</c-col>
<!-- -->
<!-- -->
<c-col :span="24">
<el-form-item label="Handing Type" prop="gidgrp.rec.hndtyp">
<c-select disabled v-model="model.gidgrp.rec.hndtyp" :code="codes.hndtyp" style="width:100%" placeholder="请选择Handing Type">
</c-select>
<c-select
disabled
v-model="model.gidgrp.rec.hndtyp"
:code="codes.hndtyp"
style="width: 100%"
placeholder="请选择Handing Type"
>
</c-select>
</el-form-item>
</c-col>
</c-col>
<!-- -->
<!-- -->
<c-col :span="24">
<el-form-item label="Type of Undertaking" prop="gidgrp.rec.gartyp">
<el-form-item label="Type of Undertaking" prop="gidgrp.rec.gartyp">
<c-select
disabled
v-model="model.gidgrp.rec.gartyp"
......@@ -176,49 +210,73 @@
</el-form-item>
</c-col>
<!-- -->
<!-- -->
<c-col :span="24">
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='Y'" label="Form of Undertaking" prop="gidgrp.rec.legfrm">
<c-select v-model="model.gidgrp.rec.legfrm" :code="codes.legfrm2" style="width:100%" placeholder="请选择Form of Undertaking">
</c-select>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Form of Undertaking"
prop="gidgrp.rec.legfrm"
>
<c-select
v-model="model.gidgrp.rec.legfrm"
:code="codes.legfrm2"
style="width: 100%"
placeholder="请选择Form of Undertaking"
>
</c-select>
</el-form-item>
</c-col>
</c-col>
<!-- -->
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='Y'" label="Demand Indicator" prop="gidgrp.rec.demand">
<c-select :code="codes.demand" v-model="model.gidgrp.rec.demand" style="width:100%" placeholder="请选择Demand Indicator">
</c-select>
</el-form-item>
</c-col>
<!-- -->
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Demand Indicator"
prop="gidgrp.rec.demand"
>
<c-select
:code="codes.demand"
v-model="model.gidgrp.rec.demand"
style="width: 100%"
placeholder="请选择Demand Indicator"
>
</c-select>
</el-form-item>
</c-col>
<!-- -->
<!-- -->
<c-col :span="24">
<el-form-item label="Applicable Rules" prop="gidgrp.blk.apprul">
<c-fullbox>
<c-col :span="12">
<el-form-item label="Applicable Rules" prop="gidgrp.blk.apprul">
<c-select
v-model="model.gidgrp.blk.apprul"
style="width: 100%"
placeholder="请选择Applicable Rules"
:code="codes.apprul"
:code="codes.apprulc1"
>
</c-select>
<!-- -->
<template slot="footer">
<c-input
:disabled="model.gidgrp.blk.apprul=='URDG'||model.gidgrp.blk.apprul=='NONE'||model.gidgrp.blk.apprul=='UCPR'"
v-model="model.gidgrp.blk.apprultxt"
maxlength="35"
placeholder="请输入Applicable Rules"
></c-input>
</template>
</c-fullbox>
</el-form-item>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label-width="5px" prop="gidgrp.blk.apprultxt">
<c-input
:disabled="
model.gidgrp.blk.apprul == 'URDG' ||
model.gidgrp.blk.apprul == 'NONE' ||
model.gidgrp.blk.apprul == 'UCPR'
"
v-model="model.gidgrp.blk.apprultxt"
maxlength="35"
placeholder="请输入Applicable Rules"
></c-input>
</el-form-item>
</c-col>
</c-col>
<!-- -->
<!-- -->
<c-col :span="24">
<c-col :span="12">
<el-form-item
......@@ -226,7 +284,7 @@
prop="gidgrp.rec.giduil"
>
<c-select
disabled
disabled
v-model="model.gidgrp.rec.giduil"
style="width: 100%"
placeholder="请选择Language of Undertak."
......@@ -250,9 +308,13 @@
</c-col>
</c-col>
<!-- -->
<!-- -->
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="特殊保函类型" prop="gidgrp.ghd.segtyp">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="特殊保函类型"
prop="gidgrp.ghd.segtyp"
>
<c-select
v-model="model.gidgrp.ghd.segtyp"
style="width: 100%"
......@@ -262,9 +324,13 @@
</c-select>
</el-form-item>
</c-col>
<!-- -->
<!-- -->
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="是否分离式保函" prop="gidgrp.rec.fenlishi">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="是否分离式保函"
prop="gidgrp.rec.fenlishi"
>
<c-select
disabled
v-model="model.gidgrp.rec.fenlishi"
......@@ -277,23 +343,26 @@
</c-col>
<!-- -->
<c-col :span="24">
<el-form-item label="Choice of Text" prop="gidgrp.rec.gtxinr">
<c-select
disabled
v-model="model.gidgrp.rec.gtxinr"
style="width: 100%"
placeholder="请选择Choice of Text"
:code="codes.gtxinr4"
>
</c-select>
</el-form-item>
<c-col :span="24">
<el-form-item label="Choice of Text" prop="gidgrp.rec.gtxinr">
<c-select
disabled
v-model="model.gidgrp.rec.gtxinr"
style="width: 100%"
placeholder="请选择Choice of Text"
:code="codes.gtxinr4"
>
</c-select>
</el-form-item>
</c-col>
<!-- -->
<!-- -->
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="Order Date" prop="gidgrp.rec.orddat">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Order Date"
prop="gidgrp.rec.orddat"
>
<c-date-picker
disabled
type="date"
......@@ -304,10 +373,14 @@
</el-form-item>
</c-col>
<!-- -->
<!-- -->
<c-col :span="24">
<c-col :span="14">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="Validity until" prop="gidgrp.rec.expdat">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Validity until"
prop="gidgrp.rec.expdat"
>
<c-date-picker
disabled
type="date"
......@@ -319,20 +392,29 @@
</c-col>
<!-- -->
<c-col :span="7" v-if="model.gitp.swiftflg=='N'" class="centerLable">
<c-checkbox disabled v-model="model.gidgrp.rec.expflg"
<c-col
:span="7"
v-if="model.gitp.swiftflg == 'N'"
class="centerLable"
>
<c-checkbox disabled v-model="model.gidgrp.rec.expflg"
>Unlimited Guarantee</c-checkbox
>
</c-col>
<c-col :span="3" v-if="model.gitp.swiftflg!='Y'" class="centerLable">
<c-button
size="small"
type="primary"
@click="onGitpWbxs"
disabled
style="color:white">
显示文本
</c-button>
<c-col
:span="3"
v-if="model.gitp.swiftflg != 'Y'"
class="centerLable"
>
<c-button
size="small"
type="primary"
@click="onGitpWbxs"
disabled
style="color: white"
>
显示文本
</c-button>
</c-col>
</c-col>
......@@ -340,11 +422,11 @@
<c-col :span="24">
<c-col :span="14">
<el-form-item
v-if="model.gitp.swiftflg=='N'"
v-if="model.gitp.swiftflg == 'N'"
label="Our Liability until"
prop="gidgrp.rec.liadat"
>
<c-date-picker
<c-date-picker
disabled
type="date"
v-model="model.gidgrp.rec.liadat"
......@@ -355,26 +437,38 @@
</c-col>
<!-- -->
<c-col :span="7" v-if="model.gitp.swiftflg=='N'" class="centerLable">
<c-checkbox v-model="model.gidgrp.rec.liaflg"
disabled
<c-col
:span="7"
v-if="model.gitp.swiftflg == 'N'"
class="centerLable"
>
<c-checkbox v-model="model.gidgrp.rec.liaflg" disabled
>Unlimited Liability</c-checkbox
>
</c-col>
<c-col :span="3" v-if="model.gitp.swiftflg!='Y'" class="centerLable">
<c-button
size="small"
type="primary"
@click="onGitpYptxy"
disabled>
协议签署
<c-col
:span="3"
v-if="model.gitp.swiftflg != 'Y'"
class="centerLable"
>
<c-button
size="small"
type="primary"
@click="onGitpYptxy"
disabled
>
协议签署
</c-button>
</c-col>
</c-col>
<!-- -->
<!-- -->
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="Inure Date" prop="gidgrp.rec.inudat">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Inure Date"
prop="gidgrp.rec.inudat"
>
<c-date-picker
type="date"
v-model="model.gidgrp.rec.inudat"
......@@ -384,61 +478,87 @@
</el-form-item>
</c-col>
<!-- -->
<!-- -->
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="Mortgage Flag" prop="gidgrp.rec.guaflg">
<c-select
v-model="model.gidgrp.rec.guaflg"
style="width: 100%"
placeholder="请选择Mortgage Flag"
:code="codes.guaflg"
>
</c-select>
</el-form-item>
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Mortgage Flag"
prop="gidgrp.rec.guaflg"
>
<c-select
v-model="model.gidgrp.rec.guaflg"
style="width: 100%"
placeholder="请选择Mortgage Flag"
:code="codes.guaflg"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg!='Y'" label="是否显示查询码" prop="gidgrp.gidcxm.cxmflg">
<el-form-item
v-if="model.gitp.swiftflg != 'Y'"
label="是否显示查询码"
prop="gidgrp.gidcxm.cxmflg"
>
<c-select
v-model="model.gidgrp.gidcxm.cxmflg"
style="width: 100%"
placeholder="请选择是否显示查询码">
<el-option
v-for="item in codes.cxmflg"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
placeholder="请选择是否显示查询码"
>
<el-option
v-for="item in codes.cxmflg"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="20">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="对外担保类型" prop="gidgrp.rec.cfaguatyp">
<c-select
disabled
v-model="model.gidgrp.rec.cfaguatyp"
style="width: 90%"
placeholder="请选择对外担保类型"
:code="codes.cfaguatyp"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="4" v-if="model.gidgrp.cbs.max.cur=='CNY'&&model.gitp.swiftflg=='N'" class="centerLable">
<c-checkbox label="跨境人民币保函" disabled v-model="model.gidgrp.rec.cmtflg"
>跨境人民币保函</c-checkbox
>
</c-col>
<c-col :span="20">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="对外担保类型"
prop="gidgrp.rec.cfaguatyp"
>
<c-select
disabled
v-model="model.gidgrp.rec.cfaguatyp"
style="width: 90%"
placeholder="请选择对外担保类型"
:code="codes.cfaguatyp"
>
</c-select>
</el-form-item>
</c-col>
<c-col
:span="4"
v-if="
model.gidgrp.cbs.max.cur == 'CNY' && model.gitp.swiftflg == 'N'
"
class="centerLable"
>
<c-checkbox
label="跨境人民币保函"
disabled
v-model="model.gidgrp.rec.cmtflg"
>跨境人民币保函</c-checkbox
>
</c-col>
</c-col>
</c-col>
<!-- ============右边================= -->
<!-- -->
<c-col :span="11" :offset="1">
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="Name" prop="gidgrp.rec.nam">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Name"
prop="gidgrp.rec.nam"
>
<c-input
disabled
v-model="model.gidgrp.rec.nam"
......@@ -448,128 +568,239 @@
</el-form-item>
</c-col>
<!-- -->
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="Applicant Ref." prop="gidgrp.apl.pts.ref">
<c-input :disabled="model.gidgrp.ghd.segtyp=='02'" v-model="model.gidgrp.apl.pts.ref" maxlength="16" placeholder="请输入Applicant Ref."></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="Applicant" prop="gidgrp.apl.pts.extkey">
<c-fullbox>
<c-input v-model="model.gidgrp.apl.pts.extkey"
disabled
maxlength="16"
placeholder="请输入External Key of Address"
@keyup.enter.native="
showGridPromptDialog(`gidgrp.apl.pts.extkey`)
">
</c-input>
<template slot="footer">
<c-button
style="margin:0 10px 0 10px;padding: 0 12px;"
size="small"
type="primary"
>
<span style="font-family:'宋体';font-weight:bold">i</span>
</c-button>
<c-button :disabled="model.gidgrp.rec.hndtyp!='OT'" size="small" type="primary" @click="onAplpDet">
Details
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<!-- -->
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="地址名称" prop="gidgrp.apl.pts.adrblk">
<c-input :disabled="model.gidgrp.rec.hndtyp!='OT'" rows="4" type="textarea" v-model="model.gidgrp.apl.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入地址名称" ></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<c-ptap v-if="(model.gidgrp.rec.hndtyp=='OL'||model.gidgrp.rec.hndtyp=='')&&model.gitp.swiftflg!='Y'" :model="model" :argadr="{
title: 'Adv/Rcv bank',
grp: 'gidgrp',
rol: 'adv',
}"
@onAplpDet="onAdvpDet">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Applicant Ref."
prop="gidgrp.apl.pts.ref"
>
<c-input
:disabled="model.gidgrp.ghd.segtyp == '02'"
v-model="model.gidgrp.apl.pts.ref"
maxlength="16"
placeholder="请输入Applicant Ref."
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Applicant"
prop="gidgrp.apl.pts.extkey"
>
<c-fullbox>
<c-input
v-model="model.gidgrp.apl.pts.extkey"
disabled
maxlength="16"
placeholder="请输入External Key of Address"
@keyup.enter.native="
showGridPromptDialog(`gidgrp.apl.pts.extkey`)
"
>
</c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
>
<span style="font-family: '宋体'; font-weight: bold"
>i</span
>
</c-button>
<c-button
:disabled="model.gidgrp.rec.hndtyp != 'OT'"
size="small"
type="primary"
@click="onAplpDet"
>
Details
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<!-- -->
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="地址名称"
prop="gidgrp.apl.pts.adrblk"
>
<c-input
:disabled="model.gidgrp.rec.hndtyp != 'OT'"
rows="4"
type="textarea"
v-model="model.gidgrp.apl.pts.adrblk"
maxlength="35"
show-word-limit
placeholder="请输入地址名称"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<c-ptap
v-if="
(model.gidgrp.rec.hndtyp == 'OL' ||
model.gidgrp.rec.hndtyp == '') &&
model.gitp.swiftflg != 'Y'
"
:model="model"
:argadr="{
title: 'Adv/Rcv bank',
grp: 'gidgrp',
rol: 'adv',
}"
@onAplpDet="onAdvpDet"
>
</c-ptap>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg!='Y'" label="Issuing Bank" prop="gidgrp.iss.pts.ref">
<c-input v-model="model.gidgrp.iss.pts.ref" maxlength="16" placeholder="请输入Issuing Bank"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg!='Y'" label="Issuing Bank" prop="gidgrp.iss.pts.extkey">
<c-fullbox>
<c-input v-model="model.gidgrp.iss.pts.extkey"
maxlength="16"
placeholder="请输入External Key of Address"
@keyup.enter.native="
showGridPromptDialog(`gidgrp.iss.pts.extkey`)
"></c-input>
<template slot="footer">
<c-button
style="margin:0 10px 0 10px;padding: 0 12px;"
size="small"
type="primary"
>
<span style="font-family:'宋体';font-weight:bold">i</span>
</c-button>
<c-button disabled size="small" type="primary" @click="onIsspDet">
Details
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg!='Y'" label="地址名称" prop="gidgrp.iss.pts.adrblk">
<c-input disabled rows="4" type="textarea" v-model="model.gidgrp.iss.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入地址名称" ></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg!='Y'" label="Beneficiary Ref." prop="gidgrp.ben.pts.ref">
<c-input v-model="model.gidgrp.ben.pts.ref" maxlength="16" placeholder="请输入Beneficiary Ref."></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg!='Y'" label="Beneficiary" prop="gidgrp.ben.pts.extkey">
<c-fullbox>
<c-input v-model="model.gidgrp.ben.pts.extkey"
maxlength="16"
placeholder="请输入External Key of Address"
@keyup.enter.native="
showGridPromptDialog(`gidgrp.ben.pts.extkey`)
"></c-input>
<template slot="footer">
<c-button
style="margin:0 10px 0 10px;padding: 0 12px;"
size="small"
type="primary"
>
<span style="font-family:'宋体';font-weight:bold">i</span>
</c-button>
<c-button :disabled="model.gidgrp.rec.hndtyp=='OT'" size="small" type="primary" @click="onBenpDet">
Details
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg!='Y'" label="地址名称" prop="gidgrp.ben.pts.adrblk">
<c-input :disabled="model.gidgrp.rec.hndtyp=='OT'" rows="4" type="textarea" v-model="model.gidgrp.ben.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入地址名称" ></c-input>
</el-form-item>
</c-col>
<!-- -->
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="被保证人" prop="gidgrp.gidcxm.warran">
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg != 'Y'"
label="Issuing Bank"
prop="gidgrp.iss.pts.ref"
>
<c-input
v-model="model.gidgrp.iss.pts.ref"
maxlength="16"
placeholder="请输入Issuing Bank"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg != 'Y'"
label="Issuing Bank"
prop="gidgrp.iss.pts.extkey"
>
<c-fullbox>
<c-input
v-model="model.gidgrp.iss.pts.extkey"
maxlength="16"
placeholder="请输入External Key of Address"
@keyup.enter.native="
showGridPromptDialog(`gidgrp.iss.pts.extkey`)
"
></c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
>
<span style="font-family: '宋体'; font-weight: bold"
>i</span
>
</c-button>
<c-button
disabled
size="small"
type="primary"
@click="onIsspDet"
>
Details
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg != 'Y'"
label="地址名称"
prop="gidgrp.iss.pts.adrblk"
>
<c-input
disabled
rows="4"
type="textarea"
v-model="model.gidgrp.iss.pts.adrblk"
maxlength="35"
show-word-limit
placeholder="请输入地址名称"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg != 'Y'"
label="Beneficiary Ref."
prop="gidgrp.ben.pts.ref"
>
<c-input
v-model="model.gidgrp.ben.pts.ref"
maxlength="16"
placeholder="请输入Beneficiary Ref."
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg != 'Y'"
label="Beneficiary"
prop="gidgrp.ben.pts.extkey"
>
<c-fullbox>
<c-input
v-model="model.gidgrp.ben.pts.extkey"
maxlength="16"
placeholder="请输入External Key of Address"
@keyup.enter.native="
showGridPromptDialog(`gidgrp.ben.pts.extkey`)
"
></c-input>
<template slot="footer">
<c-button
style="margin: 0 10px 0 10px; padding: 0 12px"
size="small"
type="primary"
>
<span style="font-family: '宋体'; font-weight: bold"
>i</span
>
</c-button>
<c-button
:disabled="model.gidgrp.rec.hndtyp == 'OT'"
size="small"
type="primary"
@click="onBenpDet"
>
Details
</c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg != 'Y'"
label="地址名称"
prop="gidgrp.ben.pts.adrblk"
>
<c-input
:disabled="model.gidgrp.rec.hndtyp == 'OT'"
rows="4"
type="textarea"
v-model="model.gidgrp.ben.pts.adrblk"
maxlength="35"
show-word-limit
placeholder="请输入地址名称"
></c-input>
</el-form-item>
</c-col>
<!-- -->
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="被保证人"
prop="gidgrp.gidcxm.warran"
>
<c-input
v-model="model.gidgrp.gidcxm.warran"
maxlength="40"
......@@ -578,10 +809,13 @@
</el-form-item>
</c-col>
<!-- -->
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="Valid from" prop="gidgrp.rec.opndat">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="Valid from"
prop="gidgrp.rec.opndat"
>
<c-date-picker
disabled
type="date"
......@@ -592,9 +826,13 @@
</el-form-item>
</c-col>
<!-- -->
<!-- -->
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='N'" label="是否对外担保" prop="gidgrp.rec.fingua">
<el-form-item
v-if="model.gitp.swiftflg == 'N'"
label="是否对外担保"
prop="gidgrp.rec.fingua"
>
<c-select
disabled
v-model="model.gidgrp.rec.fingua"
......@@ -606,820 +844,256 @@
</el-form-item>
</c-col>
<!-- -->
<!-- -->
<!-- -->
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='Y'" label="Order Date" prop="gidgrp.rec.orddat">
<c-date-picker
disabled
type="date"
v-model="model.gidgrp.rec.orddat"
style="width: 100%"
placeholder="请选择Order Date"
></c-date-picker>
</el-form-item>
</c-col>
<!-- -->
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Order Date"
prop="gidgrp.rec.orddat"
>
<c-date-picker
disabled
type="date"
v-model="model.gidgrp.rec.orddat"
style="width: 100%"
placeholder="请选择Order Date"
></c-date-picker>
</el-form-item>
</c-col>
<!-- -->
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='Y'" label="Valid from" prop="gidgrp.rec.opndat">
<c-date-picker type="date" disabled v-model="model.gidgrp.rec.opndat" style="width:100%" placeholder="请选择Valid from"></c-date-picker>
</el-form-item>
</c-col>
<!-- -->
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Valid from"
prop="gidgrp.rec.opndat"
>
<c-date-picker
type="date"
disabled
v-model="model.gidgrp.rec.opndat"
style="width: 100%"
placeholder="请选择Valid from"
></c-date-picker>
</el-form-item>
</c-col>
<!-- -->
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='Y'" label="Expiry Type" prop="gidgrp.rec.exptyp">
<c-select disabled :code="codes.exptyp" v-model="model.gidgrp.rec.exptyp" style="width:100%" placeholder="请选择Expiry Type">
</c-select>
</el-form-item>
</c-col>
<!-- -->
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Expiry Type"
prop="gidgrp.rec.exptyp"
>
<c-select
disabled
:code="codes.exptyp"
v-model="model.gidgrp.rec.exptyp"
style="width: 100%"
placeholder="请选择Expiry Type"
>
</c-select>
</el-form-item>
</c-col>
<!-- -->
<c-col :span="24">
<c-col :span="20">
<el-form-item v-if="model.gitp.swiftflg=='Y'" label="Validity until" prop="gidgrp.rec.expdat">
<c-date-picker disabled
type="date"
v-model="model.gidgrp.rec.expdat"
style="width: 90%"
placeholder="请选择Validity until"
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="4" v-if="model.gitp.swiftflg=='Y'" class="centerLable">
<c-checkbox disabled v-model="model.gidgrp.rec.expflg">Unlimited Validity</c-checkbox>
</c-col>
</c-col>
<!-- -->
<c-col :span="24">
<c-col :span="20">
<el-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Validity until"
prop="gidgrp.rec.expdat"
>
<c-date-picker
disabled
type="date"
v-model="model.gidgrp.rec.expdat"
style="width: 90%"
placeholder="请选择Validity until"
></c-date-picker>
</el-form-item>
</c-col>
<c-col
:span="4"
v-if="model.gitp.swiftflg == 'Y'"
class="centerLable"
>
<c-checkbox disabled v-model="model.gidgrp.rec.expflg"
>Unlimited Validity</c-checkbox
>
</c-col>
</c-col>
<!-- -->
<c-col :span="24">
<c-col :span="20">
<el-form-item v-if="model.gitp.swiftflg=='Y'" label="Expiry Condition/ Evt." prop="gidgrp.blk.exptxt">
<c-input type="textarea" rows="4" disabled v-model="model.gidgrp.blk.exptxt" maxlength="65" show-word-limit placeholder="请输入Expiry Condition/ Evt." ></c-input>
</el-form-item>
</c-col>
<c-col :span="4">
<c-checkbox v-if="model.gitp.swiftflg=='Y'" v-model="model.gitp.exptxtmodflg" disabled style="margin:0 0 0 10px">Modify Text</c-checkbox>
<c-button v-if="model.gitp.swiftflg=='Y'" disabled size="small" type="primary" style="margin:5px 0 0 10px" @click="onGitpButdifexptxt">
vs. &System
</c-button>
<c-button v-if="model.gitp.swiftflg=='Y'" disabled size="small" type="primary" style="margin:5px 0 0 10px" @click="onGitpButdifhisexptxt">
vs. &History
</c-button>
</c-col>
</c-col>
<!-- -->
<c-col :span="24">
<c-col :span="20">
<el-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Expiry Condition/ Evt."
prop="gidgrp.blk.exptxt"
>
<c-input
type="textarea"
rows="4"
disabled
v-model="model.gidgrp.blk.exptxt"
maxlength="65"
show-word-limit
placeholder="请输入Expiry Condition/ Evt."
></c-input>
</el-form-item>
</c-col>
<c-col :span="4">
<c-checkbox
v-if="model.gitp.swiftflg == 'Y'"
v-model="model.gitp.exptxtmodflg"
disabled
style="margin: 0 0 0 10px"
>Modify Text</c-checkbox
>
<c-button
v-if="model.gitp.swiftflg == 'Y'"
disabled
size="small"
type="primary"
style="margin: 5px 0 0 10px"
@click="onGitpButdifexptxt"
>
vs. &System
</c-button>
<c-button
v-if="model.gitp.swiftflg == 'Y'"
disabled
size="small"
type="primary"
style="margin: 5px 0 0 10px"
@click="onGitpButdifhisexptxt"
>
vs. &History
</c-button>
</c-col>
</c-col>
<!-- -->
<c-col :span="24">
<el-form-item v-if="model.gitp.swiftflg=='Y'" label="Liability Type " prop="gidgrp.rec.liatypc">
<c-select disabled :code="codes.liatypc" v-model="model.gidgrp.rec.liatypc" style="width:100%" placeholder="请选择Liability Type ">
</c-select>
</el-form-item>
</c-col>
<!-- -->
<c-col :span="24">
<el-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Liability Type "
prop="gidgrp.rec.liatypc"
>
<c-select
disabled
:code="codes.liatypc"
v-model="model.gidgrp.rec.liatypc"
style="width: 100%"
placeholder="请选择Liability Type "
>
</c-select>
</el-form-item>
</c-col>
<!-- -->
<c-col :span="24">
<c-col :span="20">
<el-form-item
v-if="model.gitp.swiftflg=='Y'"
label="Our Liability until"
prop="gidgrp.rec.liadat"
>
<c-date-picker disabled
type="date"
v-model="model.gidgrp.rec.liadat"
style="width: 90%"
placeholder="请选择Our Liability until"
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="4" v-if="model.gitp.swiftflg=='Y'" class="centerLable">
<c-checkbox disabled v-model="model.gidgrp.rec.liaflg"
>Unlimited Liability</c-checkbox
>
</c-col>
</c-col>
<!-- -->
<c-col :span="24">
<c-col :span="20">
<el-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Our Liability until"
prop="gidgrp.rec.liadat"
>
<c-date-picker
disabled
type="date"
v-model="model.gidgrp.rec.liadat"
style="width: 90%"
placeholder="请选择Our Liability until"
></c-date-picker>
</el-form-item>
</c-col>
<c-col
:span="4"
v-if="model.gitp.swiftflg == 'Y'"
class="centerLable"
>
<c-checkbox disabled v-model="model.gidgrp.rec.liaflg"
>Unlimited Liability</c-checkbox
>
</c-col>
</c-col>
<!-- -->
<c-col :span="24">
<c-col :span="20">
<el-form-item v-if="model.gitp.swiftflg=='Y'" label="Liability Condition" prop="gidgrp.blk.liatxtc">
<c-input type="textarea" disabled rows="4" v-model="model.gidgrp.blk.liatxtc" maxlength="65" show-word-limit placeholder="请输入Liability Condition" ></c-input>
</el-form-item>
</c-col>
<c-col :span="4">
<c-checkbox v-if="model.gitp.swiftflg=='Y'" disabled v-model="model.gitp.liatxtcmodflg" style="margin:0 0 0 10px">Modify Text</c-checkbox>
<c-button v-if="model.gitp.swiftflg=='Y'" disabled size="small" type="primary" style="margin:5px 0 0 10px" @click="onGitpButdifliatxtc">
vs. &System
</c-button>
<c-button v-if="model.gitp.swiftflg=='Y'" disabled size="small" type="primary" style="margin:5px 0 0 10px" @click="onGitpButdifhisliatxtc">
vs. &History
</c-button>
</c-col>
</c-col>
<!-- -->
<c-col :span="24">
<c-col :span="20">
<el-form-item
v-if="model.gitp.swiftflg == 'Y'"
label="Liability Condition"
prop="gidgrp.blk.liatxtc"
>
<c-input
type="textarea"
disabled
rows="4"
v-model="model.gidgrp.blk.liatxtc"
maxlength="65"
show-word-limit
placeholder="请输入Liability Condition"
></c-input>
</el-form-item>
</c-col>
<c-col :span="4">
<c-checkbox
v-if="model.gitp.swiftflg == 'Y'"
disabled
v-model="model.gitp.liatxtcmodflg"
style="margin: 0 0 0 10px"
>Modify Text</c-checkbox
>
<c-button
v-if="model.gitp.swiftflg == 'Y'"
disabled
size="small"
type="primary"
style="margin: 5px 0 0 10px"
@click="onGitpButdifliatxtc"
>
vs. &System
</c-button>
<c-button
v-if="model.gitp.swiftflg == 'Y'"
disabled
size="small"
type="primary"
style="margin: 5px 0 0 10px"
@click="onGitpButdifhisliatxtc"
>
vs. &History
</c-button>
</c-col>
</c-col>
</c-col>
</c-row>
<!-- <c-col :span="12">
<c-form-item label="Drag Drop Sender" prop="gitp.recget.sdamod.dadsnd">
<c-input v-model="model.gitp.recget.sdamod.dadsnd" :placeholder="$t('other.please_enter')+'Drag Drop Sender'"></c-input>
</c-form-item>
</c-col> -->
<!-- SF000700 : Reference -->
<!-- S0001237 : Reference -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitp.S0001237')" prop="gidgrp.rec.ownref">
<c-input v-model="model.gidgrp.rec.ownref" maxlength="16" :placeholder="$t('other.please_enter')+$t('gitp.S0001237')"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="" prop="gitp.recget.sdamod.seainf">
<c-input v-model="model.gitp.recget.sdamod.seainf" :placeholder="$t('other.please_enter')+''"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gidgrp.rec.resflg">{{$t('gitp.CG001227')}}</c-checkbox>
</c-col> -->
<!-- S0001239 : Name -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitp.S0001239')" prop="gidgrp.rec.nam">
<c-input v-model="model.gidgrp.rec.nam" maxlength="40" :placeholder="$t('other.please_enter')+$t('gitp.S0001239')"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpButgetref">
{{$t('gitp.CG001231')}}
</c-button>
</c-col> -->
<!-- SF000704 : Guarantee Amount -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.S0001241')" prop="gidgrp.cbs.max.cur">
<c-select v-model="model.gidgrp.cbs.max.cur" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.S0001241')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitp.S0001241')" prop="gidgrp.cbs.max.amt">
<c-input v-model="model.gidgrp.cbs.max.amt" :placeholder="$t('other.please_enter')+$t('gitp.S0001241')"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gidgrp.rec.rejflg">{{$t('gitp.CF000690')}}</c-checkbox>
</c-col> -->
<!-- S0001240 : Responsible User -->
<!-- SF000718 : Old Reference -->
<!-- S0001247 : Applicant Ref. -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitp.S0001297')" prop="gidgrp.apl.pts.ref">
<c-input v-model="model.gidgrp.apl.pts.ref" maxlength="16" :placeholder="$t('other.please_enter')+$t('gitp.S0001297')"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<span v-text="model.gitp.morapllab" data-path=".gitp.morapllab" > </span>
</c-col> -->
<!-- SF000708 : Open Amount -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitp.S0001245')" prop="gidgrp.cbs.opn1.cur">
<c-input v-model="model.gidgrp.cbs.opn1.cur" maxlength="3" :placeholder="$t('other.please_enter')+$t('gitp.S0001245')"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Balance" prop="gidgrp.cbs.opn1.amt">
<c-input v-model="model.gidgrp.cbs.opn1.amt" :placeholder="$t('other.please_enter')+'Balance'"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gitp.aamp.aammod.addamtflg">{{$t('gitp.CG001228')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitp.S0001252')" prop="gidgrp.rec.oldref">
<c-input v-model="model.gidgrp.rec.oldref" maxlength="16" :placeholder="$t('other.please_enter')+$t('gitp.S0001252')"></c-input>
</c-form-item>
</c-col> -->
<!-- S0001241 : Guarantee Amount -->
<!-- <c-col :span="12">
<c-checkbox v-model="model.gitp.dzbhflg">{{$t('gitp.CG001234')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-form-item label="Drag Drop Sender" prop="gitp.aplp.ptsget.sdamod.dadsnd">
<c-input v-model="model.gitp.aplp.ptsget.sdamod.dadsnd" :placeholder="$t('other.please_enter')+'Drag Drop Sender'"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="External Key of Address" prop="gidgrp.apl.pts.extkey">
<c-input v-model="model.gidgrp.apl.pts.extkey" maxlength="16" :placeholder="$t('other.please_enter')+'External Key of Address'"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="" prop="gitp.aplp.ptsget.sdamod.seainf">
<c-input v-model="model.gitp.aplp.ptsget.sdamod.seainf" :placeholder="$t('other.please_enter')+''"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onAplpDet">
{{$t('ptsp.CF000081')}}
</c-button>
</c-col>
<c-col :span="12">
<span v-text="model.gitp.drpreflglab1" data-path=".gitp.drpreflglab1" > </span>
</c-col>
<c-col :span="12">
<el-form-item label="Type of Request" prop="gidgrp.rec.drpreflg">
<c-select v-model="model.gidgrp.rec.drpreflg" style="width:100%" :placeholder="$t('other.please_enter')+'Type of Request'">
</c-select>
</el-form-item>
</c-col> -->
<!-- S0001245 : Open Amount -->
<!-- SF000703 : Responsible User -->
<!-- <c-col :span="12">
<c-form-item label="名称" prop="gidgrp.apl.namelc">
<c-input type="textarea" v-model="model.gidgrp.apl.namelc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'名称'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Address Block" prop="gidgrp.apl.pts.adrblk">
<c-input type="textarea" v-model="model.gidgrp.apl.pts.adrblk" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Address Block'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Chinese address" prop="gidgrp.apl.dbfadrblkcn">
<c-input type="textarea" v-model="model.gidgrp.apl.dbfadrblkcn" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Chinese address'" ></c-input>
</c-form-item>
</c-col> -->
<!-- SF000758 : Incoming Purpose -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000758')" prop="gidgrp.rec.purposin">
<c-select v-model="model.gidgrp.rec.purposin" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000758')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitp.S0001240')" prop="gitp.usr.extkey">
<c-input v-model="model.gitp.usr.extkey" maxlength="8" :placeholder="$t('other.please_enter')+$t('gitp.S0001240')"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="" prop="gitp.usrget.sdamod.seainf">
<c-input v-model="model.gitp.usrget.sdamod.seainf" :placeholder="$t('other.please_enter')+''"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gitp.inc760">{{$t('gitp.CG001308')}}</c-checkbox>
</c-col>
<c-col :span="12">
<el-form-item label="Type of Request" prop="gitp.drpreflg">
<c-select v-model="model.gitp.drpreflg" style="width:100%" :placeholder="$t('other.please_enter')+'Type of Request'">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<span v-text="model.gitp.drpreflglab" data-path=".gitp.drpreflglab" > </span>
</c-col>
<c-col :span="12">
<c-form-item label="地址" prop="gidgrp.apl.adrelc">
<c-input type="textarea" v-model="model.gidgrp.apl.adrelc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'地址'" ></c-input>
</c-form-item>
</c-col> -->
<!-- SF000759 : Outgoing Purpose -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000759')" prop="gidgrp.rec.purpos">
<c-select v-model="model.gidgrp.rec.purpos" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000759')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gidgrp.rec.revflg">{{$t('gitp.CF000697')}}</c-checkbox>
</c-col> -->
<!-- S0001246 : Handling Type -->
<!-- SF000709 : Handling Type -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.S0001246')" prop="gidgrp.rec.hndtyp">
<c-select v-model="model.gidgrp.rec.hndtyp" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.S0001246')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gidgrp.rec.autrnwflg">{{$t('gitp.CF000698')}}</c-checkbox>
</c-col> -->
<!-- S0001242 : Type of Undertaking -->
<!-- SF000705 : Undertaking Type -->
<!--
<c-col :span="12">
<el-form-item :label="$t('gitp.S0001242')" prop="gidgrp.rec.gartyp">
<c-select v-model="model.gidgrp.rec.gartyp" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.S0001242')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Undertaking Type from Local Undertaking Seq. C" prop="gidgrp.rec.gartypin">
<c-input v-model="model.gidgrp.rec.gartypin" maxlength="4" :placeholder="$t('other.please_enter')+'Undertaking Type from Local Undertaking Seq. C'"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="面函标题" prop="gitp.lettername">
<c-input v-model="model.gitp.lettername" maxlength="60" :placeholder="$t('other.please_enter')+'面函标题'"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Specification of Type of Undertaking - Counter Undertaking" prop="gidgrp.blk.gartyptxtin">
<c-input v-model="model.gidgrp.blk.gartyptxtin" maxlength="35" :placeholder="$t('other.please_enter')+'Specification of Type of Undertaking - Counter Undertaking'"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<span v-text="model.gitp.letterlabel" data-path=".gitp.letterlabel" > </span>
</c-col>
<c-col :span="12">
<span v-text="model.gitp.oppbnkl" data-path=".gitp.oppbnkl" > </span>
</c-col> -->
<!-- SF000717 : Form of Undertaking -->
<!-- S0001253 : Applicable Rules -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000717')" prop="gidgrp.rec.legfrm">
<c-select v-model="model.gidgrp.rec.legfrm" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000717')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gidgrp.rec.rmbflg">{{$t('gitp.CF001221')}}</c-checkbox>
</c-col>
<c-col :span="12">
<span v-text="model.gitp.bantyp" data-path=".gitp.bantyp" > </span>
</c-col>
<c-col :span="12">
<c-form-item label="Reference for Address Optional" prop="gidgrp.adv.pts.ref">
<c-input v-model="model.gidgrp.adv.pts.ref" maxlength="16" :placeholder="$t('other.please_enter')+'Reference for Address Optional'"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Reference for Address Optional" prop="gidgrp.iss.pts.ref">
<c-input v-model="model.gidgrp.iss.pts.ref" maxlength="16" :placeholder="$t('other.please_enter')+'Reference for Address Optional'"></c-input>
</c-form-item>
</c-col> -->
<!-- SF000716 : Order Date -->
<!-- <c-col :span="12">
<el-form-item label="核销日期" prop="gidgrp.rec.vrfdat">
<c-date-picker type="date" v-model="model.gidgrp.rec.vrfdat" style="width:100%" :placeholder="$t('other.please_enter')+'核销日期'"></c-date-picker>
</el-form-item>
</c-col> -->
<!-- S0001249 : Language of Undertak. -->
<!-- S0001258 : 核销日期 -->
<!-- SF000882 : Demand Indicator -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000882')" prop="gidgrp.rec.demand">
<c-select v-model="model.gidgrp.rec.demand" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000882')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item :label="$t('gitp.S0001251')" prop="gidgrp.rec.orddat">
<c-date-picker type="date" v-model="model.gidgrp.rec.orddat" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.S0001251')"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gitp.inccormsgflg">{{$t('gitp.CF000915')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-form-item label="Drag Drop Sender" prop="gitp.issp.ptsget.sdamod.dadsnd">
<c-input v-model="model.gitp.issp.ptsget.sdamod.dadsnd" :placeholder="$t('other.please_enter')+'Drag Drop Sender'"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Drag Drop Sender" prop="gitp.advp.ptsget.sdamod.dadsnd">
<c-input v-model="model.gitp.advp.ptsget.sdamod.dadsnd" :placeholder="$t('other.please_enter')+'Drag Drop Sender'"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="External Key of Address" prop="gidgrp.iss.pts.extkey">
<c-input v-model="model.gidgrp.iss.pts.extkey" maxlength="16" :placeholder="$t('other.please_enter')+'External Key of Address'"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="" prop="gitp.issp.ptsget.sdamod.seainf">
<c-input v-model="model.gitp.issp.ptsget.sdamod.seainf" :placeholder="$t('other.please_enter')+''"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onIsspDet">
{{$t('ptsp.CF000081')}}
</c-button>
</c-col>
<c-col :span="12">
<c-form-item label="External Key of Address" prop="gidgrp.adv.pts.extkey">
<c-input v-model="model.gidgrp.adv.pts.extkey" maxlength="16" :placeholder="$t('other.please_enter')+'External Key of Address'"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="" prop="gitp.advp.ptsget.sdamod.seainf">
<c-input v-model="model.gitp.advp.ptsget.sdamod.seainf" :placeholder="$t('other.please_enter')+''"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onAdvpDet">
{{$t('ptsp.CF000081')}}
</c-button>
</c-col> -->
<!-- S0001248 : Choice of Text -->
<!-- SF000712 : Undertaking Language -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.S0001249')" prop="gidgrp.rec.giduil">
<c-select v-model="model.gidgrp.rec.giduil" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.S0001249')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gidgrp.rec.secuilflg">{{$t('gitp.CF000694')}}</c-checkbox>
</c-col> -->
<!-- SF000706 : Issuance Date -->
<!-- <c-col :span="12">
<c-form-item label="名称" prop="gidgrp.iss.namelc">
<c-input type="textarea" v-model="model.gidgrp.iss.namelc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'名称'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="名称" prop="gidgrp.adv.namelc">
<c-input type="textarea" v-model="model.gidgrp.adv.namelc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'名称'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Address Block" prop="gidgrp.iss.pts.adrblk">
<c-input type="textarea" v-model="model.gidgrp.iss.pts.adrblk" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Address Block'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Chinese address" prop="gidgrp.iss.dbfadrblkcn">
<c-input type="textarea" v-model="model.gidgrp.iss.dbfadrblkcn" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Chinese address'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Address Block" prop="gidgrp.adv.pts.adrblk">
<c-input type="textarea" v-model="model.gidgrp.adv.pts.adrblk" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Address Block'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Chinese address" prop="gidgrp.adv.dbfadrblkcn">
<c-input type="textarea" v-model="model.gidgrp.adv.dbfadrblkcn" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Chinese address'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<el-form-item :label="$t('gitp.S0001259')" prop="gidgrp.ghd.segtyp">
<c-select v-model="model.gidgrp.ghd.segtyp" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.S0001259')">
</c-select>
</el-form-item>
</c-col> -->
<!-- S0001260 : 分离式保函 -->
<!-- <c-col :span="12">
<el-form-item label="是否分离式保函" prop="gidgrp.rec.fenlishi">
<c-select v-model="model.gidgrp.rec.fenlishi" style="width:100%" :placeholder="$t('other.please_enter')+'是否分离式保函'">
</c-select>
</el-form-item>
</c-col> -->
<!-- S0001259 : 特殊保函类型 -->
<!-- SF000711 : Choice of Text -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.S0001248')" prop="gidgrp.rec.gtxinr">
<c-select v-model="model.gidgrp.rec.gtxinr" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.S0001248')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item :label="$t('gitp.SF000711')" prop="gidgrp.rec.atxinr">
<c-select v-model="model.gidgrp.rec.atxinr" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000711')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Valid from" prop="gidgrp.rec.opndat">
<c-date-picker type="date" v-model="model.gidgrp.rec.opndat" style="width:100%" :placeholder="$t('other.please_enter')+'Valid from'"></c-date-picker>
</el-form-item>
</c-col> -->
<!-- S0001243 : Issuance Date -->
<!-- S0001251 : Order Date -->
<!-- <c-col :span="12">
<c-form-item label="地址" prop="gidgrp.iss.adrelc">
<c-input type="textarea" v-model="model.gidgrp.iss.adrelc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'地址'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="地址" prop="gidgrp.adv.adrelc">
<c-input type="textarea" v-model="model.gidgrp.adv.adrelc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'地址'" ></c-input>
</c-form-item>
</c-col> -->
<!-- SF000720 : Applicable Rules -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.S0001253')" prop="gidgrp.blk.apprul">
<c-select v-model="model.gidgrp.blk.apprul" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.S0001253')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitp.S0001253')" prop="gidgrp.blk.apprultxt">
<c-input v-model="model.gidgrp.blk.apprultxt" maxlength="35" :placeholder="$t('other.please_enter')+$t('gitp.S0001253')"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gidgrp.rec.expflg">{{$t('gitp.CG001229')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpWbxs">
{{$t('gitp.CG001236')}}
</c-button>
</c-col> -->
<!-- S0001244 : Validity until -->
<!-- SF000814 : Expiry Type -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000814')" prop="gidgrp.rec.exptyp">
<c-select v-model="model.gidgrp.rec.exptyp" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000814')">
</c-select>
</el-form-item>
</c-col> -->
<!-- SF000815 : Expiry Date -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.S0001244')" prop="gidgrp.rec.expdat">
<c-date-picker type="date" v-model="model.gidgrp.rec.expdat" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.S0001244')"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpYptxy">
{{$t('gitp.CG001235')}}
</c-button>
</c-col> -->
<!-- S0001250 : Our Liability until -->
<!-- S0001238 : Beneficiary Ref. -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitp.S0001298')" prop="gidgrp.ben.pts.ref">
<c-input v-model="model.gidgrp.ben.pts.ref" maxlength="16" :placeholder="$t('other.please_enter')+$t('gitp.S0001298')"></c-input>
</c-form-item>
</c-col> -->
<!-- SF000816 : Expiry Condition/ Evt. -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitp.SF000816')" prop="gidgrp.blk.exptxt">
<c-input type="textarea" v-model="model.gidgrp.blk.exptxt" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('gitp.SF000816')" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitp.SF000816')" prop="gidgrp.blk.atxexptxt">
<c-input type="textarea" v-model="model.gidgrp.blk.atxexptxt" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('gitp.SF000816')" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gitp.exptxtmodflg">{{$t('gitp.CF001178')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpButdifexptxt">
{{$t('gitp.CF001179')}}
</c-button>
</c-col> -->
<!-- S0001252 : Old Reference -->
<!-- S0001254 : 保函生效日 -->
<!-- <c-col :span="12">
<el-form-item label="Inure Date" prop="gidgrp.rec.inudat">
<c-date-picker type="date" v-model="model.gidgrp.rec.inudat" style="width:100%" :placeholder="$t('other.please_enter')+'Inure Date'"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Drag Drop Sender" prop="gitp.benp.ptsget.sdamod.dadsnd">
<c-input v-model="model.gitp.benp.ptsget.sdamod.dadsnd" :placeholder="$t('other.please_enter')+'Drag Drop Sender'"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="External Key of Address" prop="gidgrp.ben.pts.extkey">
<c-input v-model="model.gidgrp.ben.pts.extkey" maxlength="16" :placeholder="$t('other.please_enter')+'External Key of Address'"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="" prop="gitp.benp.ptsget.sdamod.seainf">
<c-input v-model="model.gitp.benp.ptsget.sdamod.seainf" :placeholder="$t('other.please_enter')+''"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onBenpDet">
{{$t('ptsp.CF000081')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpButdifhisexptxt">
{{$t('gitp.CF001180')}}
</c-button>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gidgrp.rec.teskeyunc">{{$t('gitp.CG001232')}}</c-checkbox>
</c-col> -->
<!-- SF001079 : Liability Type -->
<!-- S0001255 : Mortgage Flag -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF001079')" prop="gidgrp.rec.liatypc">
<c-select v-model="model.gidgrp.rec.liatypc" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF001079')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item :label="$t('gitp.S0001255')" prop="gidgrp.rec.guaflg">
<c-select v-model="model.gidgrp.rec.guaflg" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.S0001255')">
</c-select>
</el-form-item>
</c-col> -->
<!-- SF001080 : Liability until -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.S0001250')" prop="gidgrp.rec.liadat">
<c-date-picker type="date" v-model="model.gidgrp.rec.liadat" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.S0001250')"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gidgrp.rec.liaflg">{{$t('gitp.CG001230')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-form-item label="名称" prop="gidgrp.ben.namelc">
<c-input type="textarea" v-model="model.gidgrp.ben.namelc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'名称'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Address Block" prop="gidgrp.ben.pts.adrblk">
<c-input type="textarea" v-model="model.gidgrp.ben.pts.adrblk" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Address Block'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Chinese address" prop="gidgrp.ben.dbfadrblkcn">
<c-input type="textarea" v-model="model.gidgrp.ben.dbfadrblkcn" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Chinese address'" ></c-input>
</c-form-item>
</c-col> -->
<!-- S0001256 : 是否对外担保 -->
<!-- SF001081 : Liability Condition -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitp.SF001081')" prop="gidgrp.blk.liatxtc">
<c-input type="textarea" v-model="model.gidgrp.blk.liatxtc" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('gitp.SF001081')" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitp.SF001081')" prop="gidgrp.blk.atxliatxtc">
<c-input type="textarea" v-model="model.gidgrp.blk.atxliatxtc" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('gitp.SF001081')" ></c-input>
</c-form-item>
</c-col> -->
<!-- S0001257 : 担保类型 -->
<!-- <c-col :span="12">
<c-checkbox v-model="model.gitp.liatxtcmodflg">{{$t('gitp.CF001182')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpButdifliatxtc">
{{$t('gitp.CF001183')}}
</c-button>
</c-col>
<c-col :span="12">
<c-form-item label="地址" prop="gidgrp.ben.adrelc">
<c-input type="textarea" v-model="model.gidgrp.ben.adrelc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'地址'" ></c-input>
</c-form-item>
</c-col> -->
<!-- S0001261 : 被保证人 -->
<!-- <c-col :span="12">
<c-form-item label="被保证人" prop="gidgrp.gidcxm.warran">
<c-input v-model="model.gidgrp.gidcxm.warran" maxlength="40" :placeholder="$t('other.please_enter')+'被保证人'"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpButdifhisliatxtc">
{{$t('gitp.CF001184')}}
</c-button>
</c-col>
<c-col :span="12">
<el-form-item label="是否显示查询码" prop="gidgrp.gidcxm.cxmflg">
<c-select v-model="model.gidgrp.gidcxm.cxmflg" style="width:100%" :placeholder="$t('other.please_enter')+'是否显示查询码'">
</c-select>
</el-form-item>
</c-col> -->
<!-- S0001262 : 是否生成查询码 -->
</c-col>
</c-row>
</div>
</template>
<script>
import Api from "~/service/Api"
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Getame/Event"
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Getame/Event";
import Ptap from "~/views/Public/Ptap";
export default {
components: { "c-ptap": Ptap },
inject: ['root'],
props:["model","codes"],
mixins: [commonProcess],
data(){
return {
}
},
methods:{...Event},
created:function(){
}
}
components: { "c-ptap": Ptap },
inject: ["root"],
props: ["model", "codes"],
mixins: [commonProcess],
data() {
return {};
},
methods: { ...Event },
created: function () {},
};
</script>
<style>
</style>
......@@ -204,9 +204,13 @@
</c-row>
<c-col :span="24">
<el-form-item label="Additional Parties" >
<c-edit-table :model="model" v-bind="ptsaddg" style="margin-left:-120px">
<el-table-column label="操作" >
<el-form-item label="Additional Parties">
<c-edit-table
:model="model"
v-bind="ptsaddg"
style="margin-left: -120px"
>
<el-table-column label="操作">
<template slot-scope="scope">
<el-button
size="mini"
......@@ -217,8 +221,8 @@
</template>
</el-table-column>
</c-edit-table>
</el-form-item>
</c-col>
</el-form-item>
</c-col>
</div>
</template>
<script>
......
......@@ -91,12 +91,12 @@
<c-col :span="24">
<el-form-item
label="Old appr. Expiry Date"
prop="trnmod.swiadd.newdtaappexpdat"
prop="oldgidgrp.blk.dtaappexpdat"
>
<c-date-picker
disabled
type="date"
v-model="model.trnmod.swiadd.newdtaappexpdat"
v-model="model.oldgidgrp.blk.dtaappexpdat"
style="width: 100%"
placeholder="请选择"
></c-date-picker>
......@@ -122,9 +122,10 @@
prop="trnmod.swiadd.newexpdat"
>
<c-date-picker
:disabled="
:disabled="
model.trnmod.swiadd.exptyp == 'OPEN' ||
model.oldgidgrp.rec.expdat == ''
(model.trnmod.swiadd.exptyp == '' &&
model.oldgidgrp.rec.expdat == '')
"
type="date"
v-model="model.trnmod.swiadd.newexpdat"
......@@ -182,9 +183,10 @@
prop="trnmod.swiadd.newliadat"
>
<c-date-picker
:disabled="
:disabled="
model.trnmod.swiadd.liatypc == 'OPEN' ||
model.oldgidgrp.rec.liadat == ''
(model.trnmod.swiadd.liatypc == '' &&
model.oldgidgrp.rec.liadat == '')
"
type="date"
v-model="model.trnmod.swiadd.newliadat"
......
......@@ -287,14 +287,15 @@
v-model="model.trnmod.swiadd.purposame"
style="width: 100%"
placeholder="请输入Purpose of amend."
:code="getValues('trnmod.swiadd.purposame')"
>
<el-option
<!-- <el-option
v-for="item in codes.purposame"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-option> -->
</c-select>
</el-form-item>
</c-col>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment