Commit b3c94abb by nanrui

Merge branch 'development-202206' of http://114.115.138.98:8900/fukai/vue-gjjs…

Merge branch 'development-202206' of http://114.115.138.98:8900/fukai/vue-gjjs into development-202206
parents 43a5e15a 888091a1
...@@ -1479,6 +1479,14 @@ const CodeTable = { ...@@ -1479,6 +1479,14 @@ const CodeTable = {
{ label: "出口贴现", value: "D" }, { label: "出口贴现", value: "D" },
{ label: "出口押汇", value: "N" }, { label: "出口押汇", value: "N" },
], ],
boppayattr1: [
{ label: "进口信用证押汇", value: "BRF" },
{ label: "进口代收押汇", value: "BCF" },
{ label: "汇出汇款押汇(ECF)", value: "ECF" },
{ label: "汇出汇款押汇(LOA)", value: "LOA" },
{ label: "买方押汇", value: "PCL" },
{ label: "打包贷款", value: "PCF" },
],
boppayttr: [ boppayttr: [
{ label: "出口货物保险理赔", value: "I" }, { label: "出口货物保险理赔", value: "I" },
{ label: "钻石交易所", value: "D" }, { label: "钻石交易所", value: "D" },
...@@ -4161,6 +4169,16 @@ const CodeTable = { ...@@ -4161,6 +4169,16 @@ const CodeTable = {
{ label: "Drawee Bank", value: "DRO" }, { label: "Drawee Bank", value: "DRO" },
{ label: "Presenting Bnk", value: "PRE" }, { label: "Presenting Bnk", value: "PRE" },
], ],
searol4:[
{ label: "Financed Party", value: "FIP" },
{ label: "Issuing Bank", value: "ISS" },
{ label: "Old Account Party", value: "OAP" },
{ label: "Reimbursement Bank", value: "RMB" },
],
seasta:[
{ label: "Open", value: "O" },
{ label: "Closed", value: "C" },
],
seacur:[ seacur:[
{ label: `CNY-人民币`, value: `CNY` }, { label: `CNY-人民币`, value: `CNY` },
{ label: `KRW-韩元`, value: `KRW` }, { label: `KRW-韩元`, value: `KRW` },
......
...@@ -214,11 +214,27 @@ ...@@ -214,11 +214,27 @@
label="付款人常驻国家(地区)代码" label="付款人常驻国家(地区)代码"
prop="cnybop.cnyinc.spayercountrycode" prop="cnybop.cnyinc.spayercountrycode"
> >
<c-fullbox>
<c-input <c-input
v-model="model.cnybop.cnyinc.spayercountrycode" v-model="model.cnybop.cnyinc.spayercountrycode"
maxlength="3" maxlength="3"
placeholder="请输入付款人常驻国家(地区)代码" placeholder="请输入付款人常驻国家(地区)代码"
@keyup.enter.native="
showGridPromptDialog(`cnybop.cnyinc.spayercountrycode`)
"
></c-input> ></c-input>
<template slot="footer">
<c-button
size="small"
type="primary"
icon="el-icon-search"
@click="onIncctySelbut1"
>
?
</c-button>
</template>
</c-fullbox>
</c-form-item> </c-form-item>
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
......
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
</c-content> </c-content>
</el-tab-pane> </el-tab-pane>
<el-tab-pane v-if="this.flag" label="Bookings" name="glepan"> <el-tab-pane label="Bookings" name="glepan">
<c-content> <c-content>
<m-glepan :model="model" :codes="codes"/> <m-glepan :model="model" :codes="codes"/>
</c-content> </c-content>
...@@ -104,6 +104,12 @@ ...@@ -104,6 +104,12 @@
</el-tab-pane> </el-tab-pane>
</c-tabs> </c-tabs>
</el-form> </el-form>
<c-grid-ety-prompt-dialog
ref="etyDialog"
:promptData="promptData"
v-on:select-ety="selectEty"
>
</c-grid-ety-prompt-dialog>
</div> </div>
</template> </template>
<script> <script>
......
...@@ -734,10 +734,6 @@ ...@@ -734,10 +734,6 @@
>Close Claim</c-checkbox >Close Claim</c-checkbox
> >
</c-col> </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> </c-col>
<!-- 右边为swift格式 --> <!-- 右边为swift格式 -->
...@@ -859,9 +855,6 @@ ...@@ -859,9 +855,6 @@
>Create Amendment Message</c-checkbox >Create Amendment Message</c-checkbox
> >
</c-col> </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>
<c-col :span="24"> <c-col :span="24">
<c-col :span="6" :offset="6"> <c-col :span="6" :offset="6">
...@@ -919,13 +912,6 @@ export default { ...@@ -919,13 +912,6 @@ export default {
}, },
methods: { methods: {
...Event, ...Event,
// async plateflgChange() {
// let rtnmsg = await this.executeRule("gitamep.plateflg")
// if (rtnmsg.respCode == SUCCESS) {
// Utils.copyValueFromVO(this.model, rtnmsg.data);
// }
// },
async reqChange() { async reqChange() {
let rtnmsg = await this.executeRule("gitamep.ametxt"); let rtnmsg = await this.executeRule("gitamep.ametxt");
if (rtnmsg.respCode == SUCCESS) { if (rtnmsg.respCode == SUCCESS) {
......
...@@ -64,7 +64,6 @@ ...@@ -64,7 +64,6 @@
>跨境人民币保函</c-checkbox >跨境人民币保函</c-checkbox
> >
</c-col> </c-col>
<!-- <c-checkbox v-if="model.gidgrp.rec.fingua=='Y'" disabled v-model="model.gidgrp.rec.cmtflg">跨境人民币保函</c-checkbox> -->
</c-col> </c-col>
</div> </div>
</template> </template>
......
...@@ -190,20 +190,6 @@ ...@@ -190,20 +190,6 @@
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<!-- <c-col :span="24">
<c-ptap v-if="model.gitp.swiftflg=='N'"
:model="model"
:argadr="{
title: 'Confirming Bank',
grp: 'gidgrp',
rol: 'con',
}"
:disabled="true"
@onAplpDet="onConpDet"
>
</c-ptap>
</c-col> -->
</c-col> </c-col>
<c-col :span="11" :offset="1"> <c-col :span="11" :offset="1">
......
...@@ -57,7 +57,9 @@ ...@@ -57,7 +57,9 @@
</el-tab-pane> </el-tab-pane>
<!--gitp PD000389 Details --> <!--gitp PD000389 Details -->
<el-tab-pane label="Details" name="detp"> <el-tab-pane label="Details" name="detp">
<m-detp :model="model" :codes="codes" /> <c-content>
<m-detp :model="model" :codes="codes" />
</c-content>
</el-tab-pane> </el-tab-pane>
<el-tab-pane <el-tab-pane
......
...@@ -61,39 +61,6 @@ ...@@ -61,39 +61,6 @@
</c-col> </c-col>
</c-col> </c-col>
</c-row> </c-row>
<!-- SF000004 : Additional Amount -->
<!-- <c-col :span="12">
<c-form-item :label="$t('aacp.SF000004')" prop="gidgrp.cbs.mac2.cur">
<c-input v-model="model.gidgrp.cbs.mac2.cur" maxlength="3" :placeholder="$t('other.please_enter')+$t('aacp.SF000004')"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Balance" prop="gidgrp.cbs.mac2.amt">
<c-input v-model="model.gidgrp.cbs.mac2.amt" :placeholder="$t('other.please_enter')+'Balance'"></c-input>
</c-form-item>
</c-col> -->
<!-- SF000008 : Open Add. Amount -->
<!-- <c-col :span="12">
<c-form-item :label="$t('aacp.SF000008')" prop="gidgrp.cbs.opc2.cur">
<c-input v-model="model.gidgrp.cbs.opc2.cur" maxlength="3" :placeholder="$t('other.please_enter')+$t('aacp.SF000008')"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Balance" prop="gidgrp.cbs.opc2.amt">
<c-input v-model="model.gidgrp.cbs.opc2.amt" :placeholder="$t('other.please_enter')+'Balance'"></c-input>
</c-form-item>
</c-col> -->
<!-- SF000009 : Covered -->
<!-- <c-col :span="12">
<c-form-item :label="$t('aacp.SF000009')" prop="gidgrp.blk.addamtcovc">
<c-input type="textarea" v-model="model.gidgrp.blk.addamtcovc" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('aacp.SF000009')" ></c-input>
</c-form-item>
</c-col> -->
</div> </div>
</template> </template>
<script> <script>
......
...@@ -304,130 +304,6 @@ ...@@ -304,130 +304,6 @@
<c-col :span="11" :offset="1"> </c-col> <c-col :span="11" :offset="1"> </c-col>
</c-col> </c-col>
</c-row> </c-row>
<!-- SF001031 : Confirmation Status -->
<!-- SF000895 : Received Confirmation Instructions: -->
<!--
<c-col :span="12">
<el-form-item :label="$t('gitp.SF000888')" prop="gidgrp.rec.cnfsta">
<c-select v-model="model.gidgrp.rec.cnfsta" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000888')">
</c-select>
</el-form-item>
</c-col> -->
<!-- SF000894 : Outgoing Confirmation Instructions: -->
<!-- SF001030 : Confirmation Amount -->
<!-- SF000896 : Confirm. Instr. -->
<!--
<c-col :span="12">
<el-form-item :label="$t('gitp.SF000896')" prop="gidgrp.rec.reccnfdet">
<c-select v-model="model.gidgrp.rec.reccnfdet" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000896')">
</c-select>
</el-form-item>
</c-col> -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitp.SF000890')" prop="gidgrp.cbs.cnf.cur">
<c-input v-model="model.gidgrp.cbs.cnf.cur" maxlength="3" :placeholder="$t('other.please_enter')+$t('gitp.SF000890')"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Balance" prop="gidgrp.cbs.cnf.amt">
<c-input v-model="model.gidgrp.cbs.cnf.amt" :placeholder="$t('other.please_enter')+'Balance'"></c-input>
</c-form-item>
</c-col> -->
<!-- SF001032 : or -->
<!-- <c-col :span="12">
<c-form-item label="Partial Confirmation" prop="gidgrp.rec.partcon">
<c-input v-model="model.gidgrp.rec.partcon" :placeholder="$t('other.please_enter')+'Partial Confirmation'"></c-input>
</c-form-item>
</c-col> -->
<!-- SF000729 : Confirm. Instr. -->
<!-- SF001033 : % -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000729')" prop="gidgrp.rec.cnfdet">
<c-select v-model="model.gidgrp.rec.cnfdet" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000729')">
</c-select>
</el-form-item>
</c-col> -->
<!-- SF001034 : Confirmed on -->
<!-- SF001077 : Confirm. Bank Ref. -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000889')" prop="gidgrp.rec.cnfdat">
<c-date-picker type="date" v-model="model.gidgrp.rec.cnfdat" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000889')"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitp.SF001077')" prop="gidgrp.cnr.pts.ref">
<c-input v-model="model.gidgrp.cnr.pts.ref" maxlength="16" :placeholder="$t('other.please_enter')+$t('gitp.SF001077')"></c-input>
</c-form-item>
</c-col> -->
<!-- SF001078 : Confirm. Bank Ref. -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitp.SF001078')" prop="gidgrp.con.pts.ref">
<c-input v-model="model.gidgrp.con.pts.ref" maxlength="16" :placeholder="$t('other.please_enter')+$t('gitp.SF001078')"></c-input>
</c-form-item>
</c-col> -->
<!-- SF000898 : Confirming Bank -->
<!-- <c-col :span="12">
<c-form-item label="Drag Drop Sender" prop="gitp.cnrp.ptsget.sdamod.dadsnd">
<c-input v-model="model.gitp.cnrp.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.cnr.pts.extkey">
<c-input v-model="model.gidgrp.cnr.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.cnrp.ptsget.sdamod.seainf">
<c-input v-model="model.gitp.cnrp.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="onCnrpDet">
{{$t('ptsp.CF000081')}}
</c-button>
</c-col> -->
<!-- SF000730 : Confirming Bank -->
<!-- <c-col :span="12">
<c-form-item label="名称" prop="gidgrp.cnr.namelc">
<c-input type="textarea" v-model="model.gidgrp.cnr.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.cnr.pts.adrblk">
<c-input type="textarea" v-model="model.gidgrp.cnr.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.cnr.dbfadrblkcn">
<c-input type="textarea" v-model="model.gidgrp.cnr.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="地址" prop="gidgrp.cnr.adrelc">
<c-input type="textarea" v-model="model.gidgrp.cnr.adrelc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'地址'" ></c-input>
</c-form-item>
</c-col> -->
<!-- SF000887 : Own confirmation details: -->
<!-- SF000888 : Confirmation Status -->
<!-- SF000890 : Confirmation Amount -->
<!-- SF000892 : or -->
<!-- SF000893 : % -->
<!-- SF000889 : Confirmation Date -->
</div> </div>
</template> </template>
<script> <script>
......
...@@ -271,147 +271,6 @@ ...@@ -271,147 +271,6 @@
</c-col> </c-col>
</c-col> </c-col>
</c-row> </c-row>
<!-- SF000840 : Contract Reference -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitp.SF000840')" prop="gidgrp.rec.orcrefc">
<c-input v-model="model.gidgrp.rec.orcrefc" maxlength="35" :placeholder="$t('other.please_enter')+$t('gitp.SF000840')"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Date from Original Contract - Local Undertaking Seq. C" prop="gidgrp.rec.orcdatc">
<c-date-picker type="date" v-model="model.gidgrp.rec.orcdatc" style="width:100%" :placeholder="$t('other.please_enter')+'Date from Original Contract - Local Undertaking Seq. C'"></c-date-picker>
</el-form-item>
</c-col> -->
<!-- SF000845 : Closing Date -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000845')" prop="gidgrp.rec.tenclsdatc">
<c-date-picker type="date" v-model="model.gidgrp.rec.tenclsdatc" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000845')"></c-date-picker>
</el-form-item>
</c-col> -->
<!-- SF000846 : Underly. Transact. Det. -->
<!-- <c-col :span="12">
<c-form-item label="Object of Contract - Local Undertaking Seq. C" prop="gidgrp.blk.covgodsrvc">
<c-input type="textarea" v-model="model.gidgrp.blk.covgodsrvc" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+'Object of Contract - Local Undertaking Seq. C'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitp.SF000846')" prop="gidgrp.blk.atxcovgodsrvc">
<c-input type="textarea" v-model="model.gidgrp.blk.atxcovgodsrvc" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('gitp.SF000846')" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gitp.covgodsrvcmodflg">{{$t('gitp.CF001217')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpButdifcovgodsrvc">
{{$t('gitp.CF001218')}}
</c-button>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gitp.covgodc.chkast">{{$t('gitp.CF001088')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpButdifhiscovgodsrvc">
{{$t('gitp.CF001219')}}
</c-button>
</c-col> -->
<!-- SF000841 : Original Perc./ Rate -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitp.SF000841')" prop="gidgrp.rec.orcratc">
<c-input v-model="model.gidgrp.rec.orcratc" :placeholder="$t('other.please_enter')+$t('gitp.SF000841')"></c-input>
</c-form-item>
</c-col> -->
<!-- SF000842 : Contract Amount -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000842')" prop="gidgrp.rec.orccurc">
<c-select v-model="model.gidgrp.rec.orccurc" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000842')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitp.SF000842')" prop="gidgrp.rec.orcamtc">
<c-input v-model="model.gidgrp.rec.orcamtc" :placeholder="$t('other.please_enter')+$t('gitp.SF000842')"></c-input>
</c-form-item>
</c-col> -->
<!-- SF000843 : Original Contract Place -->
<!-- <c-col :span="12">
<c-form-item label="Original Contract Place - Local Undertaking Seq. C" prop="gidgrp.blk.orcplcc">
<c-input type="textarea" v-model="model.gidgrp.blk.orcplcc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Original Contract Place - Local Undertaking Seq. C'" ></c-input>
</c-form-item>
</c-col> -->
<!-- SF000850 : A/c Adv. Paym. Guar. -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitp.SF000850')" prop="gidgrp.rec.accc">
<c-input v-model="model.gidgrp.rec.accc" maxlength="35" :placeholder="$t('other.please_enter')+$t('gitp.SF000850')"></c-input>
</c-form-item>
</c-col> -->
<!-- SF000844 : Governing Law -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000844')" prop="gidgrp.rec.jurlawc">
<c-select v-model="model.gidgrp.rec.jurlawc" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000844')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitp.SF000844')" prop="gidgrp.rec.jurlawtxtc">
<c-input v-model="model.gidgrp.rec.jurlawtxtc" maxlength="65" :placeholder="$t('other.please_enter')+$t('gitp.SF000844')"></c-input>
</c-form-item>
</c-col> -->
<!-- SF000851 : Place of Jurisdiction -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitp.SF000851')" prop="gidgrp.rec.jurplcc">
<c-input v-model="model.gidgrp.rec.jurplcc" maxlength="65" :placeholder="$t('other.please_enter')+$t('gitp.SF000851')"></c-input>
</c-form-item>
</c-col> -->
<!-- SF000847 : Tender Reference -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitp.SF000847')" prop="gidgrp.rec.tenrefc">
<c-input v-model="model.gidgrp.rec.tenrefc" maxlength="35" :placeholder="$t('other.please_enter')+$t('gitp.SF000847')"></c-input>
</c-form-item>
</c-col> -->
<!-- SF000848 : Tender Date -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000848')" prop="gidgrp.rec.tendatc">
<c-date-picker type="date" v-model="model.gidgrp.rec.tendatc" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000848')"></c-date-picker>
</el-form-item>
</c-col> -->
<!-- SF000849 : Latest Transmission -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000849')" prop="gidgrp.rec.trmdatc">
<c-date-picker type="date" v-model="model.gidgrp.rec.trmdatc" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000849')"></c-date-picker>
</el-form-item>
</c-col> -->
<!-- SF001231 : Additional Text -->
<!-- <c-col :span="12">
<c-form-item label="Additional Info - Local Undertaking Seq. C" prop="gidgrp.blk.addinfc">
<c-input type="textarea" v-model="model.gidgrp.blk.addinfc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Additional Info - Local Undertaking Seq. C'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<span v-text="model.gitp.labaddinfc" data-path=".gitp.labaddinfc" > </span>
</c-col> -->
</div> </div>
</template> </template>
<script> <script>
......
...@@ -120,51 +120,6 @@ ...@@ -120,51 +120,6 @@
</c-col> </c-col>
</c-col> </c-col>
</c-row> </c-row>
<!-- SF000350 : Text of Undertaking -->
<!--
<c-col :span="12">
<c-checkbox v-model="model.gitp.gidtxtmodflg">{{$t('gitp.CF000347')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-form-item label="Guarantee Text" prop="gidgrp.blk.gidtxt">
<c-input type="textarea" v-model="model.gidgrp.blk.gidtxt" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+'Guarantee Text'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Guarantee Text with Variables" prop="gidgrp.blk.gtxgidtxt">
<c-input type="textarea" v-model="model.gidgrp.blk.gtxgidtxt" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+'Guarantee Text with Variables'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gitp.chkgidtxt">{{$t('gitp.CF001173')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpButdif">
{{$t('gitp.CF000348')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpButdifhis">
{{$t('gitp.CF000351')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpShwgidtxt">
{{$t('gitp.CF000384')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpGidtxtmod">
{{$t('gitp.CG000442')}}
</c-button>
</c-col> -->
</div> </div>
</template> </template>
<script> <script>
......
...@@ -120,57 +120,6 @@ ...@@ -120,57 +120,6 @@
</c-col> </c-col>
</c-col> </c-col>
</c-row> </c-row>
<!-- SF000792 : Undertaking Text -->
<!-- <c-col :span="12">
<c-form-item label="Guarantee Text local undertaking" prop="gidgrp.blk.gidtxtc">
<c-input type="textarea" v-model="model.gidgrp.blk.gidtxtc" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+'Guarantee Text local undertaking'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Guarantee Text with Variables - Counter Undertaking" prop="gidgrp.blk.gtxgidtxtc">
<c-input type="textarea" v-model="model.gidgrp.blk.gtxgidtxtc" maxlength="1" show-word-limit :placeholder="$t('other.please_enter')+'Guarantee Text with Variables - Counter Undertaking'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpButgetrefc">
{{$t('gitp.CF000787')}}
</c-button>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gitp.gidtxtmodflgc">{{$t('gitp.CF000786')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gitp.chkgidtxtc">{{$t('gitp.CF001176')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpButdifc">
{{$t('gitp.CF000788')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpButdifhisc">
{{$t('gitp.CF000789')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpShwgidtxtc">
{{$t('gitp.CF000852')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpGidtxtmodc">
{{$t('gitp.CG001303')}}
</c-button>
</c-col> -->
</div> </div>
</template> </template>
<script> <script>
......
...@@ -66,34 +66,6 @@ ...@@ -66,34 +66,6 @@
</c-col> </c-col>
<!-- <c-checkbox v-if="model.gidgrp.rec.fingua=='Y'" disabled v-model="model.gidgrp.rec.cmtflg">跨境人民币保函</c-checkbox> --> <!-- <c-checkbox v-if="model.gidgrp.rec.fingua=='Y'" disabled v-model="model.gidgrp.rec.cmtflg">跨境人民币保函</c-checkbox> -->
</c-col> </c-col>
<!-- SG001294 : 是否SWIFT格式 -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SG001294')" prop="gitp.swiftflg">
<c-select v-model="model.gitp.swiftflg" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SG001294')">
</c-select>
</el-form-item>
</c-col> -->
<!-- S0001304 : 是否对外担保 -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.S0001256')" prop="gidgrp.rec.fingua">
<c-select v-model="model.gidgrp.rec.fingua" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.S0001256')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="对外担保类型" prop="gidgrp.rec.cfaguatyp">
<c-select v-model="model.gidgrp.rec.cfaguatyp" style="width:100%" :placeholder="$t('other.please_enter')+'对外担保类型'">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gidgrp.rec.cmtflg">{{$t('gitp.CG001233')}}</c-checkbox>
</c-col> -->
<!-- S0001305 : 担保类型 -->
</div> </div>
</template> </template>
<script> <script>
......
...@@ -149,24 +149,6 @@ ...@@ -149,24 +149,6 @@
</c-col> </c-col>
</c-col> </c-col>
<!-- <c-col :span="24">
<el-form-item label="Type of Request" prop="gidgrp.rec.drpreflg">
<c-select
v-model="model.gidgrp.rec.drpreflg"
style="width: 100%"
placeholder="请选择Type of Request"
>
<el-option
v-for="item in codes.drpreflg"
: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="24">
<el-form-item <el-form-item
v-show="model.gitp.swiftflg == 'Y'" v-show="model.gitp.swiftflg == 'Y'"
......
...@@ -259,102 +259,6 @@ ...@@ -259,102 +259,6 @@
</c-col> </c-col>
</c-col> </c-col>
</c-row> </c-row>
<!-- SF000750 : Requested Issue Date -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000750')" prop="gidgrp.rec.opndatc">
<c-date-picker type="date" v-model="model.gidgrp.rec.opndatc" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000750')"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gidgrp.rec.autrnwflgc">{{$t('gitp.CF000898')}}</c-checkbox>
</c-col> -->
<!-- SF000778 : Guarantee Amount -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000778')" prop="gidgrp.cbs.mac.cur">
<c-select v-model="model.gidgrp.cbs.mac.cur" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000778')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitp.SF000778')" prop="gidgrp.cbs.mac.amt">
<c-input v-model="model.gidgrp.cbs.mac.amt" :placeholder="$t('other.please_enter')+$t('gitp.SF000778')"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gitp.aacp.aacmod.addamtflg">{{$t('gitp.CF000780')}}</c-checkbox>
</c-col> -->
<!-- SF000754 : Undertaking Type -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000754')" prop="gidgrp.rec.gartypc">
<c-select v-model="model.gidgrp.rec.gartypc" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000754')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitp.SF000754')" prop="gidgrp.blk.gartyptxtc">
<c-input v-model="model.gidgrp.blk.gartyptxtc" maxlength="35" :placeholder="$t('other.please_enter')+$t('gitp.SF000754')"></c-input>
</c-form-item>
</c-col> -->
<!-- SF000751 : Form of Undertaking -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000751')" prop="gidgrp.rec.legfrmc">
<c-select v-model="model.gidgrp.rec.legfrmc" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000751')">
</c-select>
</el-form-item>
</c-col> -->
<!-- SF000883 : Demand Indicator -->
<!--
<c-col :span="12">
<el-form-item :label="$t('gitp.SF000883')" prop="gidgrp.rec.demandc">
<c-select v-model="model.gidgrp.rec.demandc" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000883')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gidgrp.rec.stdwrdc">{{$t('gitp.CF000762')}}</c-checkbox>
</c-col> -->
<!-- SF000884 : Requested Language -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000884')" prop="gidgrp.rec.stdwrduilc">
<c-select v-model="model.gidgrp.rec.stdwrduilc" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000884')">
</c-select>
</el-form-item>
</c-col> -->
<!-- SF000852 : Choice of Text -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000852')" prop="gidgrp.rec.gtxinrc">
<c-select v-model="model.gidgrp.rec.gtxinrc" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000852')">
</c-select>
</el-form-item>
</c-col> -->
<!-- SF000752 : Applicable Rules -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000752')" prop="gidgrp.blk.apprulc">
<c-select v-model="model.gidgrp.blk.apprulc" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000752')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitp.SF000752')" prop="gidgrp.blk.apprultxtc">
<c-input v-model="model.gidgrp.blk.apprultxtc" maxlength="35" :placeholder="$t('other.please_enter')+$t('gitp.SF000752')"></c-input>
</c-form-item>
</c-col> -->
<!-- SF001085 : Expiry Type -->
<!-- SF001086 : Expiry Date -->
<!-- SF001087 : Expiry Condition/ Evt. -->
</div> </div>
</template> </template>
<script> <script>
......
...@@ -175,97 +175,6 @@ ...@@ -175,97 +175,6 @@
</c-col> </c-col>
</c-col> </c-col>
</c-row> </c-row>
<!-- SF000875 : Delivery of Undertak. -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000875')" prop="gidgrp.rec.deloric">
<c-select v-model="model.gidgrp.rec.deloric" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000875')">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitp.SF000875')" prop="gidgrp.rec.deloritxtc">
<c-input v-model="model.gidgrp.rec.deloritxtc" maxlength="35" :placeholder="$t('other.please_enter')+$t('gitp.SF000875')"></c-input>
</c-form-item>
</c-col> -->
<!-- SF000872 : Charges -->
<!-- <c-col :span="12">
<c-form-item label="Additional Details to Code for Charges" prop="gidgrp.blk.feetxtc">
<c-input type="textarea" v-model="model.gidgrp.blk.feetxtc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Additional Details to Code for Charges'" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" icon="el-icon-search" @click="onChargicButtxmsel">
{{$t('gitp.CF000878')}}
</c-button>
</c-col> -->
<!-- SF000878 : Deli. To/Collection By -->
<!-- <c-col :span="12">
<el-form-item :label="$t('gitp.SF000878')" prop="gidgrp.rec.deltoc">
<c-select v-model="model.gidgrp.rec.deltoc" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SF000878')">
</c-select>
</el-form-item>
</c-col> -->
<!-- SF000879 : Delivery to Address -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitp.SF000879')" prop="gidgrp.blk.deltoadrc">
<c-input type="textarea" v-model="model.gidgrp.blk.deltoadrc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+$t('gitp.SF000879')" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gitp.chargic.chkast">{{$t('gitp.CF000879')}}</c-checkbox>
</c-col> -->
<!-- SF000877 : Presentation Instr. -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitp.SF000877')" prop="gidgrp.blk.preperc">
<c-input type="textarea" v-model="model.gidgrp.blk.preperc" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('gitp.SF000877')" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitp.SF000877')" prop="gidgrp.blk.atxpreperc">
<c-input type="textarea" v-model="model.gidgrp.blk.atxpreperc" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('gitp.SF000877')" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gitp.prepercmodflg">{{$t('gitp.CF001195')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gitp.chkpreperc">{{$t('gitp.CF001196')}}</c-checkbox>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpButdifpreperc">
{{$t('gitp.CF001197')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onGitpButdifhispreperc">
{{$t('gitp.CF001198')}}
</c-button>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.gidgrp.rec.transferc">{{$t('gitp.CF000877')}}</c-checkbox>
</c-col> -->
<!-- SF000880 : Transfer Conditions -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitp.SF000880')" prop="gidgrp.blk.trfcondc">
<c-input type="textarea" v-model="model.gidgrp.blk.trfcondc" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('gitp.SF000880')" ></c-input>
</c-form-item>
</c-col> -->
</div> </div>
</template> </template>
<script> <script>
......
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
<c-col :span="24"> <c-col :span="24">
<el-form-item label="地址名称" prop="gidgrp.apc.pts.adrblk"> <el-form-item label="地址名称" prop="gidgrp.apc.pts.adrblk">
<c-input <c-input
:disabled="model.gidgrp.apc.pts.abrblk!=''" :disabled="model.gidgrp.apc.pts.abrblk != ''"
rows="4" rows="4"
type="textarea" type="textarea"
v-model="model.gidgrp.apc.pts.adrblk" v-model="model.gidgrp.apc.pts.adrblk"
...@@ -190,7 +190,7 @@ ...@@ -190,7 +190,7 @@
> >
</c-button> </c-button>
<c-button <c-button
:disabled="model.gidgrp.iss.pts.adrblk==''" :disabled="model.gidgrp.iss.pts.adrblk == ''"
size="small" size="small"
type="primary" type="primary"
@click="onIsspDet" @click="onIsspDet"
...@@ -253,7 +253,7 @@ ...@@ -253,7 +253,7 @@
> >
</c-button> </c-button>
<c-button <c-button
:disabled="model.gidgrp.ben.pts.adrblk==''" :disabled="model.gidgrp.ben.pts.adrblk == ''"
size="small" size="small"
type="primary" type="primary"
@click="onBenpDet" @click="onBenpDet"
......
...@@ -165,10 +165,7 @@ ...@@ -165,10 +165,7 @@
<m-aacp :model="model" :codes="codes" /> <m-aacp :model="model" :codes="codes" />
</c-content> </c-content>
</el-tab-pane> </el-tab-pane>
<!--gitp PD000409 Confirmation Details -->
<!-- <el-tab-pane :label="$t('gitp.PD000409')" name="confp">
<m-confp :model="model" :codes="codes"/>
</el-tab-pane> -->
</c-tabs> </c-tabs>
</el-form> </el-form>
<c-grid-ety-prompt-dialog <c-grid-ety-prompt-dialog
...@@ -267,8 +264,8 @@ export default { ...@@ -267,8 +264,8 @@ export default {
if (name === "setpan") { if (name === "setpan") {
this.flag = true; this.flag = true;
} }
if(name === "ptypc") { if (name === "ptypc") {
rulePath="gitp.ptypc"; rulePath = "gitp.ptypc";
} }
if (!!rulePath) { if (!!rulePath) {
this.executeRule(rulePath).then((res) => { this.executeRule(rulePath).then((res) => {
......
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<!-- S0000042 : 是否报送跨境人民币2101表 --> <!-- S0000042 : 是否报送跨境人民币2101表 -->
<c-col :span="12"> <c-col :span="12">
<el-form-item label="是否报送跨境人民币2101表" prop="cnybop.cnyflg"> <el-form-item label="是否报送跨境人民币2101表" prop="cnybop.cnyflg">
<c-select disabled :code="codes.cnyflg" v-model="model.cnybop.cnyflg" style="width:100%" placeholder="请选择"> <c-select
</c-select> disabled
</el-form-item> :code="codes.cnyflg"
</c-col> v-model="model.cnybop.cnyflg"
<!-- S0000045 : 是否报送跨境人民币2107表 --> style="width: 100%"
placeholder="请选择"
<c-col :span="12"> >
<el-form-item label="是否报送跨境人民币2107表" prop="cnybop.traflg"> </c-select>
<c-select disabled :code="codes.traflg" v-model="model.cnybop.traflg" style="width:100%" placeholder="请选择"> </el-form-item>
</c-select> </c-col>
</el-form-item> <!-- S0000045 : 是否报送跨境人民币2107表 -->
</c-col>
<!-- S0000077 : 是否报送跨境人民币2111表 --> <c-col :span="12">
<el-form-item label="是否报送跨境人民币2107表" prop="cnybop.traflg">
<c-col :span="12"> <c-select
<el-form-item label="是否报送跨境人民币2111表" prop="cnybop.outflg"> disabled
<c-select disabled :code="codes.outflg" v-model="model.cnybop.outflg" style="width:100%" placeholder="请选择"> :code="codes.traflg"
</c-select> v-model="model.cnybop.traflg"
</el-form-item> style="width: 100%"
</c-col> placeholder="请选择"
<!-- S0000113 : 是否报送跨境人民币2106表 --> >
</c-select>
<c-col :span="12"> </el-form-item>
<el-form-item label="是否报送跨境人民币2106表" prop="cnybop.libflg"> </c-col>
<c-select disabled :code="codes.libflg" v-model="model.cnybop.libflg" style="width:100%" placeholder="请选择"> <!-- S0000077 : 是否报送跨境人民币2111表 -->
</c-select>
</el-form-item> <c-col :span="12">
</c-col> <el-form-item label="是否报送跨境人民币2111表" prop="cnybop.outflg">
<!-- S0000142 : 是否报送跨境人民币2122表 --> <c-select
disabled
<c-col :span="12"> :code="codes.outflg"
<el-form-item label="是否报送跨境人民币2122表" prop="cnybop.vouflg"> v-model="model.cnybop.outflg"
<c-select disabled :code="codes.vouflg" v-model="model.cnybop.vouflg" style="width:100%" placeholder="请选择"> style="width: 100%"
</c-select> placeholder="请选择"
</el-form-item> >
</c-col> </c-select>
</el-form-item>
</c-col>
<!-- S0000113 : 是否报送跨境人民币2106表 -->
<c-col :span="12">
<el-form-item label="是否报送跨境人民币2106表" prop="cnybop.libflg">
<c-select
disabled
:code="codes.libflg"
v-model="model.cnybop.libflg"
style="width: 100%"
placeholder="请选择"
>
</c-select>
</el-form-item>
</c-col>
<!-- S0000142 : 是否报送跨境人民币2122表 -->
<c-col :span="12">
<el-form-item label="是否报送跨境人民币2122表" prop="cnybop.vouflg">
<c-select
disabled
:code="codes.vouflg"
v-model="model.cnybop.vouflg"
style="width: 100%"
placeholder="请选择"
>
</c-select>
</el-form-item>
</c-col>
</div> </div>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable";
import Event from "~/model/Getset/Event" import Event from "~/model/Getset/Event";
export default { export default {
inject: ['root'], inject: ["root"],
props:["model","codes"], props: ["model", "codes"],
mixins: [commonProcess], mixins: [commonProcess],
data(){ data() {
return { return {};
},
} methods: { ...Event },
}, created: function () {},
methods:{...Event}, };
created:function(){
}
}
</script> </script>
<style> <style>
</style> </style>
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<c-col :span="12">
<c-col :span="12"> <el-form-item label="File Receiver" prop="trnmod.trndoc.filrecv">
<el-form-item label="File Receiver" prop="trnmod.trndoc.filrecv"> <c-input
<c-input v-model="model.trnmod.trndoc.filrecv" placeholder="请输入File Receiver"></c-input> v-model="model.trnmod.trndoc.filrecv"
</el-form-item> placeholder="请输入File Receiver"
</c-col> ></c-input>
</el-form-item>
<c-col :span="12"> </c-col>
<el-form-item label="Document tree" prop="trnmod.trndoc.doctrestm">
<c-input v-model="model.trnmod.trndoc.doctrestm" placeholder="请输入Document tree"></c-input> <c-col :span="12">
</el-form-item> <el-form-item label="Document tree" prop="trnmod.trndoc.doctrestm">
</c-col> <c-input
v-model="model.trnmod.trndoc.doctrestm"
<c-col :span="12"> placeholder="请输入Document tree"
<c-button size="small" type="primary" @click="onTrndocButshw"> ></c-input>
Sho&w </el-form-item>
</c-button> </c-col>
</c-col>
<c-col :span="12">
<c-col :span="12"> <c-button size="small" type="primary" @click="onTrndocButshw">
<c-button size="small" type="primary" @click="onTrndocButadd"> Sho&w
D&etails </c-button>
</c-button> </c-col>
</c-col>
<c-col :span="12">
<c-col :span="12"> <c-button size="small" type="primary" @click="onTrndocButadd">
<c-button size="small" type="primary" @click="onTrndocButnew"> D&etails
&Add New </c-button>
</c-button> </c-col>
</c-col>
<c-col :span="12">
<c-col :span="12"> <c-button size="small" type="primary" @click="onTrndocButnew">
<c-button size="small" type="primary" @click="onTrndocButattto"> &Add New
Attach to </c-button>
</c-button> </c-col>
</c-col>
<c-col :span="12">
<c-col :span="12"> <c-button size="small" type="primary" @click="onTrndocButattto">
<c-button size="small" icon="el-icon-delete" @click="onTrndocButdel"> Attach to
Delete </c-button>
</c-button> </c-col>
</c-col>
<c-col :span="12">
<c-col :span="12"> <c-button size="small" icon="el-icon-delete" @click="onTrndocButdel">
<span v-text="model.trnmod.trndoc.doclbl" data-path=".trnmod.trndoc.doclbl" > </span> Delete
</c-col> </c-button>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.trnmod.trndoc.shwinc">Show Incoming Messages</c-checkbox> <c-col :span="12">
</c-col> <span
v-text="model.trnmod.trndoc.doclbl"
<c-col :span="12"> data-path=".trnmod.trndoc.doclbl"
<c-checkbox v-model="model.trnmod.trndoc.shwout">Show Outgoing Messages</c-checkbox> >
</c-col> </span>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onTrndocButatt"> <c-col :span="12">
Attach <c-checkbox v-model="model.trnmod.trndoc.shwinc"
</c-button> >Show Incoming Messages</c-checkbox
</c-col> >
</c-col>
<c-col :span="12">
<el-form-item label="Connected Documents" prop="trnmod.trndoc.condocstm"> <c-col :span="12">
<c-input v-model="model.trnmod.trndoc.condocstm" placeholder="请输入Connected Documents"></c-input> <c-checkbox v-model="model.trnmod.trndoc.shwout"
</el-form-item> >Show Outgoing Messages</c-checkbox
</c-col> >
</c-col>
<c-col :span="12">
<el-form-item label="" prop="trnmod.trndoc.rcvatt.seainf"> <c-col :span="12">
<c-input v-model="model.trnmod.trndoc.rcvatt.seainf" placeholder="请输入"></c-input> <c-button size="small" type="primary" @click="onTrndocButatt">
</el-form-item> Attach
</c-col> </c-button>
</c-col>
<c-col :span="12">
<el-form-item label="Connected Documents" prop="trnmod.trndoc.condocstm">
<c-input
v-model="model.trnmod.trndoc.condocstm"
placeholder="请输入Connected Documents"
></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="" prop="trnmod.trndoc.rcvatt.seainf">
<c-input
v-model="model.trnmod.trndoc.rcvatt.seainf"
placeholder="请输入"
></c-input>
</el-form-item>
</c-col>
</div> </div>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable";
import Event from "~/model/Getset/Event" import Event from "~/model/Getset/Event";
export default { export default {
inject: ['root'], inject: ["root"],
props:["model","codes"], props: ["model", "codes"],
mixins: [commonProcess], mixins: [commonProcess],
data(){ data() {
return { return {};
},
} methods: { ...Event },
}, created: function () {},
methods:{...Event}, };
created:function(){
}
}
</script> </script>
<style> <style>
</style> </style>
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<!-- ===================Left================= --> <!-- ===================Left================= -->
<c-col :span="12"> <c-col :span="12">
<c-col :span="24"> <c-col :span="24">
<el-form-item label="Input Account" prop="lendoc.actflg"> <el-form-item label="Input Account" prop="lendoc.actflg">
<c-col :span="3"> <c-col :span="3">
<c-checkbox v-model="model.lendoc.actflg"></c-checkbox> <c-checkbox v-model="model.lendoc.actflg"></c-checkbox>
</c-col> </c-col>
<c-col :span="21"> <c-col :span="21">
<c-input <c-input
v-model="model.lendoc.account" v-model="model.lendoc.account"
maxlength="25" maxlength="25"
placeholder="请输入ACT" placeholder="请输入ACT"
></c-input> ></c-input>
</c-col> </c-col>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="Declaration Number" prop="lendoc.decnum"> <el-form-item label="Declaration Number" prop="lendoc.decnum">
<c-input <c-input
v-model="model.lendoc.decnum" v-model="model.lendoc.decnum"
maxlength="22" maxlength="22"
placeholder="请输入Declaration Number" placeholder="请输入Declaration Number"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> </c-col>
<!-- ===================Right================= --> <!-- ===================Right================= -->
<c-col :span="12"> <c-col :span="12">
<c-col :span="24"> <c-col :span="24">
<el-form-item <el-form-item
label="Verification Certificate Number" label="Verification Certificate Number"
prop="lendoc.vercerref" prop="lendoc.vercerref"
> >
<c-input <c-input
type="textarea" type="textarea"
v-model="model.lendoc.vercerref" v-model="model.lendoc.vercerref"
maxlength="20" maxlength="20"
show-word-limit show-word-limit
placeholder="请输入Verification Certificate Number" placeholder="请输入Verification Certificate Number"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> </c-col>
</div> </div>
</template> </template>
<script> <script>
import Api from "~/service/Api"; import Api from "~/service/Api";
...@@ -54,14 +54,14 @@ import CodeTable from "~/config/CodeTable"; ...@@ -54,14 +54,14 @@ import CodeTable from "~/config/CodeTable";
import Event from "~/model/Getset/Event"; import Event from "~/model/Getset/Event";
export default { export default {
inject: ["root"], inject: ["root"],
props: ["model", "codes"], props: ["model", "codes"],
mixins: [commonProcess], mixins: [commonProcess],
data() { data() {
return {}; return {};
}, },
methods: { ...Event }, methods: { ...Event },
created: function () {}, created: function () {},
}; };
</script> </script>
<style> <style>
......
...@@ -34,19 +34,7 @@ ...@@ -34,19 +34,7 @@
</c-form-item> </c-form-item>
</c-col> </c-col>
</c-col> </c-col>
<c-col :span="11" :offset="1"> <c-col :span="11" :offset="1"> </c-col>
<!-- <c-col :span="24">
<el-form-item label="以下两个选项二选一" prop="addbcb.bccls4">
<c-select
:code="codes.bccls8"
v-model="model.addbcb.bccls4"
style="width: 100%"
placeholder="以下两个选项二选一"
>
</c-select>
</el-form-item>
</c-col> -->
</c-col>
</c-col> </c-col>
</c-row> </c-row>
</div> </div>
......
...@@ -203,7 +203,7 @@ export default { ...@@ -203,7 +203,7 @@ export default {
data() { data() {
return {}; return {};
}, },
methods: { methods: {
...Event, ...Event,
async newamtcBlur() { async newamtcBlur() {
let rtnmsg = await this.executeRule("trnmod.swiadd.newamtc"); let rtnmsg = await this.executeRule("trnmod.swiadd.newamtc");
...@@ -211,7 +211,7 @@ export default { ...@@ -211,7 +211,7 @@ export default {
Utils.copyValueFromVO(this.model, rtnmsg.data); Utils.copyValueFromVO(this.model, rtnmsg.data);
} }
}, },
}, },
created: function () {}, created: function () {},
}; };
</script> </script>
......
...@@ -122,7 +122,7 @@ ...@@ -122,7 +122,7 @@
prop="trnmod.swiadd.newexpdat" prop="trnmod.swiadd.newexpdat"
> >
<c-date-picker <c-date-picker
:disabled=" :disabled="
model.trnmod.swiadd.exptyp == 'OPEN' || model.trnmod.swiadd.exptyp == 'OPEN' ||
(model.trnmod.swiadd.exptyp == '' && (model.trnmod.swiadd.exptyp == '' &&
model.oldgidgrp.rec.expdat == '') model.oldgidgrp.rec.expdat == '')
...@@ -183,7 +183,7 @@ ...@@ -183,7 +183,7 @@
prop="trnmod.swiadd.newliadat" prop="trnmod.swiadd.newliadat"
> >
<c-date-picker <c-date-picker
:disabled=" :disabled="
model.trnmod.swiadd.liatypc == 'OPEN' || model.trnmod.swiadd.liatypc == 'OPEN' ||
(model.trnmod.swiadd.liatypc == '' && (model.trnmod.swiadd.liatypc == '' &&
model.oldgidgrp.rec.liadat == '') model.oldgidgrp.rec.liadat == '')
...@@ -252,13 +252,11 @@ export default { ...@@ -252,13 +252,11 @@ export default {
props: ["model", "codes"], props: ["model", "codes"],
mixins: [commonProcess], mixins: [commonProcess],
data() { data() {
return { return {};
};
}, },
methods: { methods: {
...Event, ...Event,
async exptxtBlur() { async exptxtBlur() {
let rtnmsg = await this.executeDefault("gidgrp.blk.exptxt"); let rtnmsg = await this.executeDefault("gidgrp.blk.exptxt");
if (rtnmsg.respCode == SUCCESS) { if (rtnmsg.respCode == SUCCESS) {
Utils.copyValueFromVO(this.model, rtnmsg.data); Utils.copyValueFromVO(this.model, rtnmsg.data);
......
...@@ -30,129 +30,6 @@ ...@@ -30,129 +30,6 @@
></c-input> ></c-input>
</c-form-item> </c-form-item>
</c-col> </c-col>
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onSav">
{{$t('mtabut.CF000174')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onUsrcon">
{{$t('mtabut.CG000224')}}
</c-button>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitame.SF050038')" prop="oldgidgrp.blk.gidtxt">
<c-input type="textarea" v-model="model.oldgidgrp.blk.gidtxt" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('gitame.SF050038')" ></c-input>
</c-form-item>
</c-col> -->
<!-- SF050038 : Guarantee Text -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onChk">
{{$t('mtabut.CF000175')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onUsrchk">
{{$t('mtabut.CG000225')}}
</c-button>
</c-col> -->
<!-- SF050111 : before this -->
<!-- SF050112 : Amendment -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onSyswrnButshw">
{{$t('mtabut.CF000176')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" icon="el-icon-search" @click="onDiasel">
{{$t('mtabut.CF000190')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onInc">
{{$t('mtabut.CF000188')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onNotmap">
{{$t('mtabut.CF000189')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onFrmbut">
{{$t('mtabut.CF000208')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onOrd">
{{$t('mtabut.CF000213')}}
</c-button>
</c-col> -->
<!-- SF050039 : Amendments so Far -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitame.SF050039')" prop="gidgrp.blk.gidtxtame">
<c-input type="textarea" v-model="model.gidgrp.blk.gidtxtame" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('gitame.SF050039')" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onIncben">
{{$t('mtabut.CG000239')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onImgmodImage">
{{$t('mtabut.CG000240')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onImgmodNewimg">
{{$t('mtabut.CG000232')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onImgmodNewhisimg">
{{$t('mtabut.CG000233')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onImgmodElcimage">
{{$t('mtabut.CG000241')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onEntmodEntbut">
{{$t('mtabut.CG000242')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onPen">
{{$t('mtabut.CF000178')}}
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onCan">
{{$t('mtabut.CF000179')}}
</c-button>
</c-col> -->
</div> </div>
</template> </template>
<script> <script>
......
...@@ -26,22 +26,6 @@ ...@@ -26,22 +26,6 @@
></c-input> ></c-input>
</c-form-item> </c-form-item>
</c-col> </c-col>
<!-- SF050116 : Guarantee Text -->
<!-- <c-col :span="12">
<c-form-item :label="$t('gitame.SF050116')" prop="oldgidgrp.blk.gidtxtc">
<c-input type="textarea" v-model="model.oldgidgrp.blk.gidtxtc" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('gitame.SF050116')" ></c-input>
</c-form-item>
</c-col> -->
<!-- SF050117 : before this -->
<!-- SF050118 : Amendment -->
<!-- SF050119 : Amendments so Far -->
<!--
<c-col :span="12">
<c-form-item :label="$t('gitame.SF050119')" prop="oldgidgrp.blk.gidtxtamec">
<c-input type="textarea" v-model="model.oldgidgrp.blk.gidtxtamec" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('gitame.SF050119')" ></c-input>
</c-form-item>
</c-col> -->
</div> </div>
</template> </template>
<script> <script>
......
...@@ -289,13 +289,6 @@ ...@@ -289,13 +289,6 @@
placeholder="请输入Purpose of amend." placeholder="请输入Purpose of amend."
:code="getValues('trnmod.swiadd.purposame')" :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> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -484,8 +477,8 @@ ...@@ -484,8 +477,8 @@
v-if=" v-if="
model.gitp.swiftflg == 'Y' && model.gitp.swiftflg == 'Y' &&
(model.gidgrp.rec.hndtyp == 'FA' || (model.gidgrp.rec.hndtyp == 'FA' ||
model.gidgrp.rec.hndtyp == 'FI'|| model.gidgrp.rec.hndtyp == 'FI' ||
model.gidgrp.rec.hndtyp=='OL') model.gidgrp.rec.hndtyp == 'OL')
" "
label="Send Amendment to" label="Send Amendment to"
prop="gitamep.ramrol" prop="gitamep.ramrol"
...@@ -867,7 +860,6 @@ ...@@ -867,7 +860,6 @@
:disabled="model.trnmod.swiadd.addamtflg == ''" :disabled="model.trnmod.swiadd.addamtflg == ''"
v-model="model.trnmod.swiadd.addamt" v-model="model.trnmod.swiadd.addamt"
@blur="addamtBlur" @blur="addamtBlur"
placeholder="请输入Additional Amount" placeholder="请输入Additional Amount"
></c-input> ></c-input>
</c-form-item> </c-form-item>
...@@ -956,7 +948,7 @@ export default { ...@@ -956,7 +948,7 @@ export default {
Utils.copyValueFromVO(this.model, rtnmsg.data); Utils.copyValueFromVO(this.model, rtnmsg.data);
} }
}, },
async addamtflgChange() { async addamtflgChange() {
let rtnmsg = await this.executeDefault("trnmod.swiadd.addamt"); let rtnmsg = await this.executeDefault("trnmod.swiadd.addamt");
if (rtnmsg.respCode == SUCCESS) { if (rtnmsg.respCode == SUCCESS) {
......
<template>
<div class="eibs-tab">
<!-- SF001031 : Confirmation Status -->
<!-- SF000895 : Received Confirmation Instructions: -->
<c-col :span="12">
<el-form-item :label="$t('gitp.SF000888')" prop="gidgrp.rec.cnfsta">
<c-select
v-model="model.gidgrp.rec.cnfsta"
style="width: 100%"
:placeholder="$t('other.please_enter') + $t('gitp.SF000888')"
>
</c-select>
</el-form-item>
</c-col>
<!-- SF000894 : Outgoing Confirmation Instructions: -->
<!-- SF001030 : Confirmation Amount -->
<!-- SF000896 : Confirm. Instr. -->
<c-col :span="12">
<el-form-item :label="$t('gitp.SF000896')" prop="gidgrp.rec.reccnfdet">
<c-select
v-model="model.gidgrp.rec.reccnfdet"
style="width: 100%"
:placeholder="$t('other.please_enter') + $t('gitp.SF000896')"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitp.SF000890')" prop="gidgrp.cbs.cnf.cur">
<c-input
v-model="model.gidgrp.cbs.cnf.cur"
maxlength="3"
:placeholder="$t('other.please_enter') + $t('gitp.SF000890')"
></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Balance" prop="gidgrp.cbs.cnf.amt">
<c-input
v-model="model.gidgrp.cbs.cnf.amt"
:placeholder="$t('other.please_enter') + 'Balance'"
></c-input>
</c-form-item>
</c-col>
<!-- SF001032 : or -->
<c-col :span="12">
<c-form-item label="Partial Confirmation" prop="gidgrp.rec.partcon">
<c-input
v-model="model.gidgrp.rec.partcon"
:placeholder="$t('other.please_enter') + 'Partial Confirmation'"
></c-input>
</c-form-item>
</c-col>
<!-- SF000729 : Confirm. Instr. -->
<!-- SF001033 : % -->
<c-col :span="12">
<el-form-item :label="$t('gitp.SF000729')" prop="gidgrp.rec.cnfdet">
<c-select
v-model="model.gidgrp.rec.cnfdet"
style="width: 100%"
:placeholder="$t('other.please_enter') + $t('gitp.SF000729')"
>
</c-select>
</el-form-item>
</c-col>
<!-- SF001034 : Confirmed on -->
<!-- SF001077 : Confirm. Bank Ref. -->
<c-col :span="12">
<el-form-item :label="$t('gitp.SF000889')" prop="gidgrp.rec.cnfdat">
<c-date-picker
type="date"
v-model="model.gidgrp.rec.cnfdat"
style="width: 100%"
:placeholder="$t('other.please_enter') + $t('gitp.SF000889')"
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="12">
<c-form-item :label="$t('gitp.SF001077')" prop="gidgrp.cnr.pts.ref">
<c-input
v-model="model.gidgrp.cnr.pts.ref"
maxlength="16"
:placeholder="$t('other.please_enter') + $t('gitp.SF001077')"
></c-input>
</c-form-item>
</c-col>
<!-- SF001078 : Confirm. Bank Ref. -->
<c-col :span="12">
<c-form-item :label="$t('gitp.SF001078')" prop="gidgrp.con.pts.ref">
<c-input
v-model="model.gidgrp.con.pts.ref"
maxlength="16"
:placeholder="$t('other.please_enter') + $t('gitp.SF001078')"
></c-input>
</c-form-item>
</c-col>
<!-- SF000898 : Confirming Bank -->
<c-col :span="12">
<c-form-item
label="Drag Drop Sender"
prop="gitp.cnrp.ptsget.sdamod.dadsnd"
>
<c-input
v-model="model.gitp.cnrp.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.cnr.pts.extkey">
<c-input
v-model="model.gidgrp.cnr.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.cnrp.ptsget.sdamod.seainf">
<c-input
v-model="model.gitp.cnrp.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="onCnrpDet">
{{ $t("ptsp.CF000081") }}
</c-button>
</c-col>
<!-- SF000730 : Confirming Bank -->
<c-col :span="12">
<c-form-item label="名称" prop="gidgrp.cnr.namelc">
<c-input
type="textarea"
v-model="model.gidgrp.cnr.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.cnr.pts.adrblk">
<c-input
type="textarea"
v-model="model.gidgrp.cnr.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.cnr.dbfadrblkcn">
<c-input
type="textarea"
v-model="model.gidgrp.cnr.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="地址" prop="gidgrp.cnr.adrelc">
<c-input
type="textarea"
v-model="model.gidgrp.cnr.adrelc"
maxlength="35"
show-word-limit
:placeholder="$t('other.please_enter') + '地址'"
></c-input>
</c-form-item>
</c-col>
<!-- SF000887 : Own confirmation details: -->
<!-- SF000888 : Confirmation Status -->
<!-- SF000890 : Confirmation Amount -->
<!-- SF000892 : or -->
<!-- SF000893 : % -->
<!-- SF000889 : Confirmation Date -->
</div>
</template>
<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gitame/Event";
export default {
inject: ["root"],
props: ["model", "codes"],
mixins: [commonProcess],
data() {
return {};
},
methods: { ...Event },
created: function () {},
};
</script>
<style>
</style>
...@@ -276,7 +276,6 @@ ...@@ -276,7 +276,6 @@
</c-col> </c-col>
</c-col> </c-col>
<!-- --> <!-- -->
<c-col :span="24"> <c-col :span="24">
<c-col :span="12"> <c-col :span="12">
...@@ -598,8 +597,10 @@ ...@@ -598,8 +597,10 @@
prop="gidgrp.apl.pts.adrblk" prop="gidgrp.apl.pts.adrblk"
> >
<c-input <c-input
:disabled="model.gidgrp.rec.hndtyp != 'OT' || :disabled="
model.gidgrp.apl.pts.adrblk != ''" model.gidgrp.rec.hndtyp != 'OT' ||
model.gidgrp.apl.pts.adrblk != ''
"
rows="4" rows="4"
type="textarea" type="textarea"
v-model="model.gidgrp.apl.pts.adrblk" v-model="model.gidgrp.apl.pts.adrblk"
...@@ -671,7 +672,7 @@ ...@@ -671,7 +672,7 @@
<c-col :span="24"> <c-col :span="24">
<el-form-item <el-form-item
v-if=" v-if="
(model.gidgrp.rec.hndtyp == 'OL' || (model.gidgrp.rec.hndtyp == 'OL' ||
model.gidgrp.rec.hndtyp == '') && model.gidgrp.rec.hndtyp == '') &&
model.gitp.swiftflg != 'Y' model.gitp.swiftflg != 'Y'
" "
...@@ -827,8 +828,10 @@ ...@@ -827,8 +828,10 @@
prop="gidgrp.ben.pts.adrblk" prop="gidgrp.ben.pts.adrblk"
> >
<c-input <c-input
:disabled="model.gidgrp.rec.hndtyp == 'OT' || :disabled="
model.gidgrp.ben.pts.adrblk != ''" model.gidgrp.rec.hndtyp == 'OT' ||
model.gidgrp.ben.pts.adrblk != ''
"
rows="4" rows="4"
type="textarea" type="textarea"
v-model="model.gidgrp.ben.pts.adrblk" v-model="model.gidgrp.ben.pts.adrblk"
......
...@@ -85,7 +85,10 @@ ...@@ -85,7 +85,10 @@
prop="gidgrp.blk.deltoadr" prop="gidgrp.blk.deltoadr"
> >
<c-input <c-input
:disabled="model.gidgrp.rec.delto == '' || model.gidgrp.rec.delto != 'OTHR'" :disabled="
model.gidgrp.rec.delto == '' ||
model.gidgrp.rec.delto != 'OTHR'
"
type="textarea" type="textarea"
rows="4" rows="4"
v-model="model.gidgrp.blk.deltoadr" v-model="model.gidgrp.blk.deltoadr"
......
...@@ -261,86 +261,6 @@ ...@@ -261,86 +261,6 @@
</el-form-item> </el-form-item>
</c-col> </c-col>
<!-- <c-col :span="24">
<el-form-item
v-if="
(model.gidgrp.rec.hndtyp == 'OC' ||
model.gidgrp.rec.hndtyp == 'OT') &&
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.gidgrp.rec.hndtyp == 'OC' ||
model.gidgrp.rec.hndtyp == 'OT') &&
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.gidgrp.rec.hndtyp == 'OC' ||
model.gidgrp.rec.hndtyp == 'OT') &&
model.gitp.swiftflg != 'Y'
"
label="地址名称"
prop="gidgrp.iss.pts.adrblk"
>
<c-input
:disabled="model.gidgrp.iss.pts.adrblk != ''"
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"> <c-col :span="24">
<el-form-item <el-form-item
v-if="model.gitp.swiftflg == 'Y'" v-if="model.gitp.swiftflg == 'Y'"
......
...@@ -144,11 +144,14 @@ ...@@ -144,11 +144,14 @@
<m-addbcb :model="model" :codes="codes" /> <m-addbcb :model="model" :codes="codes" />
</el-tab-pane> </el-tab-pane>
<el-tab-pane <el-tab-pane
v-if=" v-if="
model.gidgrp.rec.purpos == 'ISCO' || model.gidgrp.rec.purpos == 'ISCO' ||
model.gidgrp.rec.purpos == 'ICCO' model.gidgrp.rec.purpos == 'ICCO'
" label="Seq. C: History" name="amephisc"> "
label="Seq. C: History"
name="amephisc"
>
<m-amephisc :model="model" :codes="codes" /> <m-amephisc :model="model" :codes="codes" />
</el-tab-pane> </el-tab-pane>
...@@ -210,10 +213,12 @@ ...@@ -210,10 +213,12 @@
</el-tab-pane> </el-tab-pane>
<el-tab-pane <el-tab-pane
v-if="model.gitp.swiftflg == 'Y' && v-if="
model.gitp.swiftflg == 'Y' &&
(model.trnmod.swiadd.purposame == 'ISCA' || (model.trnmod.swiadd.purposame == 'ISCA' ||
model.trnmod.swiadd.purposame == 'ICCA') && model.trnmod.swiadd.purposame == 'ICCA') &&
model.trnmod.swiadd.addamtflgc == 'X'" model.trnmod.swiadd.addamtflgc == 'X'
"
label="Seq. C: Add. Amounts" label="Seq. C: Add. Amounts"
name="aacp" name="aacp"
> >
...@@ -221,10 +226,12 @@ ...@@ -221,10 +226,12 @@
</el-tab-pane> </el-tab-pane>
<el-tab-pane <el-tab-pane
v-if="model.gitp.swiftflg == 'Y' && v-if="
model.trnmod.swiadd.purposame == 'ISUA' && model.gitp.swiftflg == 'Y' &&
model.trnmod.swiadd.addamtflg == 'X' && model.trnmod.swiadd.purposame == 'ISUA' &&
model.gidgrp.rec.purpos != 'ISSU'" model.trnmod.swiadd.addamtflg == 'X' &&
model.gidgrp.rec.purpos != 'ISSU'
"
label="Seq. C: Add. Amounts" label="Seq. C: Add. Amounts"
name="aamp20" name="aamp20"
> >
...@@ -265,7 +272,6 @@ import Amephis from "./Amephis"; ...@@ -265,7 +272,6 @@ import Amephis from "./Amephis";
import Addbcb from "./Addbcb"; import Addbcb from "./Addbcb";
import Amecp from "./Amecp"; import Amecp from "./Amecp";
import Gidtxtp from "./Gidtxtp"; import Gidtxtp from "./Gidtxtp";
import Confp from "./Confp";
import Ovwpc from "./Ovwpc"; import Ovwpc from "./Ovwpc";
import Ptypc from "./Ptypc"; import Ptypc from "./Ptypc";
import Preperpc from "./Preperpc"; import Preperpc from "./Preperpc";
...@@ -298,7 +304,6 @@ export default { ...@@ -298,7 +304,6 @@ export default {
"m-addbcb": Addbcb, "m-addbcb": Addbcb,
"m-amecp": Amecp, "m-amecp": Amecp,
"m-gidtxtp": Gidtxtp, "m-gidtxtp": Gidtxtp,
"m-confp": Confp,
"m-ovwpc": Ovwpc, "m-ovwpc": Ovwpc,
"m-ptypc": Ptypc, "m-ptypc": Ptypc,
"m-preperpc": Preperpc, "m-preperpc": Preperpc,
......
...@@ -96,18 +96,11 @@ export default { ...@@ -96,18 +96,11 @@ export default {
props: ["model", "codes"], props: ["model", "codes"],
mixins: [commonProcess], mixins: [commonProcess],
data() { data() {
return { return {};
};
}, },
methods: { ...Event }, methods: { ...Event },
created: function () {}, created: function () {},
watch:{ watch: {},
// "model.cfagit.recp.dclp.wabachandate":function(){
// if(this.model.cfagit.recp.dclp.wabachandate==''){
// this.model.cfagit.recp.dclp.wabachandate=cfagit.recp.dclp.wabachandate[0].data;
// }
// }
}
}; };
</script> </script>
<style></style> <style></style>
...@@ -56,14 +56,7 @@ ...@@ -56,14 +56,7 @@
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
<!-- <c-col :span="4" class="centerLable">
<c-checkbox disabled v-model="model.gidgrp.rec.cmtflg">跨境人民币保函</c-checkbox>
</c-col> -->
</c-col> </c-col>
<!-- <c-col :span="12">
<c-checkbox v-model="model.gidgrp.rec.cmtflg">跨境人民币保函</c-checkbox>
</c-col> -->
</div> </div>
</template> </template>
<script> <script>
......
...@@ -321,8 +321,8 @@ export default { ...@@ -321,8 +321,8 @@ export default {
this.tabClick(tab); this.tabClick(tab);
let name = tab.name; let name = tab.name;
let rulePath; let rulePath;
if (name === "ptypc"){ if (name === "ptypc") {
rulePath = "gitp.ptypc" rulePath = "gitp.ptypc";
} }
if (!!rulePath) { if (!!rulePath) {
this.executeRule(rulePath).then((res) => { this.executeRule(rulePath).then((res) => {
......
...@@ -76,6 +76,19 @@ ...@@ -76,6 +76,19 @@
<c-col :span="24"> <c-col :span="24">
<c-col :span="8"> <c-col :span="8">
<el-form-item <el-form-item
label="Party Reference"
prop="infcon.searef"
style="width: 100%"
>
<c-input
v-model="model.infcon.searef"
maxlength="16"
placeholder="请输入Party Reference"
></c-input>
</el-form-item>
</c-col>
<!-- <c-col :span="8">
<el-form-item
label="Release Status" label="Release Status"
prop="infcon.relflg" prop="infcon.relflg"
style="width: 100%" style="width: 100%"
...@@ -94,7 +107,7 @@ ...@@ -94,7 +107,7 @@
</el-option> </el-option>
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col> -->
<c-col :span="8"> <c-col :span="8">
<el-form-item <el-form-item
...@@ -106,6 +119,7 @@ ...@@ -106,6 +119,7 @@
v-model="model.infcon.pty.extkey" v-model="model.infcon.pty.extkey"
maxlength="24" maxlength="24"
placeholder="请输入Select Single Party" placeholder="请输入Select Single Party"
:disabled="model.infcon.seapty != ''"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -136,6 +150,7 @@ ...@@ -136,6 +150,7 @@
v-model="model.infcon.seapty" v-model="model.infcon.seapty"
maxlength="24" maxlength="24"
placeholder="请输入Party Name/BIC" placeholder="请输入Party Name/BIC"
:disabled="model.infcon.pty.extkey != ''"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -152,7 +167,7 @@ ...@@ -152,7 +167,7 @@
placeholder="请选择Role" placeholder="请选择Role"
> >
<el-option <el-option
v-for="item in codes.searol" v-for="item in codes.searol4"
:key="item.value" :key="item.value"
:label="item.label" :label="item.label"
:value="item.value" :value="item.value"
...@@ -161,23 +176,6 @@ ...@@ -161,23 +176,6 @@
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="8">
<el-form-item
label="Party Reference"
prop="infcon.searef"
style="width: 100%"
>
<c-input
v-model="model.infcon.searef"
maxlength="16"
placeholder="请输入Party Reference"
></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="8"> <c-col :span="8">
<el-form-item <el-form-item
label="Resp.User" label="Resp.User"
...@@ -188,13 +186,16 @@ ...@@ -188,13 +186,16 @@
v-model="model.infcon.usr.extkey" v-model="model.infcon.usr.extkey"
maxlength="8" maxlength="8"
placeholder="请输入User ID" placeholder="请输入User ID"
:disabled="true"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col>
<c-col :span="24">
<c-col :span="8"> <c-col :span="8">
<el-form-item <el-form-item
label="Status" label="状态"
prop="infcon.seasta" prop="infcon.seasta"
style="width: 100%" style="width: 100%"
> >
...@@ -215,7 +216,7 @@ ...@@ -215,7 +216,7 @@
</c-col> </c-col>
<c-col :span="8"> <c-col :span="8">
<el-form-item <el-form-item
label="Currency" label="币种"
prop="infcon.seacur" prop="infcon.seacur"
style="width: 100%" style="width: 100%"
> >
...@@ -234,22 +235,19 @@ ...@@ -234,22 +235,19 @@
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> <c-col :span="8">
<c-col :span="24">
<!-- <c-col :span="8">
<el-form-item <el-form-item
label="Type of Advance" label="融资状态"
prop="seafintyp" prop="infcon.cxmflg"
style="width: 100%" style="width: 100%"
> >
<c-select <c-select
v-model="model.seafintyp" v-model="model.infcon.cxmflg"
style="width: 100%" style="width: 100%"
placeholder="请选择Type of Advance" placeholder="请选择是否显示查询码"
> >
<el-option <el-option
v-for="item in codes.boppayattr" v-for="item in codes.ovdflg"
:key="item.value" :key="item.value"
:label="item.label" :label="item.label"
:value="item.value" :value="item.value"
...@@ -257,16 +255,23 @@ ...@@ -257,16 +255,23 @@
</el-option> </el-option>
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> --> </c-col>
<c-col :span="24"> </c-col>
<el-form-item label="Good's Code " prop="trdgrp.rec.stagod">
<c-col :span="24">
<c-col :span="8">
<el-form-item
label="融资品种"
prop="seafintyp"
style="width: 100%"
>
<c-select <c-select
v-model="model.trdgrp.rec.stagod" v-model="model.seafintyp"
style="width: 100%" style="width: 100%"
placeholder="请选择Good's Code " placeholder="请选择融资品种"
> >
<el-option <el-option
v-for="item in codes.godcod" v-for="item in codes.boppayattr1"
:key="item.value" :key="item.value"
:label="item.label" :label="item.label"
:value="item.value" :value="item.value"
...@@ -275,20 +280,19 @@ ...@@ -275,20 +280,19 @@
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="8"> <c-col :span="8">
<el-form-item <el-form-item
label="融资状态" label="Good's Code "
prop="infcon.cxmflg" prop="trdgrp.rec.stagod"
style="width: 100%" style="width: 100%"
> >
<c-select <c-select
v-model="model.infcon.cxmflg" v-model="model.trdgrp.rec.stagod"
style="width: 100%" style="width: 100%"
placeholder="请选择是否显示查询码" placeholder="请选择Good's Code "
> >
<el-option <el-option
v-for="item in codes.ovdflg" v-for="item in codes.godcod"
:key="item.value" :key="item.value"
:label="item.label" :label="item.label"
:value="item.value" :value="item.value"
...@@ -300,6 +304,16 @@ ...@@ -300,6 +304,16 @@
<c-col :span="8"> <c-col :span="8">
<el-form-item <el-form-item
label="海外代付"
prop="trdgrp.rec.oseflg"
style="width: 100%"
>
<c-checkbox v-model="model.trdgrp.rec.oseflg"></c-checkbox>
</el-form-item>
</c-col>
<!-- <c-col :span="8">
<el-form-item
label="福费廷转卖类型" label="福费廷转卖类型"
prop="infcon.cxmflg" prop="infcon.cxmflg"
style="width: 100%" style="width: 100%"
...@@ -318,7 +332,7 @@ ...@@ -318,7 +332,7 @@
</el-option> </el-option>
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col> -->
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
......
...@@ -185,170 +185,7 @@ ...@@ -185,170 +185,7 @@
> >
</c-istream-table> </c-istream-table>
</el-col> </el-col>
<!-- <c-col :span="12">
<el-form-item label="Drag Drop Sender" prop="litp.litp0.recget.sdamod.dadsnd">
<c-input v-model="model.litp.litp0.recget.sdamod.dadsnd" placeholder="请输入Drag Drop Sender"></c-input>
</el-form-item>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onSav">
保存
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onUsrcon">
用户确认
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<el-form-item label="参考号" prop="litp.litp0.recget.sdamod.seainf">
<c-input v-model="model.litp.litp0.recget.sdamod.seainf" placeholder="请输入参考号"></c-input>
</el-form-item>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onChk">
检核
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onUsrchk">
检核
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onSyswrnButshw">
提示信息
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<span v-text="model.litp.litp0.thdate" data-path=".litp.litp0.thdate" > </span>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" icon="el-icon-search" @click="onDiasel">
备忘录
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onInc">
显示 &Inc.
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onNotmap">
&Unmapped
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onFrmbut">
&Redirect
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onOrd">
&Order
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onIncben">
Inc to Ben
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onImgmodImage">
E结算影像
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onImgmodNewimg">
影像
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onImgmodNewhisimg">
历史影像
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onImgmodElcimage">
人行影像
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onEntmodEntbut">
企业名录
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onPen">
暂存
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onCan">
退出
</c-button>
</c-col> -->
</div> </div>
</template> </template>
<script> <script>
......
...@@ -176,7 +176,7 @@ ...@@ -176,7 +176,7 @@
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="Charges Condition" prop="lidgrp.rec.chato"> <el-form-item label="收费条件" prop="lidgrp.rec.chato">
<c-input disabled v-model="model.lidgrp.rec.chato" style="width:100%" placeholder="请选择Drafts at"> <c-input disabled v-model="model.lidgrp.rec.chato" style="width:100%" placeholder="请选择Drafts at">
</c-input> </c-input>
</el-form-item> </el-form-item>
......
...@@ -143,12 +143,6 @@ ...@@ -143,12 +143,6 @@
</el-form-item> </el-form-item>
</c-col> </c-col>
<!-- <c-col :span="12">
<el-form-item label="分批装运" prop="lidgrp.rec.shppars18">
<c-select v-model="model.lidgrp.rec.shppars18" style="width:100%" placeholder="请选择">
</c-select>
</el-form-item>
</c-col> -->
<c-col :span="12"> <c-col :span="12">
<el-form-item label="是否可转运" prop="lidgrp.rec.shptrs"> <el-form-item label="是否可转运" prop="lidgrp.rec.shptrs">
<c-select v-model="model.lidgrp.rec.shptrs" style="width:100%" placeholder="请选择" <c-select v-model="model.lidgrp.rec.shptrs" style="width:100%" placeholder="请选择"
...@@ -231,11 +225,7 @@ ...@@ -231,11 +225,7 @@
</c-fullbox> </c-fullbox>
</el-form-item> </el-form-item>
</c-col> </c-col>
<!-- <c-col :span="24">
<el-form-item label="名称" prop="lidgrp.apl.namelc">
<c-input disabled type="textarea" v-model="model.lidgrp.apl.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
</el-form-item>
</c-col> -->
<c-col :span="24"> <c-col :span="24">
<el-form-item label="地址信息" prop="lidgrp.apl.pts.adrblk"> <el-form-item label="地址信息" prop="lidgrp.apl.pts.adrblk">
<c-input <c-input
...@@ -275,11 +265,7 @@ ...@@ -275,11 +265,7 @@
</c-fullbox> </c-fullbox>
</el-form-item> </el-form-item>
</c-col> </c-col>
<!-- <c-col :span="24">
<el-form-item label="名称" prop="lidgrp.adv.namelc">
<c-input type="textarea" v-model="model.lidgrp.adv.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
</el-form-item>
</c-col> -->
<c-col :span="24"> <c-col :span="24">
<el-form-item label="地址信息" prop="lidgrp.adv.pts.adrblk"> <el-form-item label="地址信息" prop="lidgrp.adv.pts.adrblk">
...@@ -290,30 +276,7 @@ ...@@ -290,30 +276,7 @@
</el-form-item> </el-form-item>
</c-col> </c-col>
<!-- <c-col :span="24">
<el-form-item label="Chinese address" prop="lidgrp.apl.dbfadrblkcn">
<c-input type="textarea" v-model="model.lidgrp.apl.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address" ></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="地址" prop="lidgrp.apl.adrelc">
<c-input type="textarea" v-model="model.lidgrp.apl.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="Chinese address" prop="lidgrp.adv.dbfadrblkcn">
<c-input type="textarea" v-model="model.lidgrp.adv.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="地址" prop="lidgrp.adv.adrelc">
<c-input type="textarea" v-model="model.lidgrp.adv.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
</el-form-item>
</c-col> -->
<c-col :span="24"> <c-col :span="24">
<el-form-item label="受益人参考号" prop="lidgrp.ben.pts.ref"> <el-form-item label="受益人参考号" prop="lidgrp.ben.pts.ref">
<c-input v-model="model.lidgrp.ben.pts.ref" maxlength="16" placeholder="请输入受益人参考号"></c-input> <c-input v-model="model.lidgrp.ben.pts.ref" maxlength="16" placeholder="请输入受益人参考号"></c-input>
...@@ -346,11 +309,7 @@ ...@@ -346,11 +309,7 @@
</c-fullbox> </c-fullbox>
</el-form-item> </el-form-item>
</c-col> </c-col>
<!-- <c-col :span="24">
<el-form-item label="名称" prop="lidgrp.ben.namelc">
<c-input type="textarea" v-model="model.lidgrp.ben.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
</el-form-item>
</c-col> -->
<c-col :span="24"> <c-col :span="24">
<el-form-item label="地址信息" prop="lidgrp.ben.pts.adrblk"> <el-form-item label="地址信息" prop="lidgrp.ben.pts.adrblk">
...@@ -360,21 +319,7 @@ ...@@ -360,21 +319,7 @@
</el-form-item> </el-form-item>
</c-col> </c-col>
<!-- <c-col :span="12">
<el-form-item label="Chinese address" prop="lidgrp.ben.dbfadrblkcn">
<c-input type="textarea" v-model="model.lidgrp.ben.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="地址" prop="lidgrp.ben.adrelc">
<c-input type="textarea" v-model="model.lidgrp.ben.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
</el-form-item>
</c-col> -->
<!-- <c-col :span="24">
<el-form-item label="对手行代码" prop="lidgrp.rec.oppbnk">
<c-input v-model="model.lidgrp.rec.oppbnk" maxlength="12" placeholder="请输入对手行代码"></c-input>
</el-form-item>
</c-col> -->
<c-col :span="12"> <c-col :span="12">
<c-checkbox disabled v-model="model.lidgrp.rec.rmbflg">偿付行信息</c-checkbox> <c-checkbox disabled v-model="model.lidgrp.rec.rmbflg">偿付行信息</c-checkbox>
...@@ -389,157 +334,7 @@ ...@@ -389,157 +334,7 @@
</c-col> </c-col>
</el-col> </el-col>
<!-- <c-col :span="12">
<el-form-item label="Drag Drop Sender" prop="litp.recget.sdamod.dadsnd">
<c-input v-model="model.litp.recget.sdamod.dadsnd" placeholder="请输入Drag Drop Sender"></c-input>
</el-form-item>
</c-col> -->
<!-- <c-col :span="12">
<el-form-item label="" prop="litp.recget.sdamod.seainf">
<c-input v-model="model.litp.recget.sdamod.seainf" placeholder="请输入"></c-input>
</el-form-item>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onLitpButgetref">
Get Ref
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<el-form-item label="Drag Drop Sender" prop="litp.aplp.ptsget.sdamod.dadsnd">
<c-input v-model="model.litp.aplp.ptsget.sdamod.dadsnd" placeholder="请输入Drag Drop Sender"></c-input>
</el-form-item>
</c-col> -->
<!-- <c-col :span="12">
<el-form-item label="" prop="litp.usrget.sdamod.seainf">
<c-input v-model="model.litp.usrget.sdamod.seainf" placeholder="请输入"></c-input>
</el-form-item>
</c-col> -->
<!-- <c-col :span="12">
<c-checkbox v-model="model.lidgrp.rec.resflg">Reserved Contract</c-checkbox>
</c-col> -->
<!-- <c-col :span="12">
<el-form-item label="" prop="litp.aplp.ptsget.sdamod.seainf">
<c-input v-model="model.litp.aplp.ptsget.sdamod.seainf" placeholder="请输入"></c-input>
</el-form-item>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onAplpDet">
Details
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<el-form-item label="Drag Drop Sender" prop="litp.advp.ptsget.sdamod.dadsnd">
<c-input v-model="model.litp.advp.ptsget.sdamod.dadsnd" placeholder="请输入Drag Drop Sender"></c-input>
</el-form-item>
</c-col> -->
<!-- <c-col :span="12">
<el-form-item label="" prop="litp.advp.ptsget.sdamod.seainf">
<c-input v-model="model.litp.advp.ptsget.sdamod.seainf" placeholder="请输入"></c-input>
</el-form-item>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onAdvpDet">
Details
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<el-form-item label="Drag Drop Sender" prop="litp.benp.ptsget.sdamod.dadsnd">
<c-input v-model="model.litp.benp.ptsget.sdamod.dadsnd" placeholder="请输入Drag Drop Sender"></c-input>
</el-form-item>
</c-col> -->
<!-- <c-col :span="12">
<el-form-item label="" prop="litp.benp.ptsget.sdamod.seainf">
<c-input v-model="model.litp.benp.ptsget.sdamod.seainf" placeholder="请输入"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onBenpDet">
Details
</c-button>
</c-col> -->
<!-- <c-col :span="12">
<el-form-item label="Transhipment" prop="lidgrp.rec.shptrss18">
<c-select v-model="model.lidgrp.rec.shptrss18" style="width:100%" placeholder="请选择">
</c-select>
</el-form-item>
</c-col> -->
<!-- <c-col :span="12">
<span v-text="model.litp.oppbnkl" data-path=".litp.oppbnkl" > </span>
</c-col> -->
</div> </div>
</template> </template>
<script> <script>
......
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
<m-setpan :model="model" :codes="codes" /> <m-setpan :model="model" :codes="codes" />
</c-content> </c-content>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="Booking" name="glepan"> <el-tab-pane label="会计分录" name="glepan">
<c-content> <c-content>
<m-glepan :model="model" :codes="codes" /> <m-glepan :model="model" :codes="codes" />
</c-content> </c-content>
......
...@@ -59,7 +59,7 @@ ...@@ -59,7 +59,7 @@
<m-setpan :model="model" :codes="codes" /> <m-setpan :model="model" :codes="codes" />
</c-content> </c-content>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="Booking" name="glepan"> <el-tab-pane label="会计分录" name="glepan">
<c-content> <c-content>
<m-glepan :model="model" :codes="codes" /> <m-glepan :model="model" :codes="codes" />
</c-content> </c-content>
......
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
<c-content> <m-setpan :model="model" :codes="codes" />. </c-content> <c-content> <m-setpan :model="model" :codes="codes" />. </c-content>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="Booking" name="glepan"> <el-tab-pane label="会计分录" name="glepan">
<c-content> <m-glepan :model="model" :codes="codes" />. </c-content> <c-content> <m-glepan :model="model" :codes="codes" />. </c-content>
</el-tab-pane> </el-tab-pane>
......
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
<m-setpan :model="model" :codes="codes" /> <m-setpan :model="model" :codes="codes" />
</c-content> </c-content>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="Booking" name="glepan"> <el-tab-pane label="会计分录" name="glepan">
<c-content> <m-glepan :model="model" :codes="codes" />. </c-content> <c-content> <m-glepan :model="model" :codes="codes" />. </c-content>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="Completion" name="coninfp"> <el-tab-pane label="Completion" name="coninfp">
......
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
<m-setpan :model="model" :codes="codes" /> <m-setpan :model="model" :codes="codes" />
</c-content> </c-content>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="Booking" name="glepan"> <el-tab-pane label="会计分录" name="glepan">
<c-content> <c-content>
<m-glepan :model="model" :codes="codes" /> <m-glepan :model="model" :codes="codes" />
</c-content> </c-content>
......
...@@ -34,28 +34,17 @@ export default { ...@@ -34,28 +34,17 @@ export default {
openFlgArr: [], openFlgArr: [],
menuOpen: true, menuOpen: true,
menuList: [ menuList: [
// { inifrm: "0", ininam: "公共夹", pntmiu: "" },
// { inifrm: "sptsel", ininam: "待办任务", pntmiu: "0" },
// { inifrm: "trnrel", ininam: "复核任务", pntmiu: "0" },
// { inifrm: "diasel", ininam: "备忘录选择交易", pntmiu: "0" }, { inifrm: "2", ininam: "买方信用证", pntmiu: "" },
{ inifrm: "1", ininam: "汇款业务", pntmiu: "" },
{ inifrm: "infcpd", ininam: "汇款查询", pntmiu: "1" },
// { inifrm: "cptopn", ininam: "汇出汇款", pntmiu: "1" },
// { inifrm: "cptadv", ininam: "汇入汇款", pntmiu: "1" },
// { inifrm: "cptato", ininam: "境内外币汇出汇款", pntmiu: "1" },
// { inifrm: "cptati", ininam: "境内外币汇入汇款", pntmiu: "1" },
{ inifrm: "cnysel", ininam: "跨境人民币查询", pntmiu: "1" },
// { inifrm: "cptrel", ininam: "汇款复核与查询", pntmiu: "1" },
// { inifrm: "cptcan", ininam: "汇款注销", pntmiu: "1" },
// { inifrm: "cptrep", ininam: "汇入汇款挂账解付", pntmiu: "1" },
{ inifrm: "2", ininam: "买方信用证", pntmiu: "" },
// { inifrm: "ditopn", ininam: "信用证开立", pntmiu: "2" }, // { inifrm: "ditopn", ininam: "信用证开立", pntmiu: "2" },
// { inifrm: "ditame", ininam: "信用证修改", pntmiu: "2" }, // { inifrm: "ditame", ininam: "信用证修改", pntmiu: "2" },
// { inifrm: "ditcan", ininam: "信用证注销", pntmiu: "2" }, // { inifrm: "ditcan", ininam: "信用证注销", pntmiu: "2" },
{ inifrm: "infdid", ininam: "买方信用证交易查询", pntmiu: "2" }, { inifrm: "infdid", ininam: "买方信用证交易查询", pntmiu: "2" },
{ inifrm: "infbdd", ininam: "买方信用证单据查询", pntmiu: "2" }, { inifrm: "infbdd", ininam: "买方信用证单据查询", pntmiu: "2" },
//{ inifrm: "bdtset", ininam: "买方信用证收款", pntmiu: "2" }, //{ inifrm: "bdtset", ininam: "买方信用证收款", pntmiu: "2" },
{ inifrm: "22", ininam: "卖方信用证", pntmiu: "" }, { inifrm: "22", ininam: "卖方信用证", pntmiu: "" },
{ inifrm: "infdet", ininam: "卖方信用证交易查询", pntmiu: "22" }, { inifrm: "infdet", ininam: "卖方信用证交易查询", pntmiu: "22" },
{ inifrm: "infbfd", ininam: "卖方信用证单据查询", pntmiu: "22" }, { inifrm: "infbfd", ininam: "卖方信用证单据查询", pntmiu: "22" },
...@@ -65,6 +54,17 @@ export default { ...@@ -65,6 +54,17 @@ export default {
// { inifrm: "bdtdcr", ininam: "信用证不符点/拒付", pntmiu: "2" }, // { inifrm: "bdtdcr", ininam: "信用证不符点/拒付", pntmiu: "2" },
// { inifrm: "ditdck", ininam: "信用证到单", pntmiu: "2" }, // { inifrm: "ditdck", ininam: "信用证到单", pntmiu: "2" },
// { inifrm: "bdtset", ininam: "信用证付款", pntmiu: "2" }, // { inifrm: "bdtset", ininam: "信用证付款", pntmiu: "2" },
{ inifrm: "4", ininam: "进口信用证", pntmiu: "" },
{ inifrm: "inflid", ininam: "进口信用证交易查询", pntmiu: "4" },
{ inifrm: "infbrd", ininam: "进口信用证单据查询", pntmiu: "4" },
// { inifrm: "litopn", ininam: "进口信用证开立", pntmiu: "4" },
// { inifrm: "litdav", ininam: "进口信用证通知到单", pntmiu: "4" },
// { inifrm: "litdck", ininam: "进口信用证到单", pntmiu: "4" },
// { inifrm: "brtlat", ininam: "进口信用证单据偿还垫款", pntmiu: "4" },
{ inifrm: "3", ininam: "出口信用证", pntmiu: "" }, { inifrm: "3", ininam: "出口信用证", pntmiu: "" },
{ inifrm: "infled", ininam: "出口信用证交易查询", pntmiu: "3" }, { inifrm: "infled", ininam: "出口信用证交易查询", pntmiu: "3" },
{ inifrm: "infbed", ininam: "出口信用证单据查询", pntmiu: "3" }, { inifrm: "infbed", ininam: "出口信用证单据查询", pntmiu: "3" },
...@@ -80,19 +80,30 @@ export default { ...@@ -80,19 +80,30 @@ export default {
// { inifrm: "betdcr", ininam: "出口信用证不符点/拒付", pntmiu: "3" }, // { inifrm: "betdcr", ininam: "出口信用证不符点/拒付", pntmiu: "3" },
// { inifrm: "betdrv", ininam: "出口信用证单据修改", pntmiu: "3" }, // { inifrm: "betdrv", ininam: "出口信用证单据修改", pntmiu: "3" },
// { inifrm: "infbpd", ininam: "出口押汇查询", pntmiu: "3" }, // { inifrm: "infbpd", ininam: "出口押汇查询", pntmiu: "3" },
{ inifrm: "4", ininam: "进口信用证", pntmiu: "" },
{ inifrm: "inflid", ininam: "进口信用证交易查询", pntmiu: "4" },
{ inifrm: "infbrd", ininam: "进口信用证单据查询", pntmiu: "4" },
// { inifrm: "litopn", ininam: "进口信用证开立", pntmiu: "4" },
// { inifrm: "litdav", ininam: "进口信用证通知到单", pntmiu: "4" },
// { inifrm: "litdck", ininam: "进口信用证到单", pntmiu: "4" },
// { inifrm: "brtlat", ininam: "进口信用证单据偿还垫款", pntmiu: "4" },
// { inifrm: "litcan", ininam: "进口信用证注销", pntmiu: "4" }, // { inifrm: "litcan", ininam: "进口信用证注销", pntmiu: "4" },
// { inifrm: "inftrd", ininam: "进口押汇查询", pntmiu: "4" }, // { inifrm: "inftrd", ininam: "进口押汇查询", pntmiu: "4" },
// { inifrm: "trtame", ininam: "进口融资修改", pntmiu: "4" }, // { inifrm: "trtame", ininam: "进口融资修改", pntmiu: "4" },
// { inifrm: "inftxm", ininam: "条式语句查询", pntmiu: "4" }, // { inifrm: "inftxm", ininam: "条式语句查询", pntmiu: "4" },
{ inifrm: "5", ininam: "进口代收", pntmiu: "" },
{ inifrm: "7", ininam: "转让信用证", pntmiu: "" },
{ inifrm: "infltd", ininam: "转让信用证查询", pntmiu: "7" },
{ inifrm: "infbtd", ininam: "转让信用证单据查询", pntmiu: "7" },
{ inifrm: "17",ininam: "进口融资", pntmiu: "" },
{ inifrm: "inftrd", ininam: "进口融资查询", pntmiu: "17" },
{ inifrm: "16",ininam: "出口融资", pntmiu: "" },
{ inifrm: "infbpd", ininam: "出口融资查询", pntmiu: "16" },
{ inifrm: "5", ininam: "进口代收", pntmiu: "" },
// { inifrm: "bctdav", ininam: "进口代收到单通知", pntmiu: "5" }, // { inifrm: "bctdav", ininam: "进口代收到单通知", pntmiu: "5" },
// { inifrm: "bctame", ininam: "进口代收修改", pntmiu: "5" }, // { inifrm: "bctame", ininam: "进口代收修改", pntmiu: "5" },
// { inifrm: "bctacc", ininam: "进口代收承兑", pntmiu: "5" }, // { inifrm: "bctacc", ininam: "进口代收承兑", pntmiu: "5" },
...@@ -109,9 +120,7 @@ export default { ...@@ -109,9 +120,7 @@ export default {
// { inifrm: "botdcr", ininam: "出口托收拒付/不符点", pntmiu: "6" }, // { inifrm: "botdcr", ininam: "出口托收拒付/不符点", pntmiu: "6" },
// { inifrm: "botset", ininam: "出口托收收汇", pntmiu: "6" }, // { inifrm: "botset", ininam: "出口托收收汇", pntmiu: "6" },
// { inifrm: "botcan", ininam: "出口托收闭卷", pntmiu: "6" }, // { inifrm: "botcan", ininam: "出口托收闭卷", pntmiu: "6" },
{ inifrm: "7", ininam: "转让信用证", pntmiu: "" },
{ inifrm: "infltd", ininam: "转让信用证查询", pntmiu: "7" },
{ inifrm: "infbtd", ininam: "转让信用证单据查询", pntmiu: "7" },
{ inifrm: "8", ininam: "打包托收", pntmiu: "" }, { inifrm: "8", ininam: "打包托收", pntmiu: "" },
{ inifrm: "infcld", ininam: "打包托收查询", pntmiu: "8" }, { inifrm: "infcld", ininam: "打包托收查询", pntmiu: "8" },
// { inifrm: "cltdav", ininam: "打包托收开立", pntmiu: "8" }, // { inifrm: "cltdav", ininam: "打包托收开立", pntmiu: "8" },
...@@ -124,6 +133,41 @@ export default { ...@@ -124,6 +133,41 @@ export default {
// { inifrm: "cctset", ininam: "光票托收收汇", pntmiu: "9" }, // { inifrm: "cctset", ininam: "光票托收收汇", pntmiu: "9" },
//{ inifrm: "cltdav", ininam: "光票托收开立", pntmiu: "10" }, //{ inifrm: "cltdav", ininam: "光票托收开立", pntmiu: "10" },
//{ inifrm: "clttra", ininam: "光票托收", pntmiu: "10" }, //{ inifrm: "clttra", ininam: "光票托收", pntmiu: "10" },
{ inifrm: "13", ininam: "保函", pntmiu: "" },
{ inifrm: "infgid", ininam: "保函入口交易", pntmiu: "13" },
{ inifrm: "infgcd", ininam: "保函赔付查询", pntmiu: "13" },
// { inifrm: "gitsel", ininam: "进口保函查询", pntmiu: "13" },
// { inifrm: "0", ininam: "公共夹", pntmiu: "" },
// { inifrm: "sptsel", ininam: "待办任务", pntmiu: "0" },
// { inifrm: "trnrel", ininam: "复核任务", pntmiu: "0" },
// { inifrm: "diasel", ininam: "备忘录选择交易", pntmiu: "0" },
{ inifrm: "1", ininam: "汇款业务", pntmiu: "" },
{ inifrm: "infcpd", ininam: "汇款查询", pntmiu: "1" },
// { inifrm: "cptopn", ininam: "汇出汇款", pntmiu: "1" },
// { inifrm: "cptadv", ininam: "汇入汇款", pntmiu: "1" },
// { inifrm: "cptato", ininam: "境内外币汇出汇款", pntmiu: "1" },
// { inifrm: "cptati", ininam: "境内外币汇入汇款", pntmiu: "1" },
{ inifrm: "cnysel", ininam: "跨境人民币查询", pntmiu: "1" },
// { inifrm: "cptrel", ininam: "汇款复核与查询", pntmiu: "1" },
// { inifrm: "cptcan", ininam: "汇款注销", pntmiu: "1" },
// { inifrm: "cptrep", ininam: "汇入汇款挂账解付", pntmiu: "1" },
{ inifrm: "15",ininam: "福费廷管理", pntmiu: "" },
{ inifrm: "assetInfo", ininam: "资产信息管理", pntmiu: "15" },
{ inifrm: "assetPub", ininam: "资产发布信息管理", pntmiu: "15" },
{ inifrm: "fund", ininam: "资金信息管理", pntmiu: "15" },
{ inifrm: "10", ininam: "参数管理", pntmiu: "" }, { inifrm: "10", ininam: "参数管理", pntmiu: "" },
{ inifrm: "dbiusr", ininam: "Dbiusr", pntmiu: "10" }, { inifrm: "dbiusr", ininam: "Dbiusr", pntmiu: "10" },
{ inifrm: "dbibch", ininam: "Dbibch", pntmiu: "10" }, { inifrm: "dbibch", ininam: "Dbibch", pntmiu: "10" },
...@@ -136,10 +180,7 @@ export default { ...@@ -136,10 +180,7 @@ export default {
{ inifrm: "12", ininam: "智能审单", pntmiu: "" }, { inifrm: "12", ininam: "智能审单", pntmiu: "" },
{ inifrm: "examRule", ininam: "智能审单规则配置", pntmiu: "12" }, { inifrm: "examRule", ininam: "智能审单规则配置", pntmiu: "12" },
//保函 //保函
{ inifrm: "13", ininam: "保函", pntmiu: "" },
{ inifrm: "infgid", ininam: "保函入口交易", pntmiu: "13" },
{ inifrm: "infgcd", ininam: "保函赔付查询", pntmiu: "13" },
// { inifrm: "gitsel", ininam: "进口保函查询", pntmiu: "13" },
// { inifrm: "gitset", ininam: "进口保函赔付", pntmiu: "13" }, // { inifrm: "gitset", ininam: "进口保函赔付", pntmiu: "13" },
// { inifrm: "gitcrq", ininam: "进口保函索赔登记", pntmiu: "13" }, // { inifrm: "gitcrq", ininam: "进口保函索赔登记", pntmiu: "13" },
{ inifrm: "14", ininam: "服务管理", pntmiu: "" }, { inifrm: "14", ininam: "服务管理", pntmiu: "" },
...@@ -149,18 +190,9 @@ export default { ...@@ -149,18 +190,9 @@ export default {
{ inifrm: "sptneg", ininam: "sptneg", pntmiu: "14" }, { inifrm: "sptneg", ininam: "sptneg", pntmiu: "14" },
{ inifrm: "15",ininam: "福费廷管理", pntmiu: "" },
{ inifrm: "assetInfo", ininam: "资产信息管理", pntmiu: "15" },
{ inifrm: "assetPub", ininam: "资产发布信息管理", pntmiu: "15" },
{ inifrm: "fund", ininam: "资金信息管理", pntmiu: "15" },
{ inifrm: "16",ininam: "出口融资", pntmiu: "" },
{ inifrm: "infbpd", ininam: "出口融资查询", pntmiu: "16" },
{ inifrm: "17",ininam: "进口融资", pntmiu: "" },
{ inifrm: "inftrd", ininam: "进口融资查询", pntmiu: "17" },
], ],
menus: [], menus: [],
......
<template>
<div class="eibs-tab">
<c-col :span="20">
<el-form-item label="附加条款" prop="lidgrp.blk.adlcnd">
<c-input type="textarea" v-model="model.lidgrp.blk.adlcnd" maxlength="52000" :rows="25" show-word-limit placeholder="请输入附加条款" ></c-input>
</el-form-item>
</c-col>
<c-col :span="2">
<c-button size="small" type="primary" icon="el-icon-search"
@click="showGridPromptDialog('litp.adlcnd.buttxmsel', null, null,{TXT: 'lidgrp.blk.adlcnd'}, {TXT: false})">
</c-button>
</c-col>
<c-col :span="24" >
<c-checkbox
style="margin-left:150px;padding: 0 10px;"
:disabled="this.model.lidgrp.blk.spcrcb !='' "
v-model="model.lidgrp.rec.spcbenflg"
>受益人特殊付款条件</c-checkbox>
</c-col>
<c-col :span="24" >
<c-checkbox
style="margin-left:150px;padding: 0 10px;"
:disabled="this.model.lidgrp.blk.spcben !='' "
v-model="model.lidgrp.rec.spcrcbflg">银行专用特殊付款条件</c-checkbox>
</c-col>
<c-col :span="24" >
<c-checkbox
style="margin-left:150px;padding: 0 10px;"
v-model="model.lidgrp.rec.redclsflg">红/绿条款</c-checkbox>
</c-col>
<c-col :span="20">
<el-form-item label="付款指示Accept., Negot. Bank" prop="lidgrp.blk.insbnk">
<c-input type="textarea" v-model="model.lidgrp.blk.insbnk" maxlength="12000" :rows="8" show-word-limit placeholder="请输入付款指示" ></c-input>
</el-form-item>
</c-col>
<c-col :span="2">
<c-button size="small" type="primary" icon="el-icon-search"
@click="showGridPromptDialog('litp.insbnk.buttxmsel', null, null,{TXT: 'lidgrp.blk.insbnk'}, {TXT: false})">
</c-button>
</c-col>
</div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Litopn/Event"
export default {
inject: ['root'],
props:["model","codes"],
mixins: [commonProcess],
data(){
return {
}
},
methods:{...Event},
created:function(){
}
}
</script>
<style>
.centerLable {
margin-left: -10px;
height: 32px;
line-height: 32px;
}
.marginLable {
padding-left: 160px;
}
</style>
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