Commit aad77f8c by 杜大兵

补充infled交易Stream类型字段

parent a128c488
<template> <template>
<div class="eibs-tab"> <c-content class="eibs-tab" :height="200">
<!-- Additional Conditions --> <div class="infTopBtn">
<c-col :span="19"> <c-button size="small" type="primary">toSearch</c-button>
<el-form-item label="附加条件" prop="ledgrp.blk.adlcnd"> <el-button-group>
<c-input <c-button size="small" type="primary" icon="el-icon-arrow-left" disabled></c-button>
type="textarea" <c-button size="small" type="primary" icon="el-icon-arrow-right" disabled></c-button>
:rows="16" </el-button-group>
v-model="model.ledgrp.blk.adlcnd" <c-button size="small" type="primary">Print</c-button>
maxlength="65" <c-button size="small" type="primary" disabled>Use</c-button>
show-word-limit <c-button size="small" type="primary" disabled>Loginfo</c-button>
placeholder="请输入附加条件" <c-button size="small" type="primary">Exit</c-button>
></c-input> </div>
</el-form-item>
</c-col>
<c-col :span="2" class="adcp_button">
<c-button
size="small"
type="primary"
icon="el-icon-search"
@click="onAdlcndButtxmsel"
>
...
</c-button>
</c-col>
<!-- Special payment conditions for beneficiary exists --> <c-row class="infrow" style="margin-top:50px;">
<c-col :span="24" class="adcp_cheak"> <!-- Additional Conditions -->
<c-checkbox v-model="model.ledgrp.rec.spcbenflg"> <c-col :span="19" :offset="1">
受益人特殊付款条款 <el-form-item label="附加条件" label-width="100px" prop="ledgrp.blk.adlcnd">
</c-checkbox> <c-input
</c-col> type="textarea"
:rows="16"
v-model="model.ledgrp.blk.adlcnd"
maxlength="65"
show-word-limit
placeholder="请输入附加条件"
></c-input>
</el-form-item>
</c-col>
<c-col :span="3" :offset="1">
<c-button
size="small"
type="primary"
icon="el-icon-search"
@click="onAdlcndButtxmsel"
>
...
</c-button>
</c-col>
<!-- Special Payment Conditions for specified Bank only --> <!-- Special payment conditions for beneficiary exists -->
<c-col :span="24" class="adcp_cheak"> <c-col :span="24" class="adcp_cheak">
<c-checkbox v-model="model.ledgrp.rec.spcrcbflg"> <c-checkbox v-model="model.ledgrp.rec.spcbenflg">
收款银行特殊付款条款 受益人特殊付款条款
</c-checkbox> </c-checkbox>
</c-col> </c-col>
<!-- Red/Green Clause -->
<c-col :span="24" class="adcp_cheak">
<c-checkbox v-model="model.ledgrp.rec.redclsflg">
Red/Green Clause
</c-checkbox>
</c-col>
<!-- Instructions to Pay,accept,negot,bank --> <!-- Special Payment Conditions for specified Bank only -->
<c-col :span="19"> <c-col :span="22" class="adcp_cheak">
<el-form-item label="付款、承兑、议付银行指示" prop="ledgrp.blk.insbnk"> <c-checkbox v-model="model.ledgrp.rec.spcrcbflg">
<c-input 收款银行特殊付款条款
type="textarea" </c-checkbox>
:rows="4" </c-col>
v-model="model.ledgrp.blk.insbnk"
maxlength="65" <!-- Red/Green Clause -->
show-word-limit <c-col :span="22" :offset="1" class="adcp_cheak">
placeholder="付款、承兑、议付银行指示" <c-checkbox v-model="model.ledgrp.rec.redclsflg">
></c-input> Red/Green Clause
</el-form-item> </c-checkbox>
</c-col> </c-col>
<c-col :span="2" class="adcp_button"> <!-- Instructions to Pay,accept,negot,bank -->
<c-button <c-col :span="19" :offset="1">
size="small" <el-form-item label="付款、承兑、议付银行指示" label-width="100px" prop="ledgrp.blk.insbnk">
type="primary" <c-input
icon="el-icon-search" type="textarea"
@click="onInsbnkButtxmsel" :rows="4"
> v-model="model.ledgrp.blk.insbnk"
... maxlength="65"
</c-button> show-word-limit
</c-col> placeholder="付款、承兑、议付银行指示"
</div> ></c-input>
</el-form-item>
</c-col>
<c-col :span="3" :offset="1">
<c-button
size="small"
type="primary"
icon="el-icon-search"
@click="onInsbnkButtxmsel"
>
...
</c-button>
</c-col>
</c-row>
</c-content>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
......
<template> <template>
<div class="eibs-tab"> <c-content class="eibs-tab" :height="200">
<c-col :span="22"> <div class="infTopBtn">
<el-form-item label="stream of CBEs" prop="infcon.cbestm"> <c-button size="small" type="primary">toSearch</c-button>
<c-input <el-button-group>
type="textarea" <c-button size="small" type="primary" icon="el-icon-arrow-left" disabled></c-button>
:rows="12" <c-button size="small" type="primary" icon="el-icon-arrow-right" disabled></c-button>
v-model="model.infcon.cbestm" </el-button-group>
placeholder="请输入stream of CBEs" <c-button size="small" type="primary">Print</c-button>
></c-input> <c-button size="small" type="primary" disabled>Use</c-button>
</el-form-item> <c-button size="small" type="primary" disabled>Loginfo</c-button>
</c-col> <c-button size="small" type="primary">Exit</c-button>
</div> </div>
<c-row style="margin-top:20px; padding: 0 10px 0 10px;">
<c-istream-table :list="this.model.infbut.dspstm" :columns="columns">
<el-table-column prop="op" label="OP" width="100">
<template slot-scope="scope">
<a href="javascript:void(0)" @click="continueEdit(scope.row)">操作</a>
</template>
</el-table-column>
</c-istream-table>
</c-row>
</c-content>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
...@@ -24,7 +35,25 @@ export default { ...@@ -24,7 +35,25 @@ export default {
mixins: [CommonProcess], mixins: [CommonProcess],
data(){ data(){
return { return {
curownref:"",
initdialog:false,
columns:[
"1 1 \"Ext.Id\" 150",
"1 2 \"Type of Entry\" 130",
"1 3 \"Type\" 100",
"1 4 \"Date\" 130",
"1 5 \"Cur\" 100",
"2 5 \"Cur\" 100",
"1 6 \"Amount\" 130",
"2 6 \"Conv.Amount\" 130",
"1 7 \"Rel.\" 100",
"1 8 \"Created\" 130",
"2 8 \"End Date\" 130",
"1 9 \"Description\" 150",
"2 9 \"Account\" 130",
"1 10 \"Trn ID\" 130",
"2 10 \"CBE ID\" 130",
]
} }
}, },
methods:{...Event}, methods:{...Event},
......
<template> <template>
<div class="eibs-tab"> <c-content class="eibs-tab" :height="200">
<c-col :span="24"> <div class="infTopBtn">
<c-col :span="12"> <c-button size="small" type="primary">toSearch</c-button>
<el-button-group>
<c-button size="small" type="primary" icon="el-icon-arrow-left" disabled></c-button>
<c-button size="small" type="primary" icon="el-icon-arrow-right" disabled></c-button>
</el-button-group>
<c-button size="small" type="primary">Print</c-button>
<c-button size="small" type="primary" disabled>Use</c-button>
<c-button size="small" type="primary" disabled>Loginfo</c-button>
<c-button size="small" type="primary">Exit</c-button>
</div>
<c-row class="infrow" style="margin-top:50px;">
<c-col :span="11" :offset="1">
<el-form-item label="CBS Column" prop="infcon.cbctxt"> <el-form-item label="CBS Column" prop="infcon.cbctxt">
<c-select <c-select
v-model="model.infcon.cbctxt" v-model="model.infcon.cbctxt"
...@@ -10,19 +22,18 @@ ...@@ -10,19 +22,18 @@
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> </c-row>
<c-col :span="22"> <c-row style="margin-top:20px; padding: 0 10px 0 10px;">
<el-form-item label="stream of CBBs" prop="infcon.cbbstm"> <c-istream-table :list="this.model.infcon.cbbstm" :columns="columns">
<c-input <el-table-column prop="op" label="OP" width="100">
type="textarea" <template slot-scope="scope">
:rows="20" <a href="javascript:void(0)" @click="continueEdit(scope.row)">操作</a>
v-model="model.infcon.cbbstm" </template>
placeholder="请输入stream of CBBs" </el-table-column>
></c-input> </c-istream-table>
</el-form-item> </c-row>
</c-col> </c-content>
</div>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
...@@ -38,7 +49,18 @@ export default { ...@@ -38,7 +49,18 @@ export default {
mixins: [CommonProcess], mixins: [CommonProcess],
data(){ data(){
return { return {
curownref:"",
initdialog:false,
columns:[
"1 1 \"Ext.Id\" 150",
"1 2 \"Begin\" 150",
"1 3 \"End\" 150",
"1 4 \"Cur\" 120",
"1 5 \"Balance\" 150",
"1 6 \"Cur\" 120",
"1 7 \"Converted Amount\" 150",
"1 8 \"CBE ID\" 150",
]
} }
}, },
methods:{...Event}, methods:{...Event},
......
<template> <template>
<div class="eibs-tab"> <c-content class="eibs-tab" :height="200">
<c-row> <div class="infTopBtn">
<c-col :span="11"> <c-button size="small" type="primary">toSearch</c-button>
<!-- Available with --> <el-button-group>
<c-col :span="24"> <c-button size="small" type="primary" icon="el-icon-arrow-left" disabled></c-button>
<el-form-item label="指定银行" prop="ledgrp.rec.avbwth"> <c-button size="small" type="primary" icon="el-icon-arrow-right" disabled></c-button>
<c-select </el-button-group>
v-model="model.ledgrp.rec.avbwth" <c-button size="small" type="primary">Print</c-button>
style="width: 100%" <c-button size="small" type="primary" disabled>Use</c-button>
placeholder="请选择指定银行" <c-button size="small" type="primary" disabled>Loginfo</c-button>
<c-button size="small" type="primary">Exit</c-button>
</div>
<c-row class="infrow" style="margin-top:50px;">
<c-col :span="11" :offset="1">
<c-row>
<!-- Available with -->
<c-col :span="24">
<el-form-item label="指定银行" prop="ledgrp.rec.avbwth">
<c-select
v-model="model.ledgrp.rec.avbwth"
style="width: 100%"
placeholder="请选择指定银行"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<c-ptap
:model="model"
:argadr="{
title: '指定银行',
grp: 'ledgrp',
rol: 'avb',
}"
:noRef="true"
:onlySearch="true"
@onSeainf="onSeainf"
@onAplpDet="onAvbpDet"
> >
</c-select> </c-ptap>
</el-form-item> </c-col>
</c-col> <c-col :span="24">
<c-col :span="24"> <el-form-item label="Address Block" prop="ledgrp.avb.pts.adrblk">
<c-ptap <c-input
:model="model" type="textarea"
:argadr="{ v-model="model.ledgrp.avb.pts.adrblk"
title: '指定银行', maxlength="35"
grp: 'ledgrp', show-word-limit
rol: 'avb', placeholder="请输入Address Block"
}" ></c-input>
:noRef="true" </el-form-item>
:onlySearch="true" </c-col>
@onSeainf="onSeainf"
@onAplpDet="onAvbpDet" <!-- Available by -->
> <c-col :span="24">
</c-ptap> <el-form-item label="兑付方式" prop="ledgrp.rec.avbby">
</c-col> <c-select
<!-- <c-col :span="24"> v-model="model.ledgrp.rec.avbby"
<el-form-item label="External Key of Address" prop="ledgrp.avb.pts.extkey"> style="width:100%"
<c-input v-model="model.ledgrp.avb.pts.extkey" maxlength="16" placeholder="请输入External Key of Address"></c-input> placeholder="请选择兑付方式"
</el-form-item> ></c-select>
</c-col> --> </el-form-item>
<!-- <c-col :span="24"> </c-col>
<el-form-item label="Address Block" prop="ledgrp.avb.pts.adrblk"> <!-- Deferred Payment Details -->
<c-input type="textarea" v-model="model.ledgrp.avb.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" ></c-input> <c-col :span="24">
</el-form-item> <el-form-item label="期限描述" prop="ledgrp.blk.defdet">
</c-col> --> <c-input
<!-- Available in --> type="textarea"
<c-col :span="24"> :rows="3"
<el-form-item label="名称地址" prop="ledgrp.blk.avbwthtxt"> v-model="model.ledgrp.blk.defdet"
<c-input maxlength="35"
type="textarea" show-word-limit
v-model="model.ledgrp.blk.avbwthtxt" placeholder="请输入期限描述"
maxlength="35" ></c-input>
show-word-limit </el-form-item>
placeholder="请输入名称地址" </c-col>
></c-input>
</el-form-item> <!-- Drafts at -->
</c-col> <c-col :span="24">
<el-form-item label="汇票期限" prop="ledgrp.blk.dftat">
<!-- <c-col :span="12"> <c-input
<el-form-item label="Address Block" prop="ledgrp.avb.pts.adrblk"> type="textarea"
<c-input :rows="3"
type="textarea" v-model="model.ledgrp.blk.dftat"
v-model="model.ledgrp.avb.pts.adrblk" maxlength="35"
maxlength="35" show-word-limit
show-word-limit placeholder="请输入汇票期限"
placeholder="请输入Address Block" ></c-input>
></c-input> </el-form-item>
</el-form-item> </c-col>
</c-col> -->
<c-col :span="24">
<!-- Available by --> <c-ptap
<c-col :span="24"> :model="model"
<el-form-item label="兑付方式" prop="ledgrp.rec.avbby"> :argadr="{
<c-select title: '汇票申请人',
v-model="model.ledgrp.rec.avbby" grp: 'ledgrp',
style="width:100%" rol: 'drw',
placeholder="请选择兑付方式" }"
></c-select> :noRef="true"
</el-form-item> @onSeainf="onSeainf"
</c-col> @onAplpDet="onDrwpDet"
<!-- Deferred Payment Details --> >
<c-col :span="24"> </c-ptap>
<el-form-item label="期限描述" prop="ledgrp.blk.defdet"> </c-col>
<c-input <!-- Drawee -->
type="textarea" <c-col :span="24">
:rows="3" <el-form-item label="名称地址" prop="ledgrp.avb.pts.adrblk">
v-model="model.ledgrp.blk.defdet" <c-input
maxlength="35" type="textarea"
show-word-limit v-model="model.ledgrp.avb.pts.adrblk"
placeholder="请输入期限描述" maxlength="35"
></c-input> show-word-limit
</el-form-item> placeholder="请输入名称地址"
</c-col> ></c-input>
</el-form-item>
<!-- Drafts at --> </c-col>
<c-col :span="24"> </c-row>
<el-form-item label="汇票期限" prop="ledgrp.blk.dftat">
<c-input
type="textarea"
:rows="3"
v-model="model.ledgrp.blk.dftat"
maxlength="35"
show-word-limit
placeholder="请输入汇票期限"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<c-ptap
:model="model"
:argadr="{
title: '汇票申请人',
grp: 'ledgrp',
rol: 'drw',
}"
:noRef="true"
@onSeainf="onSeainf"
@onAplpDet="onDrwpDet"
>
</c-ptap>
</c-col>
</c-col> </c-col>
<c-col :span="11" :offset="1"> <c-col :span="10" :offset="1">
<c-col :span="24"> <c-row>
<el-form-item label="最大金额详情" prop="ledgrp.blk.mixdet"> <c-col :span="24">
<c-input <el-form-item label="最大金额详情" prop="ledgrp.blk.mixdet">
type="textarea" <c-input
:rows="4"
v-model="model.ledgrp.blk.mixdet"
maxlength="35"
show-word-limit
placeholder="请输入最大金额详情"
></c-input>
</el-form-item>
</c-col>
<!-- Days of presentation period -->
<c-col :span="24">
<el-form-item label="交单期天数" prop="ledgrp.rec.prepers18">
<c-input
v-model="model.ledgrp.rec.prepers18"
placeholder="请输入交单期天数"
></c-input>
</el-form-item>
</c-col>
<!-- Presentation Period -->
<c-col :span="24">
<el-form-item label="交单期" prop="ledgrp.blk.preper">
<c-input
type="textarea"
v-model="model.ledgrp.blk.preper"
maxlength="35"
show-word-limit
placeholder="请输入交单期"
></c-input>
</el-form-item>
</c-col>
<!-- Additional Details to Code for Charges CHATO -->
<c-col :span="24">
<el-form-item label="附加收费详情" prop="ledgrp.blk.feetxt">
<c-input
type="textarea" type="textarea"
:rows="6" :rows="4"
v-model="model.ledgrp.blk.feetxt" v-model="model.ledgrp.blk.mixdet"
maxlength="35" maxlength="35"
show-word-limit show-word-limit
placeholder="请输入附加收费详情" placeholder="请输入最大金额详情"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<!-- Own Charges Borne by --> <!-- Days of presentation period -->
<c-col :span="18"> <c-col :span="24">
<el-form-item label="自行承担费用" prop="ledgrp.rec.chato"> <el-form-item label="交单期天数" prop="ledgrp.rec.prepers18">
<c-select <c-input
v-model="model.ledgrp.rec.chato" v-model="model.ledgrp.rec.prepers18"
style="width: 100%" placeholder="请输入交单期天数"
placeholder="请选择" ></c-input>
> </el-form-item>
</c-select> </c-col>
</el-form-item> <!-- Presentation Period -->
</c-col> <c-col :span="24">
<c-col :span="18"> <el-form-item label="交单期" prop="ledgrp.blk.preper">
<el-form-item label="国家统计代码" prop="ledgrp.rec.stacty"> <c-input
<c-select type="textarea"
v-model="model.ledgrp.rec.stacty" v-model="model.ledgrp.blk.preper"
style="width: 100%" maxlength="35"
placeholder="请选择国家统计代码" show-word-limit
> placeholder="请输入交单期"
</c-select> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="18"> <!-- Additional Details to Code for Charges CHATO -->
<el-form-item label="兑付最高期限" prop="ledgrp.rec.tenmaxday"> <c-col :span="24">
<c-input <el-form-item label="附加收费详情" prop="ledgrp.blk.feetxt">
v-model="model.ledgrp.rec.tenmaxday" <c-input
placeholder="请输入兑付最高期限" type="textarea"
></c-input> :rows="6"
</el-form-item> v-model="model.ledgrp.blk.feetxt"
</c-col> maxlength="35"
show-word-limit
placeholder="请输入附加收费详情"
></c-input>
</el-form-item>
</c-col>
<!-- Own Charges Borne by -->
<c-col :span="18">
<el-form-item label="自行承担费用" prop="ledgrp.rec.chato">
<c-select
v-model="model.ledgrp.rec.chato"
style="width: 100%"
placeholder="请选择"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="18">
<el-form-item label="国家统计代码" prop="ledgrp.rec.stacty">
<c-select
v-model="model.ledgrp.rec.stacty"
style="width: 100%"
placeholder="请选择国家统计代码"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="18">
<el-form-item label="兑付最高期限" prop="ledgrp.rec.tenmaxday">
<c-input
v-model="model.ledgrp.rec.tenmaxday"
placeholder="请输入兑付最高期限"
></c-input>
</el-form-item>
</c-col>
</c-row>
</c-col> </c-col>
</c-row> </c-row>
<c-row> <c-row>
<!-- Dispatch from --> <!-- Dispatch from -->
<c-col :span="11"> <c-col :span="11" :offset="1">
<el-form-item label="转运" prop="ledgrp.rec.shpfro"> <el-form-item label="转运" prop="ledgrp.rec.shpfro">
<c-input <c-input
type="textarea" type="textarea"
...@@ -224,7 +228,7 @@ ...@@ -224,7 +228,7 @@
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="11"> <c-col :span="11" :offset="1">
<el-form-item label="航空/目的港" prop="ledgrp.rec.pordis"> <el-form-item label="航空/目的港" prop="ledgrp.rec.pordis">
<c-input <c-input
type="textarea" type="textarea"
...@@ -250,7 +254,7 @@ ...@@ -250,7 +254,7 @@
</el-form-item> </el-form-item>
</c-col> </c-col>
<!-- Shipment Period --> <!-- Shipment Period -->
<c-col :span="11"> <c-col :span="11" :offset="1">
<el-form-item label="发货期" prop="ledgrp.blk.shpper"> <el-form-item label="发货期" prop="ledgrp.blk.shpper">
<c-input <c-input
type="textarea" type="textarea"
...@@ -263,106 +267,7 @@ ...@@ -263,106 +267,7 @@
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-row> </c-row>
<!-- </c-content>
<c-col :span="12">
<el-form-item label="External Key of Address" prop="ledgrp.drw.pts.extkey">
<c-input v-model="model.ledgrp.drw.pts.extkey" maxlength="16" placeholder="请输入External Key of Address"></c-input>
</el-form-item>
</c-col>
<c-col :span="3">
<c-button size="small" type="primary;width:10%" @click="onSeainf">i</c-button>
</c-col>
<c-col :span="24">
<el-form-item label="Address Block" prop="ledgrp.drw.pts.adrblk">
<c-input
type="textarea"
:rows="3"
v-model="model.ledgrp.drw.pts.adrblk"
maxlength="35"
show-word-limit
placeholder="请输入Address Block"
></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Presentation period text" prop="ledgrp.rec.prepertxts18">
<c-input v-model="model.ledgrp.rec.prepertxts18" maxlength="35" placeholder="请输入Presentation period text"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onAvbpDet">
Details
</c-button>
</c-col>
<c-col :span="12">
<el-form-item label="名称" prop="ledgrp.avb.namelc">
<c-input type="textarea" v-model="model.ledgrp.avb.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Chinese address" prop="ledgrp.avb.dbfadrblkcn">
<c-input type="textarea" v-model="model.ledgrp.avb.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="ledgrp.avb.adrelc">
<c-input type="textarea" v-model="model.ledgrp.avb.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" icon="el-icon-search" @click="onPreperButtxmsel">
...
</c-button>
</c-col>
<c-col :span="12">
<span v-text="model.recpan.labdefdet" data-path=".recpan.labdefdet" > </span>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" icon="el-icon-search" @click="onChariaButtxmsel">
...
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" icon="el-icon-search" @click="onLcrdftatButtxmsel">
...
</c-button>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onDrwpDet">
Details
</c-button>
</c-col>
<c-col :span="12">
<el-form-item label="名称" prop="ledgrp.drw.namelc">
<c-input type="textarea" v-model="model.ledgrp.drw.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Chinese address" prop="ledgrp.drw.dbfadrblkcn">
<c-input type="textarea" v-model="model.ledgrp.drw.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="ledgrp.drw.adrelc">
<c-input type="textarea" v-model="model.ledgrp.drw.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
</el-form-item>
</c-col> -->
</div>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
......
<template> <template>
<div class="eibs-tab"> <c-content class="eibs-tab" :height="200">
<!-- Description of Goods --> <div class="infTopBtn">
<c-col :span="19"> <c-button size="small" type="primary">toSearch</c-button>
<el-form-item label="货物说明" prop="ledgrp.blk.lcrgod"> <el-button-group>
<c-input <c-button size="small" type="primary" icon="el-icon-arrow-left" disabled></c-button>
type="textarea" <c-button size="small" type="primary" icon="el-icon-arrow-right" disabled></c-button>
:rows="20" </el-button-group>
v-model="model.ledgrp.blk.lcrgod" <c-button size="small" type="primary">Print</c-button>
maxlength="2000" <c-button size="small" type="primary" disabled>Use</c-button>
show-word-limit <c-button size="small" type="primary" disabled>Loginfo</c-button>
placeholder="请输入货物说明" <c-button size="small" type="primary">Exit</c-button>
></c-input> </div>
</el-form-item>
</c-col> <c-row class="infrow" style="margin-top:50px;">
<!-- Description of Goods -->
<c-col :span="19" :offset="1">
<el-form-item label="货物说明" label-width="100px" prop="ledgrp.blk.lcrgod">
<c-input
type="textarea"
:rows="20"
v-model="model.ledgrp.blk.lcrgod"
maxlength="2000"
show-word-limit
placeholder="请输入货物说明"
></c-input>
</el-form-item>
</c-col>
<c-col :span="2" class="dogp_button"> <c-col :span="3" :offset="1" class="dogp_button">
<c-button <c-button
size="small" size="small"
type="primary" type="primary"
icon="el-icon-search" icon="el-icon-search"
@click="onLcrgodButtxmsel" @click="onLcrgodButtxmsel"
> >
... ...
</c-button> </c-button>
</c-col> </c-col>
<!-- Goods Code --> <!-- Goods Code -->
<c-col :span="12"> <c-col :span="11" :offset="1">
<el-form-item label="货物类型" prop="ledgrp.rec.stagod"> <el-form-item label="货物类型" label-width="100px" prop="ledgrp.rec.stagod">
<c-select <c-select
v-model="model.ledgrp.rec.stagod" v-model="model.ledgrp.rec.stagod"
style="width:100%" style="width:100%"
placeholder="请选择货物类型" placeholder="请选择货物类型"
></c-select> ></c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
</div> </c-row>
</c-content>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
...@@ -59,7 +73,5 @@ export default { ...@@ -59,7 +73,5 @@ export default {
} }
</script> </script>
<style> <style>
.dogp_button {
margin: 20px 0 0 -10px;
}
</style> </style>
<template> <template>
<div class="eibs-tab"> <c-content class="eibs-tab" :height="200">
<c-col :span="19"> <div class="infTopBtn">
<!-- Documents Required --> <c-button size="small" type="primary">toSearch</c-button>
<el-form-item label="单据要求" prop="ledgrp.blk.lcrdoc"> <el-button-group>
<c-input <c-button size="small" type="primary" icon="el-icon-arrow-left" disabled></c-button>
type="textarea" <c-button size="small" type="primary" icon="el-icon-arrow-right" disabled></c-button>
:rows="20" </el-button-group>
v-model="model.ledgrp.blk.lcrdoc" <c-button size="small" type="primary">Print</c-button>
maxlength="65" <c-button size="small" type="primary" disabled>Use</c-button>
show-word-limit <c-button size="small" type="primary" disabled>Loginfo</c-button>
placeholder="请输入单据要求" <c-button size="small" type="primary">Exit</c-button>
></c-input> </div>
</el-form-item>
</c-col> <c-row class="infrow" style="margin-top:50px;">
<!-- Documents Required -->
<c-col :span="19" :offset="1">
<el-form-item label="单据要求" label-width="100px" prop="ledgrp.blk.lcrdoc">
<c-input
type="textarea"
:rows="20"
v-model="model.ledgrp.blk.lcrdoc"
maxlength="65"
show-word-limit
placeholder="请输入单据要求"
></c-input>
</el-form-item>
</c-col>
<c-col :span="2" class="dorp_button"> <c-col :span="3" :offset="1">
<c-button <c-button
size="small" size="small"
type="primary" type="primary"
icon="el-icon-search" icon="el-icon-search"
@click="onLcrdocButtxmsel" @click="onLcrdocButtxmsel"
> >
... ...
</c-button> </c-button>
</c-col> </c-col>
</div> </c-row>
</c-content>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
...@@ -48,7 +62,5 @@ export default { ...@@ -48,7 +62,5 @@ export default {
} }
</script> </script>
<style> <style>
.dorp_button{
margin: 20px 0 0 -10px;
}
</style> </style>
<template> <template>
<div class="eibs-tab"> <c-content class="eibs-tab" :height="200">
<c-row> <div class="infTopBtn">
<c-col :span="24"> <c-button size="small" type="primary">toSearch</c-button>
<el-form-item label="Fee Pool"> <el-button-group>
</el-form-item> <c-button size="small" type="primary" icon="el-icon-arrow-left" disabled></c-button>
</c-col> <c-button size="small" type="primary" icon="el-icon-arrow-right" disabled></c-button>
<c-col :span="8"> </el-button-group>
<el-form-item label="Fee Code" prop="infcon.fepfeecod"> <c-button size="small" type="primary">Print</c-button>
<c-select <c-button size="small" type="primary" disabled>Use</c-button>
v-model="model.infcon.fepfeecod" <c-button size="small" type="primary" disabled>Loginfo</c-button>
style="width:100%" <c-button size="small" type="primary">Exit</c-button>
placeholder="请选择Fee Code" </div>
>
</c-select> <c-row class="infrow" style="margin-top:50px;">
</el-form-item> <c-col :span="23" :offset="1">
Fee Pool
</c-col> </c-col>
<c-col :span="12" :offset="4"> </c-row>
<el-form-item label="Fee Text" prop="infcon.fepfeecod"> <c-row class="infrow">
<c-select <c-col :span="11" :offset="1">
disabled <c-row>
v-model="model.infcon.fepfeecod" <c-col :span="20">
style="width:100%" <el-form-item label="Fee Code" prop="infcon.fepfeecod">
placeholder="请选择Fee Code" <c-select v-model="model.infcon.fepfeecod" style="width:100%" placeholder="请选择Fee Code">
> </c-select>
</c-select> </el-form-item>
</el-form-item> </c-col>
</c-row>
</c-col> </c-col>
<c-col :span="12"> <c-col :span="11" :offset="1">
<el-form-item label="Disposition" prop="infcon.fepdsp"> <c-row>
<c-select <c-col :span="20">
v-model="model.infcon.fepdsp" <el-form-item label="Disposition" prop="infcon.fepdsp">
style="width:100%" <c-select v-model="model.infcon.fepdsp" style="width:100%" placeholder="请选择Disposition">
placeholder="请选择Disposition" </c-select>
> </el-form-item>
</c-select> </c-col>
</el-form-item> </c-row>
</c-col> </c-col>
</c-row> </c-row>
<c-row>
<c-col :span="22">
<el-form-item label="stream for FEPs to selected contract" prop="infcon.fepstm"> <!-- stream for FEPs to selected contract -->
<!-- <c-col :span="22" :offset="1">
<el-form-item label="" prop="infcon.fepstm">
<c-input <c-input
type="textarea" type="textarea"
:rows="6" :rows="6"
...@@ -47,33 +51,47 @@ ...@@ -47,33 +51,47 @@
placeholder="" placeholder=""
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col>
<!-- <c-col :span="24">
<el-form-item label="feptxtlbl" prop="infcon.feptxtlbl">
</el-form-item>
</c-col> --> </c-col> -->
<c-col :span="12"> <c-row class="infrow" style="margin-top:20px;">
<span v-text="model.infcon.feptxtlbl" data-path=".infcon.feptxtlbl" > </span> <c-col :span="22" :offset="1">
</c-col> <c-istream-table :list="stmData.fepstmData" :columns="stmData.fepstmColumns">
<el-table-column prop="op" label="OP" width="100">
<template slot-scope="scope">
<a href="javascript:void(0)" @click="continueEdit(scope.row)">操作</a>
</template>
</el-table-column>
</c-istream-table>
</c-col>
</c-row> </c-row>
<c-row>
<c-col :span="24"> <br />
<el-form-item label="Foreign Charges Pool" >
</el-form-item> <c-row class="infrow" style="margin-top:20px;">
<c-col :span="23" :offset="1">
Foreign Charges Pool
</c-col> </c-col>
<c-col :span="12"> </c-row>
<el-form-item label="Disposition" prop="infcon.fcpdsp">
<c-select <br />
v-model="model.infcon.fcpdsp" <c-row class="infrow">
style="width:100%" <c-col :span="11" :offset="1">
placeholder="" <c-row>
> <c-col :span="20">
</c-select> <el-form-item label="Disposition" prop="infcon.fcpdsp">
</el-form-item> <c-select v-model="model.infcon.fcpdsp" style="width:100%" placeholder="请选择Disposition">
</c-select>
</el-form-item>
</c-col>
</c-row>
</c-col> </c-col>
<c-col :span="22"> <c-col :span="11" :offset="1">
<el-form-item label="stream of foreign charges" prop="infcon.fcpstm">
<!-- 请输入stream of foreign charges --> </c-col>
</c-row>
<!-- stream of foreign charges -->
<!-- <c-col :span="22" :offset="1">
<el-form-item label="" prop="infcon.fcpstm">
<c-input <c-input
type="textarea" type="textarea"
:rows="6" :rows="6"
...@@ -81,12 +99,19 @@ ...@@ -81,12 +99,19 @@
placeholder="" placeholder=""
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col> -->
<c-col :span="12"> <c-row class="infrow" style="margin-top:20px;">
<span v-text="model.infcon.fcptxtlbl" data-path=".infcon.fcptxtlbl" > </span> <c-col :span="22" :offset="1">
<c-istream-table :list="stmData.fcpstmData" :columns="stmData.fcpstmColumns">
<el-table-column prop="op" label="OP" width="100">
<template slot-scope="scope">
<a href="javascript:void(0)" @click="continueEdit(scope.row)">操作</a>
</template>
</el-table-column>
</c-istream-table>
</c-col> </c-col>
</c-row> </c-row>
</div> </c-content>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
...@@ -100,7 +125,37 @@ export default { ...@@ -100,7 +125,37 @@ export default {
mixins: [CommonProcess], mixins: [CommonProcess],
data(){ data(){
return { return {
stmData: {
fepstmColumns: [
"1 1 \"Fee Code\" 80 ",
"1 2 \"Fee Text\" 0 ",
"1 3 \"Disposition\" 130 ",
"1 4 \"Role\" 70 ",
"1 5 \"Cur\" 80 ",
"1 6 \"Amount\" 100 ",
"1 7 \"Transaction/INR\" 120 ",
"1 8 \"Entry Date\" 0 ",
"1 9 \"Status\" 80 ",
],
fepstmData: [
],
fcpstmColumns: [
"1 1 \"Payer\" 0 ",
"2 1 \"Text for Payer\" 0 ",
"1 2 \"Payee\" 0 ",
"2 2 \"Text for Payee\" 130 ",
"1 3 \"Disposition\" 0 ",
"1 4 \"Cur\" 100 ",
"1 5 \"Amount\" 100 ",
"1 6 \"Transaction/INR\" 130 ",
"1 7 \"Entry Date\" 0 ",
"1 8 \"Status\" 80 ",
],
fcpstmData: [
],
}
} }
}, },
methods:{...Event}, methods:{...Event},
......
<template> <template>
<div class="eibs-tab"> <c-content class="eibs-tab" :height="200">
<!-- <c-col :sapn="6"> <div class="infTopBtn">
<el-form-item label="Booking date from" prop="infcon.seabucdatfro"> <c-button size="small" type="primary">toSearch</c-button>
<c-date-picker <el-button-group>
type="date" <c-button size="small" type="primary" icon="el-icon-arrow-left" disabled></c-button>
v-model="model.infcon.seabucdatfro" <c-button size="small" type="primary" icon="el-icon-arrow-right" disabled></c-button>
style="width:100%" </el-button-group>
placeholder="请选择Booking date from" <c-button size="small" type="primary">Print</c-button>
></c-date-picker> <c-button size="small" type="primary" disabled>Use</c-button>
</el-form-item> <c-button size="small" type="primary" disabled>Loginfo</c-button>
</c-col> <c-button size="small" type="primary">Exit</c-button>
<c-col :span="6"> </div>
<el-form-item label="to" label-width="10px" prop="infcon.seabucdatto">
<c-date-picker <c-row class="infrow" style="margin-top:30px;">
type="date" <c-col :span="11" :offset="1">
v-model="model.infcon.seabucdatto" <c-row>
style="width:100%" <c-col :span="11">
placeholder="请选择Booking date till used on GLEINFP" <el-form-item label="Booking date from" prop="infcon.seabucdatfro">
></c-date-picker> <c-date-picker type="date" v-model="model.infcon.seabucdatfro" style="width:100%"
</el-form-item> placeholder="请选择Booking date from"></c-date-picker>
</c-col> </el-form-item>
</c-col>
<c-col :span="11" :offset="1"> <c-col :span="8" :offset="1">
<el-form-item label="Transaction INR" prop="infcon.seatrninr"> <el-form-item label="to" prop="infcon.seabucdatto" label-width="40px">
<c-input <c-date-picker type="date" v-model="model.infcon.seabucdatto" style="width:100%"
v-model="model.infcon.seatrninr" placeholder="请选择Booking date till used on GLEINFP"></c-date-picker>
maxlength="8" </el-form-item>
placeholder="请输入Transaction INR" </c-col>
></c-input> </c-row>
</el-form-item> </c-col>
</c-col> <c-col :span="10" :offset="1">
--> <c-row>
<c-col :span="8"> <c-col :span="20">
<el-form-item label="Booking date from" prop="infcon.seabucdatfro"> <el-form-item label="Transaction INR" prop="infcon.seatrninr">
<c-date-picker type="date" v-model="model.infcon.seabucdatfro" style="width:90%" placeholder="请选择Booking date from"></c-date-picker> <c-input v-model="model.infcon.seatrninr" maxlength="8" placeholder="请输入Transaction INR">
</el-form-item> </c-input>
</c-col> </el-form-item>
</c-col>
<c-col :span="6"> </c-row>
<el-form-item label="To" label-width="20px" prop="infcon.seabucdatto"> </c-col>
<c-date-picker type="date" v-model="model.infcon.seabucdatto" style="width:90%" placeholder="请选择Booking date till used on GLEINFP"></c-date-picker> </c-row>
</el-form-item>
</c-col> <c-row class="infrow" style="margin-top:20px;">
<c-col :span="22" :offset="1">
<c-istream-table :list="stmData.data" :columns="stmData.columns">
<c-col :span="8" :offset="1"> <el-table-column prop="op" label="OP" width="100">
<el-form-item label="Transaction INR" prop="infcon.seatrninr"> <template slot-scope="scope">
<c-input v-model="model.infcon.seatrninr" maxlength="8" placeholder="请输入Transaction INR"></c-input> <a href="javascript:void(0)" @click="continueEdit(scope.row)">操作</a>
</el-form-item> </template>
</c-col> </el-table-column>
<!-- Stream of GLEs --> </c-istream-table>
<c-col :span="22"> </c-col>
<el-form-item label="" label-width="20px" prop="infcon.glestm"> </c-row>
<c-input </c-content>
type="textarea"
:rows="20"
v-model="model.infcon.glestm"
placeholder="请输入Stream of GLEs"
></c-input>
</el-form-item>
</c-col>
</div>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
...@@ -74,7 +66,28 @@ export default { ...@@ -74,7 +66,28 @@ export default {
mixins: [CommonProcess], mixins: [CommonProcess],
data(){ data(){
return { return {
stmData: {
columns: [
"1 1 \"TRNINR\" 100 ",
"1 2 \"Account\" 100 ",
"1 3 \"D/C\" 80 ",
"1 4 \"Cur\" 80",
"2 4 \"S.Cur\" 80",
"1 5 \"Amount\" 100",
"2 5 \"Sys.Amount\" 100",
"1 6 \"Val.Date\" 130",
"2 6 \"Book.Date\" 130",
"1 7 \"Booking Text 1\" 130",
"2 7 \"Booking Text 2\" 130",
"3 7 \"Booking Text 3\" 130",
"1 8 \"P.N.\" 80",
"1 9 \"Exp.Session\" 120",
"2 9 \"Exp.Status\" 80",
],
data: [
]
}
} }
}, },
methods:{...Event}, methods:{...Event},
......
<template> <template>
<div class="eibs-tab"> <c-content class="eibs-tab" :height="200">
<c-list-search @form-reset="handleReset" @form-search="onInfbutSearow" > <c-infsearch-group @handleSearch="handleSearch" @handleReset="handleReset">
<template v-slot="searchSlot"> <!-- 持续展示区 -->
<el-form <template slot="keepShow">
class="m-table-search-form" <c-row class="infrow">
ref="paramsForm" <c-col :span="11" :offset="1">
:inline="true" <c-row>
label-position="left" <el-form-item label="Own Reference" prop="infcon.seaownref">
label-width="110px" <c-input v-model="model.infcon.seaownref"
size="small" maxlength="16"
>
<el-row>
<c-col :span="12">
<el-form-item label="业务编号" prop="infcon.seaownref">
<c-input
v-model="model.infcon.seaownref"
maxlength="16"
placeholder="请输入Own Reference" placeholder="请输入Own Reference"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-row>
</c-col>
<c-col :span="10" :offset="1">
<el-form-item label="Name" prop="infcon.nam">
<c-input
v-model="model.infcon.nam"
maxlength="40"
placeholder="请输入Name"
></c-input>
</el-form-item>
</c-col>
</c-row>
</template>
<c-col :span="12"> <!-- 可控展示区 -->
<el-form-item label="开立日期" > <template slot="changeShow">
<el-date-picker <c-row class="infrow">
type="date" <c-col :span="11" :offset="1">
v-model="model.infcon.opndatfrom" <c-row >
style="width:43%" <c-col :span="24" >
placeholder="请选择Opening between" <el-form-item label="Party Reference" prop="infcon.searef">
></el-date-picker> <c-input
- v-model="model.infcon.searef"
<el-date-picker maxlength="16"
type="date" placeholder="请输入Party Reference"
v-model="model.infcon.opndatto" ></c-input>
style="width:43%" </el-form-item>
placeholder="请选择Open Date to" </c-col>
></el-date-picker>
</el-form-item>
</c-col>
</el-row>
<el-row v-show="searchSlot.searchToggle">
<c-col :span="12">
<el-form-item label="Party Reference" prop="infcon.searef">
<c-input
v-model="model.infcon.searef"
maxlength="16"
placeholder="请输入Party Reference"
></c-input>
</el-form-item>
</c-col>
<c-col :span="12" >
<el-form-item label="业务主题" prop="infcon.nam" style="">
<c-input
v-model="model.infcon.nam"
maxlength="40"
placeholder="请输入Name"
></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Select Single Party" prop="infcon.pty.extkey">
<c-input
v-model="model.infcon.pty.extkey"
maxlength="24"
placeholder="请输入Select Single Party"
></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Party Name" prop="infcon.pty.nam">
<c-input
v-model="model.infcon.pty.nam"
maxlength="40"
placeholder="请输入External Visible Name"
></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Party Name/BIC" prop="infcon.seapty">
<c-input
v-model="model.infcon.seapty"
maxlength="24"
placeholder="请输入Party Name/BIC"
></c-input>
</el-form-item>
</c-col>
<c-col :span="12"> <c-col :span="24">
<el-form-item label="Role" prop="infcon.searol"> <el-form-item label="Select Single Party" prop="infcon.pty.extkey">
<c-select <c-input
v-model="model.infcon.searol" v-model="model.infcon.pty.extkey"
style="width:100%" maxlength="24"
placeholder="请选择Role" placeholder="请输入Select Single Party"
> ></c-input>
<el-option </el-form-item>
v-for="item in codes.searol" </c-col>
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Resp.User" prop="infcon.usr.extkey">
<c-input
v-model="model.infcon.usr.extkey"
maxlength="8"
placeholder="请输入User ID"
></c-input>
</el-form-item>
</c-col>
<!--
<c-col :span="12">
<el-form-item label="Status" prop="infcon.seasta" style="">
<c-select
v-model="model.infcon.seasta"
style="width:100%"
placeholder="请选择Status"
>
<el-option
v-for="item in codes.seasta"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
</el-form-item>
</c-col> -->
<c-col :span="12">
<el-form-item label="业务状态" prop="infcon.seasta">
<c-select v-model="model.infcon.seasta" style="width:100%" placeholder="请选择Status">
<el-option
v-for="item in codes.seasta"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12"> <c-col :span="24">
<el-form-item label="币种" prop="infcon.seacur"> <el-form-item label="Party Name/BIC" prop="infcon.seapty">
<c-select v-model="model.infcon.seacur" style="width:100%" placeholder="请选择Currency"> <c-input
<el-option v-model="model.infcon.seapty"
v-for="item in codes.seacur" style="width:100%"
:key="item.value" maxlength="24"
:label="item.label" placeholder="请输入Party Name/BIC"
:value="item.value" ></c-input>
> </el-form-item>
</el-option> </c-col>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="金额" prop="infcon.seaamtfr">
<c-input
v-model="model.infcon.seaamtfr"
style="width:45%"
placeholder="请输入Amount between"
></c-input>
-
<c-input
v-model="model.infcon.seaamtto"
style="width:45%"
placeholder="请输入Amount to"
></c-input>
</el-form-item>
</c-col>
<!-- <c-col :span="12"> <c-col :span="12">
<el-form-item label="是否显示查询码" prop="infcon.cxmflg"> <el-form-item label="Opening between" >
<c-select v-model="model.infcon.cxmflg" style="width:100%" placeholder="请选择是否显示查询码"> <el-date-picker
<el-option type="date"
v-for="item in codes.cxmflg" v-model="model.infcon.opndatfrom"
:key="item.value" style="width:100%"
:label="item.label" placeholder="请选择Opening between"
:value="item.value" ></el-date-picker>
</el-form-item>
</c-col>
<c-col :span="11" :offset="1">
<el-form-item label="and" label-width="40px" >
<el-date-picker
type="date"
v-model="model.infcon.opndatto"
style="width:100%"
placeholder="请选择Open Date to"
></el-date-picker>
</el-form-item>
</c-col>
<c-col :span="15">
<el-form-item label="币种" prop="infcon.seacur">
<c-select v-model="model.infcon.seacur" style="width:100%" placeholder="请选择Currency">
<el-option
v-for="item in codes.seacur"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
</el-form-item>
</c-col>
</c-row>
</c-col>
<c-col :span="10" :offset="1">
<c-row>
<c-col :span="24">
</c-col>
<c-col :span="24">
<el-form-item label="Party Name" prop="infcon.pty.nam">
<c-input
v-model="model.infcon.pty.nam"
maxlength="40"
placeholder="请输入External Visible Name"
></c-input>
</el-form-item>
</c-col>
<c-col :span="15">
<el-form-item label="Role" prop="infcon.searol">
<c-select
v-model="model.infcon.searol"
style="width:100%"
placeholder="请选择Role"
> >
</el-option> <el-option
</c-select> v-for="item in codes.searol"
</el-form-item> :key="item.value"
</c-col> --> :label="item.label"
:value="item.value"
>
<c-col :span="12"> </el-option>
<el-form-item label="信用证类型" prop="sealcrtyp"> </c-select>
<c-select </el-form-item>
v-model="model.sealcrtyp" </c-col>
style="width:100%" <c-col :span="13">
:code="codes.lcrtyp" <el-form-item label="Resp.User" prop="infcon.usr.extkey">
placeholder="请选择Form of L/C" <c-input
></c-select> v-model="model.infcon.usr.extkey"
</el-form-item> style="width:100%"
</c-col> maxlength="8"
</el-row> placeholder="请输入User ID"
</el-form> ></c-input>
</template> </el-form-item>
</c-list-search> </c-col>
<c-col :span="10" :offset="1">
<c-col :span="24" style="padding: 20px 16px;"> <el-form-item label="Status" label-width="50px" prop="infcon.seasta">
<c-button size="small" type="primary" title="LETOPN" @click="onChoose('letopn')"> <c-select v-model="model.infcon.seasta" style="width:100%" placeholder="请选择Status">
出口信用证开立 <el-option
</c-button> v-for="item in codes.seasta"
<c-button size="small" type="primary" @click="onInfbutDsp" disabled> :key="item.value"
Display :label="item.label"
</c-button> :value="item.value"
<!-- <c-button size="small" type="primary" @click="onInfbutUserow" disabled>Use</c-button> --> >
</el-option>
<c-button size="small" type="primary" @click="onInfbutClr"> </c-select>
Clear </el-form-item>
</c-button> </c-col>
<c-col :span="13">
<c-button size="small" type="primary" @click="onInfbutButprt"> <el-form-item label="金额" prop="infcon.seaamtfr">
导Excel <c-input
</c-button> v-model="model.infcon.seaamtfr"
style="width:100%"
<!-- <c-button size="small" type="primary" @click="onInfbutSearow">Search</c-button> --> placeholder="请输入Amount between"
></c-input>
<c-button size="small" type="primary" @click="onInfbutExi"> </el-form-item>
Exit </c-col>
</c-button> <c-col :span="10" :offset="1">
</c-col> <el-form-item label="and" label-width="50px" prop="infcon.seaamtfr">
<c-input
v-model="model.infcon.seaamtfr"
style="width:100%"
placeholder="请输入Amount to"
></c-input>
</el-form-item>
</c-col>
</c-row>
</c-col>
</c-row>
<c-col :span="11" :offset="1">
<el-form-item label="Form of L/C" prop="sealcrtyp">
<c-select
v-model="model.sealcrtyp"
style="width:100%"
:code="codes.lcrtyp"
placeholder="请选择Form of L/C"
></c-select>
</el-form-item>
</c-col>
</template>
</c-infsearch-group>
<c-row style="margin-top:20px; padding: 0 10px 0 10px;">
<c-col>
<c-button size="small" type="primary" @click="onInfbutSearow">
Search
</c-button>
<c-button size="small" type="primary" @click="onInfbutDsp" disabled>
Display
</c-button>
<c-button size="small" type="primary" @click="onInfbutUserow" disabled>
Use
</c-button>
<c-button size="small" type="primary" @click="onInfbutClr">
Clear
</c-button>
<c-button size="small" type="primary" @click="onInfbutButprt">
导Excel
</c-button>
<c-button size="small" type="primary" @click="onInfbutExi">
Exit
</c-button>
</c-col>
</c-row>
<c-istream-table <c-row style="margin-top:20px; padding: 0 10px 0 10px;">
:list="this.model.infbut.dspstm" <c-istream-table :list="this.model.infbut.dspstm" :columns="columns">
:columns="columns" <el-table-column prop="op" label="OP" width="100">
style="padding: 0 16px;" <template slot-scope="scope">
> <a href="javascript:void(0)" @click="continueEdit(scope.row)">操作</a>
<el-table-column </template>
prop="display" </el-table-column>
label="操作" </c-istream-table>
width="100px" </c-row>
> </c-content>
<!-- width="100" -->
<template slot-scope="scope">
<c-button size="small" type="primary" @click="getButtons(scope.row['业务编号'])">处理</c-button>
<!--<a href="javascript:void(0)" @click="getButtons(scope.row['业务编号'])">处理</a>-->
</template>
</el-table-column>
</c-istream-table>
<!-- "'交易列表'" -->
<el-dialog :visible.sync="initdialog" :title="交易列表" append-to-body>
<div class="m-list-btns">
<m-busbtn ref="childs" :ownref="curownref" @onChoose="onChoose" >11</m-busbtn>
</div>
</el-dialog>
</div>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
...@@ -279,16 +238,35 @@ export default { ...@@ -279,16 +238,35 @@ export default {
curownref:"", curownref:"",
initdialog:false, initdialog:false,
columns:[ columns:[
"1 1 \"业务编号\" 130 200", // "1 1 \"业务编号\" 130 200",
"2 2 \"经办柜员\" 90 80", // "2 2 \"经办柜员\" 90 80",
"5 5 \"开立日期\" 120 250", // "5 5 \"开立日期\" 120 250",
"6 6 \"到期日\" 300 250", // "6 6 \"到期日\" 300 250",
"8 7 \"分行名称\" 200 300", // "8 7 \"分行名称\" 200 300",
"9 8 \"申请人编号\" 150 200", // "9 8 \"申请人编号\" 150 200",
"11 9 \"申请人名称\" 150 300", // "11 9 \"申请人名称\" 150 300",
"15 10 \"受益人名称\" 60 300", // "15 10 \"受益人名称\" 60 300",
"16 3 \"开立币种\" 90 80", // "16 3 \"开立币种\" 90 80",
"17 4 \"开立金额\" 90 80", // "17 4 \"开立金额\" 90 80",
"1 1 \"Reference\" 150",
"2 1 \"Resp. User\" 150",
"3 1 \"Tendor day\" 150",
"1 2 \"Party Number\" 150",
"2 2 \"Applicant\" 150",
"3 2 \"PTA NO.\" 150",
"1 3 \"Party Number\" 150",
"2 3 \"Beneficiary\" 150",
"3 3 \"Beneficiary CN\" 150",
"1 4 \"Party Number\" 150",
"2 4 \"Issuing Bank\" 150",
"3 4 \"分行名称\" 150",
"1 5 \"Opened\" 150",
"2 5 \"Expired\" 150",
"3 5 \"Closed\" 150",
"1 6 \"Cur\" 150",
"2 6 \"Cur\" 150",
"1 7 \"L/C Amount\" 150",
"2 7 \"Open Amount\" 150"
] ]
} }
}, },
......
<template> <template>
<div class="eibs-tab"> <c-content class="eibs-tab" :height="200">
<c-col :span="24"> <div class="infTopBtn">
<el-form-item label="Engagement Information"> <c-button size="small" type="primary">toSearch</c-button>
</el-form-item> <el-button-group>
</c-col> <c-button size="small" type="primary" icon="el-icon-arrow-left" disabled></c-button>
<!-- Stream for all engagements to selected contract --> <c-button size="small" type="primary" icon="el-icon-arrow-right" disabled></c-button>
<c-col :span="22"> </el-button-group>
<el-form-item label="" label-width="20px" prop="infcon.liastm"> <c-button size="small" type="primary">Print</c-button>
<c-input <c-button size="small" type="primary" disabled>Use</c-button>
type="textarea" <c-button size="small" type="primary" disabled>Loginfo</c-button>
:rows="20" <c-button size="small" type="primary">Exit</c-button>
v-model="model.infcon.liastm" </div>
placeholder="请输入Stream for all engagements to selected contract"
></c-input> <c-row class="infrow" style="margin-top:30px;">
</el-form-item> <c-col :span="23" :offset="1">
</c-col> Engagement Information
</div> </c-col>
</c-row>
<!-- Stream for all engagements to selected contract -->
<c-row class="infrow" style="margin-top:20px;">
<c-col :span="22" :offset="1">
<c-istream-table :list="stmData.data" :columns="stmData.columns">
<el-table-column prop="op" label="OP" width="80">
<template slot-scope="scope">
<a href="javascript:void(0)" @click="continueEdit(scope.row)">操作</a>
</template>
</el-table-column>
</c-istream-table>
</c-col>
</c-row>
</c-content>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
...@@ -29,7 +43,20 @@ export default { ...@@ -29,7 +43,20 @@ export default {
mixins: [CommonProcess], mixins: [CommonProcess],
data(){ data(){
return { return {
stmData: {
columns: [
"1 1 \"Type\" 0 ",
"1 2 \"Role\" 0 ",
"1 3 \"Maturity\" 0",
"1 4 \"Cur\" 0",
"1 5 \"Amount\" 0",
"1 6 \"Account\" 0",
"1 7 \"Counter Account\" 0",
],
data: [
]
}
} }
}, },
methods:{...Event}, methods:{...Event},
......
<template> <template>
<div class="eibs-tab"> <c-content class="eibs-tab" :height="200">
<div class="infTopBtn">
<c-button size="small" type="primary">toSearch</c-button>
<el-button-group>
<c-button size="small" type="primary" icon="el-icon-arrow-left" disabled></c-button>
<c-button size="small" type="primary" icon="el-icon-arrow-right" disabled></c-button>
</el-button-group>
<c-button size="small" type="primary">Print</c-button>
<c-button size="small" type="primary" disabled>Use</c-button>
<c-button size="small" type="primary" disabled>Loginfo</c-button>
<c-button size="small" type="primary">Exit</c-button>
</div>
<!-- Stream for Orders for Contract --> <!-- Stream for Orders for Contract -->
<c-col :span="22"> <c-row class="infrow" style="margin-top:30px;">
<el-form-item label="" label-width="20px" prop="infcon.ordstm"> <c-col :span="22" :offset="1">
<c-input <c-istream-table :list="stmData.data" :columns="stmData.columns">
type="textarea" <el-table-column prop="op" label="OP" width="80">
:rows="20" <template slot-scope="scope">
v-model="model.infcon.ordstm" <a href="javascript:void(0)" @click="continueEdit(scope.row)">操作</a>
placeholder="请输入Stream for Orders for Contract" </template>
></c-input> </el-table-column>
</el-form-item> </c-istream-table>
</c-col> </c-col>
</div> </c-row>
</c-content>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
...@@ -25,7 +39,17 @@ export default { ...@@ -25,7 +39,17 @@ export default {
mixins: [CommonProcess], mixins: [CommonProcess],
data(){ data(){
return { return {
stmData: {
columns: [
"1 1 \"Start\" 0 ",
"1 2 \"Status\" 0 ",
"1 3 \"Reference\" 0",
"1 4 \"Name\" 0",
],
data: [
]
}
} }
}, },
methods:{...Event}, methods:{...Event},
......
<template> <template>
<div class="eibs-tab"> <c-content class="eibs-tab" :height="200">
<c-row> <div class="infTopBtn">
<c-col :span=24> <c-button size="small" type="primary">toSearch</c-button>
<c-col :span=8> <el-button-group>
<el-form-item label="业务编号" prop="ledgrp.rec.ownref"> <c-button size="small" type="primary" icon="el-icon-arrow-left" disabled></c-button>
<c-button size="small" type="primary" icon="el-icon-arrow-right" disabled></c-button>
</el-button-group>
<c-button size="small" type="primary">Print</c-button>
<c-button size="small" type="primary" disabled>Use</c-button>
<c-button size="small" type="primary" disabled>Loginfo</c-button>
<c-button size="small" type="primary">Exit</c-button>
</div>
<c-row class="infrow" style="margin-top:50px;">
<c-col :span="8" :offset="1">
<el-form-item label="业务编号" label-width="120px" prop="ledgrp.rec.ownref">
<c-input <c-input
v-model="model.ledgrp.rec.ownref" v-model="model.ledgrp.rec.ownref"
style="width:95%"
maxlength="16" maxlength="16"
placeholder="请输入Reference" placeholder="请输入Reference"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="3"> <c-col :span="3">
<c-button size="small" type="primary;width:10%" @click="onSeainf"> <c-button size="small" type="primary;width:10%" @click="onSeainf">i</c-button>
i
</c-button>
<!-- <c-button size="small" type="primary" @click="onRecpanButgetref">
Get Ref
</c-button> -->
<c-button <c-button
size="small" size="small"
type="primary" type="primary"
:disabled=" :disabled="
model.ledgrp.ben.pts.adrblk && !model.ledgrp.rec.ownref ? false : true model.ledgrp.ben.pts.adrblk && !model.ledgrp.rec.ownref ? false : true
" "
@click="onLetpButgetref" @click="onLetpButgetref"
> >
获取 获取
</c-button> </c-button>
</c-col> </c-col>
<!-- <c-col :span="12">
<el-form-item label="Name" prop="ledgrp.rec.nam"> <c-col :span="10" :offset="1">
<c-input v-model="model.ledgrp.rec.nam" maxlength="40" placeholder="请输入Name"></c-input> <el-form-item label="概 要" prop="ledgrp.rec.nam">
</el-form-item>
</c-col> -->
<c-col :span="11" :offset="1">
<el-form-item label="概要" prop="ledgrp.rec.nam">
<c-input <c-input
v-model="model.ledgrp.rec.nam" v-model="model.ledgrp.rec.nam"
style="width:100%"
maxlength="40" maxlength="40"
placeholder="请输入概要" placeholder="请输入概要"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> </c-row>
<c-col :span="24"> <c-row class="infrow">
<c-col :span="11">
<c-col :span="24">
<el-form-item label="转让标志" prop="ledgrp.rec.lcrtyp">
<c-select
v-model="model.ledgrp.rec.lcrtyp"
style="width:100%"
placeholder="请选择转让标志">
</c-select>
</el-form-item>
</c-col>
<c-col :span="20">
<el-form-item label="经办柜员" prop="recpan.usr.extkey">
<c-input
v-model="model.recpan.usr.extkey"
maxlength="8"
placeholder="请输入经办柜员"
:disabled="true"
></c-input>
</el-form-item>
</c-col>
<!-- <c-col :span="4">
<c-checkbox v-model="model.ledgrp.rec.collflg">
Collateralized L/C
</c-checkbox>
</c-col> -->
<c-col :span="4" class="centerLable">
<c-checkbox :disabled="true" v-model="model.ledgrp.rec.collflg">
抵押信用证
</c-checkbox>
</c-col>
<c-col :span="12">
<el-form-item label="信用证金额" prop="ledgrp.cbs.nom1.cur">
<c-select
v-model="model.ledgrp.cbs.nom1.cur"
style="width:100%"
placeholder="请选择币种"
></c-select>
</el-form-item>
</c-col>
<c-col :span="8">
<el-form-item label="" label-width="10px" prop="ledgrp.cbs.nom1.amt">
<!-- <c-input -->
<c-input-currency
v-model="model.ledgrp.cbs.nom1.amt"
style="text-align: left; width: 100%"
placeholder="请输入信用证金额"
></c-input-currency>
</el-form-item>
</c-col>
<!-- <c-col :span="4">
<c-checkbox v-model="model.recpan.aamp.aammod.addamtflg">
Add. Amount</c-checkbox>
</c-col> -->
<c-col :span="3" :offset="1" class="centerLable">
<c-checkbox v-model="model.recpan.aamp.aammod.addamtflg">
附加金额
</c-checkbox>
</c-col>
<c-col :span="12">
<el-form-item label="金额浮动 +/-" prop="ledgrp.rec.nomtop">
<c-input
v-model="model.ledgrp.rec.nomtop"
placeholder="请输入Amount Tolerance +/-"
></c-input>
</el-form-item>
</c-col>
<c-col :span="8">
<!-- label="Amount Tolerance - Negative" -->
<el-form-item label="" label-width="10px" prop="ledgrp.rec.nomton">
<c-input
v-model="model.ledgrp.rec.nomton"
placeholder="请输入Amount Tolerance - Negative"
></c-input>
</el-form-item>
</c-col>
<c-col :span="4" class="centerLable">
<c-checkbox v-model="model.ledgrp.rec.inctrf">
<!-- Incoming Transfer -->
传入传输
</c-checkbox>
</c-col>
</c-col>
<!-- <el-form-item label="Beneficiary Ref." prop="ledgrp.ben.pts.ref">
<c-input v-model="model.ledgrp.ben.pts.ref" maxlength="16" placeholder="请输入Beneficiary Ref."></c-input>
</el-form-item> -->
<c-col :span="11" :offset="1"> <c-col :span="11" :offset="1">
<c-row>
<c-col :span="24">
<el-form-item label="转让标志" label-width="120px" prop="ledgrp.rec.lcrtyp">
<c-select
v-model="model.ledgrp.rec.lcrtyp"
style="width:95%"
placeholder="请选择转让标志">
</c-select>
</el-form-item>
</c-col>
<c-col :span="20">
<el-form-item label="经办柜员" label-width="120px" prop="recpan.usr.extkey">
<c-input
v-model="model.recpan.usr.extkey"
style="width:95%"
maxlength="8"
placeholder="请输入经办柜员"
:disabled="true"
></c-input>
</el-form-item>
</c-col>
<c-col :span="4" class="centerLable">
<c-checkbox :disabled="true" v-model="model.ledgrp.rec.collflg">
抵押信用证
</c-checkbox>
</c-col>
<c-col :span="12">
<el-form-item label="信用证金额" label-width="120px" prop="ledgrp.cbs.nom1.cur">
<c-select
v-model="model.ledgrp.cbs.nom1.cur"
style="width:100%"
placeholder="请选择币种"
></c-select>
</el-form-item>
</c-col>
<c-col :span="8">
<el-form-item label="" label-width="10px" prop="ledgrp.cbs.nom1.amt">
<!-- <c-input -->
<c-input-currency
v-model="model.ledgrp.cbs.nom1.amt"
style="text-align: left; width: 90%"
placeholder="请输入信用证金额"
></c-input-currency>
</el-form-item>
</c-col>
<c-col :span="3" :offset="1" class="centerLable">
<c-checkbox v-model="model.recpan.aamp.aammod.addamtflg">
附加金额
</c-checkbox>
</c-col>
<c-col :span="12">
<el-form-item label="金额浮动 +/-" label-width="120px" prop="ledgrp.rec.nomtop">
<c-input
v-model="model.ledgrp.rec.nomtop"
placeholder="请输入Amount Tolerance +/-"
></c-input>
</el-form-item>
</c-col>
<c-col :span="8">
<!-- label="Amount Tolerance - Negative" -->
<el-form-item label="" label-width="10px" prop="ledgrp.rec.nomton">
<c-input
v-model="model.ledgrp.rec.nomton"
style="width:90%"
placeholder="请输入Amount Tolerance - Negative"
></c-input>
</el-form-item>
</c-col>
<c-col :span="4" class="centerLable">
<c-checkbox v-model="model.ledgrp.rec.inctrf">
<!-- Incoming Transfer -->
传入传输
</c-checkbox>
</c-col>
</c-row>
</c-col>
<c-col :span="10" :offset="1">
<c-ptap <c-ptap
:model="model" :model="model"
:argadr="{ :argadr="{
...@@ -145,88 +143,84 @@ ...@@ -145,88 +143,84 @@
> >
</c-ptap> </c-ptap>
</c-col> </c-col>
</c-col> </c-row>
<c-col :span="24"> <c-row class="infrow">
<c-col :span="11"> <c-col :span="11" :offset="1">
<!-- <el-form-item label="Amount Specification" prop="ledgrp.rec.nomspc"> <c-row>
<c-select v-model="model.ledgrp.rec.nomspc" style="width:100%" placeholder="请选择Amount Specification"> <c-col :span="24">
</c-select> <el-form-item label="适用金额规范" label-width="120px" prop="ledgrp.rec.nomspc">
</el-form-item> --> <c-select
<c-col :span="24"> v-model="model.ledgrp.rec.nomspc"
<el-form-item label="适用金额规范" prop="ledgrp.rec.nomspc"> style="width:95%"
<c-select placeholder="请选择适用金额规范"
v-model="model.ledgrp.rec.nomspc" >
style="width:100%" </c-select>
placeholder="请选择适用金额规范" </el-form-item>
> </c-col>
</c-select> <c-col :span="12">
</el-form-item> <el-form-item label="最大金额" label-width="120px" prop="ledgrp.cbs.max.cur">
</c-col> <c-select
<c-col :span="12"> v-model="model.ledgrp.cbs.max.cur"
<el-form-item label="最大金额" prop="ledgrp.cbs.max.cur"> style="width:100%"
<c-select placeholder="请选择请选择币种">
v-model="model.ledgrp.cbs.max.cur" </c-select>
style="width:100%" </el-form-item>
placeholder="请选择请选择币种"> </c-col>
</c-select> <c-col :span="12">
</el-form-item> <!-- label="Maximum Amount" -->
</c-col> <el-form-item label="" label-width="10px" prop="ledgrp.cbs.max.amt">
<c-col :span="12"> <c-input
<!-- label="Maximum Amount" --> v-model="model.ledgrp.cbs.max.amt"
<el-form-item label="" label-width="20px" prop="ledgrp.cbs.max.amt"> style="width:93%"
<c-input placeholder="请输入最大金额"
v-model="model.ledgrp.cbs.max.amt" ></c-input>
placeholder="请输入最大金额" </el-form-item>
></c-input> </c-col>
</el-form-item> <c-col :span="13">
</c-col> <el-form-item label="开证日期" label-width="120px" prop="ledgrp.rec.opndat">
<c-col :span="14"> <c-date-picker
<el-form-item label="开证日期" prop="ledgrp.rec.opndat"> type="date"
<c-date-picker v-model="model.ledgrp.rec.opndat"
type="date" style="width:80%"
v-model="model.ledgrp.rec.opndat" placeholder="请选择开证日期"
style="width:100%" ></c-date-picker>
placeholder="请选择开证日期" </el-form-item>
></c-date-picker> </c-col>
</el-form-item> <c-col :span="10">
</c-col> <el-form-item label="预通知日期" label-width="80px" prop="ledgrp.rec.preadvdt">
<c-col :span="10"> <c-date-picker
<el-form-item label="预通知日期" label-width="80px" prop="ledgrp.rec.preadvdt"> type="date"
<c-date-picker v-model="model.ledgrp.rec.preadvdt"
type="date" style="width:100%"
v-model="model.ledgrp.rec.preadvdt" placeholder="请选择日期"
style="width:100%" ></c-date-picker>
placeholder="请选择日期" </el-form-item>
></c-date-picker> </c-col>
</el-form-item> <c-col :span="13">
</c-col> <el-form-item label="装运日期" label-width="120px" prop="ledgrp.rec.shpdat">
<c-col :span="14"> <c-date-picker
<el-form-item label="装运日期" prop="ledgrp.rec.shpdat"> type="date"
<c-date-picker v-model="model.ledgrp.rec.shpdat"
type="date" style="width:80%"
v-model="model.ledgrp.rec.shpdat" placeholder="请选择装运日期"
style="width:100%" ></c-date-picker>
placeholder="请选择装运日期" </el-form-item>
></c-date-picker> </c-col>
</el-form-item> <c-col :span="10">
</c-col> <el-form-item label="通知日期" label-width="80px" prop="ledgrp.rec.advdat">
<c-col :span="10"> <c-date-picker
<el-form-item label="通知日期" label-width="80px" prop="ledgrp.rec.advdat"> type="date"
<c-date-picker v-model="model.ledgrp.rec.advdat"
type="date" style="width:100%"
v-model="model.ledgrp.rec.advdat" placeholder="请选择通知日期"
style="width:100%" ></c-date-picker>
placeholder="请选择通知日期" </el-form-item>
></c-date-picker> </c-col>
</el-form-item> </c-row>
</c-col>
</c-col> </c-col>
<c-col :span="11" :offset="1"> <c-col :span="10" :offset="1">
<!-- <el-form-item label="Issuer Ref." prop="ledgrp.iss.pts.ref">
<c-input v-model="model.ledgrp.iss.pts.ref" maxlength="16" placeholder="请输入Issuer Ref."></c-input>
</el-form-item> -->
<c-ptap <c-ptap
:model="model" :model="model"
:argadr="{ :argadr="{
...@@ -240,54 +234,53 @@ ...@@ -240,54 +234,53 @@
> >
</c-ptap> </c-ptap>
</c-col> </c-col>
</c-col> </c-row>
<c-col :span="24"> <c-row class="infrow">
<c-col :span="11">
<c-col :span="14">
<el-form-item label="到期日" prop="ledgrp.rec.expdat">
<c-date-picker
type="date"
v-model="model.ledgrp.rec.expdat"
style="width:100%"
placeholder="请选择到期日"
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="10"> </c-col>
<c-col :span="24">
<el-form-item label="有效地点" prop="ledgrp.rec.expplc">
<c-input
v-model="model.ledgrp.rec.expplc"
maxlength="29"
placeholder="请输入有效地点"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="确认接收指示" prop="ledgrp.rec.cnfdet">
<c-select
v-model="model.ledgrp.rec.cnfdet"
style="width:100%"
placeholder="请选择确认接收指示"
></c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="适用规则" prop="ledgrp.rec.apprul">
<c-select
v-model="model.ledgrp.rec.apprul"
style="width:100%"
placeholder="请选择适用规则"
></c-select>
</el-form-item>
</c-col>
</c-col>
<c-col :span="11" :offset="1"> <c-col :span="11" :offset="1">
<!-- <el-form-item label="Applicant Ref." prop="ledgrp.apl.pts.ref"> <c-row>
<c-input v-model="model.ledgrp.apl.pts.ref" maxlength="16" placeholder="请输入Applicant Ref."></c-input> <c-col :span="14">
</el-form-item> --> <el-form-item label="到期日" label-width="120px" prop="ledgrp.rec.expdat">
<c-date-picker
type="date"
v-model="model.ledgrp.rec.expdat"
style="width:100%"
placeholder="请选择到期日"
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="10"> </c-col>
<c-col :span="24">
<el-form-item label="有效地点" label-width="120px" prop="ledgrp.rec.expplc">
<c-input
v-model="model.ledgrp.rec.expplc"
style="width:95%"
maxlength="29"
placeholder="请输入有效地点"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="确认接收指示" label-width="120px" prop="ledgrp.rec.cnfdet">
<c-select
v-model="model.ledgrp.rec.cnfdet"
style="width:95%"
placeholder="请选择确认接收指示"
></c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="适用规则" label-width="120px" prop="ledgrp.rec.apprul">
<c-select
v-model="model.ledgrp.rec.apprul"
style="width:95%"
placeholder="请选择适用规则"
></c-select>
</el-form-item>
</c-col>
</c-row>
</c-col>
<c-col :span="10" :offset="1">
<c-ptap <c-ptap
:model="model" :model="model"
:argadr="{ :argadr="{
...@@ -301,47 +294,44 @@ ...@@ -301,47 +294,44 @@
> >
</c-ptap> </c-ptap>
</c-col> </c-col>
</c-col> </c-row>
<c-col :span="24"> <c-row class="infrow">
<c-col :span="11"> <c-col :span="11" :offset="1">
<c-col :span="24"> <c-row>
<el-form-item label="其他规则" prop="ledgrp.rec.apprultxt"> <c-col :span="24">
<c-input <el-form-item label="其他规则" label-width="120px" prop="ledgrp.rec.apprultxt">
v-model="model.ledgrp.rec.apprultxt" <c-input
maxlength="35" v-model="model.ledgrp.rec.apprultxt"
placeholder="请输入其他规则" style="width:95%"
></c-input> maxlength="35"
</el-form-item> placeholder="请输入其他规则"
</c-col> ></c-input>
<c-col :span="24"> </el-form-item>
<el-form-item label="分批装运" prop="ledgrp.rec.shppars18"> </c-col>
<c-select <c-col :span="24">
v-model="model.ledgrp.rec.shppars18" <el-form-item label="分批装运" label-width="120px" prop="ledgrp.rec.shppars18">
style="width:100%" <c-select
placeholder="请选择分批装运"> v-model="model.ledgrp.rec.shppars18"
</c-select> style="width:95%"
</el-form-item> placeholder="请选择分批装运">
<!-- <el-form-item label="Partial Shipment" prop="ledgrp.rec.shppar"> </c-select>
<c-select v-model="model.ledgrp.rec.shppar" style="width:100%" placeholder="请选择Partial Shipment"> </el-form-item>
</c-select> </c-col>
</el-form-item> --> <c-col :span="24">
</c-col> <el-form-item label="转运" label-width="120px" prop="ledgrp.rec.shptrss18">
<c-col :span="24"> <c-select
<el-form-item label="转运" prop="ledgrp.rec.shptrss18"> v-model="model.ledgrp.rec.shptrss18"
<c-select style="width:95%"
v-model="model.ledgrp.rec.shptrss18" placeholder="请选择转运"
style="width:100%" ></c-select>
placeholder="请选择转运" </el-form-item>
></c-select> </c-col>
</el-form-item> </c-row>
</c-col>
</c-col> </c-col>
<c-col :span="11" :offset="1"> <c-col :span="11" :offset="1">
<c-col :span="24" class="centerLable marginLable"> <c-col :span="24" class="centerLable marginLable">
<c-checkbox v-model="model.ledgrp.rec.revflg" <c-checkbox v-model="model.ledgrp.rec.revflg">Revolving Flag</c-checkbox>
>Revolving Flag</c-checkbox>
</c-col> </c-col>
<c-col :span="24" class="centerLable marginLable"> <c-col :span="24" class="centerLable marginLable">
<!-- Authorization to Debit --> <!-- Authorization to Debit -->
...@@ -356,8 +346,10 @@ ...@@ -356,8 +346,10 @@
<c-checkbox v-model="model.ledgrp.rec.teskeyunc">测试密钥</c-checkbox> <c-checkbox v-model="model.ledgrp.rec.teskeyunc">测试密钥</c-checkbox>
</c-col> </c-col>
</c-col> </c-col>
</c-col> </c-row>
</c-row> </c-content>
</template>
</
<!-- <c-col :span="12"> <!-- <c-col :span="12">
<el-form-item label="Drag Drop Sender" prop="recpan.recget.sdamod.dadsnd"> <el-form-item label="Drag Drop Sender" prop="recpan.recget.sdamod.dadsnd">
<c-input v-model="model.recpan.recget.sdamod.dadsnd" placeholder="请输入Drag Drop Sender"></c-input> <c-input v-model="model.recpan.recget.sdamod.dadsnd" placeholder="请输入Drag Drop Sender"></c-input>
...@@ -545,8 +537,7 @@ ...@@ -545,8 +537,7 @@
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> --> </c-col> -->
</div>
</template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
import CommonProcess from "~/mixin/CommonProcess"; import CommonProcess from "~/mixin/CommonProcess";
......
<template> <template>
<div class="eibs-tab"> <c-content class="eibs-tab" :height="200">
<c-row> <div class="infTopBtn">
<c-col :span="24"> <c-button size="small" type="primary">toSearch</c-button>
<el-form-item label="Pending Items"> <el-button-group>
</el-form-item> <c-button size="small" type="primary" icon="el-icon-arrow-left" disabled></c-button>
</c-col> <c-button size="small" type="primary" icon="el-icon-arrow-right" disabled></c-button>
<c-col :span="24"> </el-button-group>
<c-button size="small" type="primary">Print</c-button>
<c-button size="small" type="primary" disabled>Use</c-button>
<c-button size="small" type="primary" disabled>Loginfo</c-button>
<c-button size="small" type="primary">Exit</c-button>
</div>
<c-row class="infrow" style="margin-top:50px;">
<c-col :span="23" :offset="1">
Pending Items
</c-col>
</c-row>
<br>
<c-row class="infrow">
<c-col :span="4" :offset="1">
<el-form-item label="" prop="infcon.sptinc" label-width="0">
<c-checkbox v-model="model.infcon.sptinc">Incoming</c-checkbox>
</el-form-item>
</c-col>
<c-col :span="4"> <c-col :span="4">
<c-checkbox v-model="model.infcon.sptinc">Incoming</c-checkbox> <el-form-item label="" prop="infcon.sptreg" label-width="0">
</c-col> <c-checkbox v-model="model.infcon.sptreg">Registered</c-checkbox>
<c-col :span="4" :offset="0.5"> </el-form-item>
<c-checkbox v-model="model.infcon.sptreg">Registered</c-checkbox>
</c-col>
<c-col :span="4" :offset="0.5">
<c-checkbox v-model="model.infcon.sptpen">Pending</c-checkbox>
</c-col>
<c-col :span="4" :offset="0.5">
<c-checkbox v-model="model.infcon.sptcor">Correction</c-checkbox>
</c-col>
<c-col :span="6" :offset="0.5">
<c-checkbox v-model="model.infcon.sptdel">Deleted/Rejected</c-checkbox>
</c-col> </c-col>
</c-col> <c-col :span="4">
<!-- stream for SPT to selected contract --> <el-form-item label="" prop="infcon.sptpen" label-width="0">
<c-col :span="22"> <c-checkbox v-model="model.infcon.sptpen">Pending</c-checkbox>
<el-form-item label="" label-width="20px" prop="infcon.sptstm">
<c-input
type="textarea"
:rows="10"
v-model="model.infcon.sptstm"
placeholder="请输入stream for SPT to selected contract"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="Diaries">
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="7">
<el-form-item label="Date from" label-width="100px" prop="infcon.diadatfrom">
<c-date-picker
type="date"
v-model="model.infcon.diadatfrom"
style="width:100%"
placeholder="请选择Date from"
></c-date-picker>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="4">
<c-col :span="4" :offset="0.5"> <el-form-item label="" prop="infcon.sptcor" label-width="0">
<el-form-item label="to" label-width="20px" prop="infcon.diadatto"> <c-checkbox v-model="model.infcon.sptcor">Correction</c-checkbox>
<c-date-picker
type="date"
v-model="model.infcon.diadatto"
style="width:100%"
placeholder="请选择date till"
></c-date-picker>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="6" :offset="4"> <c-col :span="4">
<el-form-item label="Status" label-width="50px" prop="infcon.diasta"> <el-form-item label="" prop="infcon.sptdel" label-width="0">
<c-select v-model="model.infcon.diasta" style="width:100%" placeholder="请选择Status"> <c-checkbox v-model="model.infcon.sptdel">Deleted</c-checkbox>
</c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> </c-row>
<!-- stream for SPT to selected contract -->
<c-row class="infrow" style="margin-top:20px;">
<c-col :span="22" :offset="1">
<c-istream-table :list="stmData.sptstmData" :columns="stmData.sptstmColumns">
<el-table-column prop="op" label="OP" width="100">
<template slot-scope="scope">
<a href="javascript:void(0)" @click="continueEdit(scope.row)">操作</a>
</template>
</el-table-column>
</c-istream-table>
</c-col>
</c-row>
<br />
<c-row class="infrow" style="margin-top:20px;">
<c-col :span="23" :offset="1">
Diaries
</c-col>
</c-row>
<br />
<!-- stream for diaries to selected contract --> <c-row class="infrow">
<c-col :span="22"> <c-col :span="11" :offset="1">
<el-form-item label="" label-width="20px" prop="infcon.diastm"> <c-row>
<c-input <c-col :span="12">
type="textarea" <el-form-item label="Date from" label-width="100px" prop="infcon.diadatfrom">
:rows="10" <c-date-picker type="date" v-model="model.infcon.diadatfrom" style="width:100%"
v-model="model.infcon.diastm" placeholder="请选择Date from"></c-date-picker>
placeholder="请输入stream for diaries to selected contract" </el-form-item>
></c-input> </c-col>
</el-form-item> <c-col :span="8" :offset="1">
</c-col> <el-form-item label="to" prop="infcon.diadatto" label-width="20px">
</c-row> <c-date-picker type="date" v-model="model.infcon.diadatto" style="width:100%"
placeholder="请选择date till"></c-date-picker>
</el-form-item>
</c-col>
</c-row>
</c-col>
<c-col :span="10" :offset="1">
<c-row>
<c-col :span="12">
<el-form-item label="Status" label-width="100px" prop="infcon.diasta">
</div> <c-select v-model="model.infcon.diasta" style="width:100%" placeholder="请选择Status">
</c-select>
</el-form-item>
</c-col>
</c-row>
</c-col>
</c-row>
<c-row class="infrow" style="margin-top:20px;">
<c-col :span="22" :offset="1">
<c-istream-table :list="stmData.diastmData" :columns="stmData.diastmColumns">
<el-table-column prop="op" label="OP" width="100">
<template slot-scope="scope">
<a href="javascript:void(0)" @click="continueEdit(scope.row)">操作</a>
</template>
</el-table-column>
</c-istream-table>
</c-col>
</c-row>
</c-content>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
...@@ -102,8 +121,34 @@ export default { ...@@ -102,8 +121,34 @@ export default {
props:["model","codes"], props:["model","codes"],
mixins: [CommonProcess], mixins: [CommonProcess],
data(){ data(){
return { return {
stmData: {
sptstmColumns: [
"1 1 \"TRN\" 0 ",
"1 2 \"Reference\" 0 ",
"1 3 \"Name\" 0 ",
"1 4 \"Creation\" 0",
"1 5 \"Status\" 0",
"1 6 \"by\" 0",
"1 7 \"Info\" 0",
"1 8 \"Infotext\" 0",
],
sptstmData: [
],
diastmColumns: [
"1 1 \"Date\" 0 ",
"1 2 \"Reason\" 0 ",
"1 3 \"Description\" 0 ",
"1 4 \"Transaction\" 0",
"1 5 \"User\" 0",
"1 6 \"Group\" 0",
"1 7 \"Status\" 0",
],
diastmData: [
],
}
} }
}, },
methods:{...Event}, methods:{...Event},
......
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<c-col :span="24"> <c-col :span="22" :offset="1">
<el-form-item label="Printf of info Export L/C"> <el-form-item label="Printf of info Export L/C">
</el-form-item> </el-form-item>
</c-col> </c-col>
<!-- XMLPanel prtpan的内置block --> <!-- XMLPanel prtpan的内置block -->
<c-col :span="22"> <c-col :span="22" :offset="1">
<el-form-item label="" label-width="20px" prop="prtpanblk"> <el-form-item label="" label-width="20px" prop="prtpanblk">
<c-input <c-input
type="textarea" type="textarea"
:rows="20" :rows="20"
v-model="model.prtpanblk" v-model="model.prtpanblk"
maxlength="200" maxlength="200"
show-word-limit show-word-limit
placeholder="请输入XMLPanel prtpan的内置block" placeholder="请输入XMLPanel prtpan的内置block"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
</div> </div>
</template> </template>
......
<template> <template>
<div class="eibs-tab"> <c-content class="eibs-tab" :height="200">
<c-row> <div class="infTopBtn">
<c-col :span="11"> <c-button size="small" type="primary">toSearch</c-button>
<!-- <c-col :span="12"> <el-button-group>
<el-form-item label="1st Advising Bank" prop="ledgrp.adv.pts.ref"> <c-button size="small" type="primary" icon="el-icon-arrow-left" disabled></c-button>
<c-input v-model="model.ledgrp.adv.pts.ref" maxlength="16" placeholder="请输入1st Advising Bank"></c-input> <c-button size="small" type="primary" icon="el-icon-arrow-right" disabled></c-button>
</el-form-item> </el-button-group>
</c-col> --> <c-button size="small" type="primary">Print</c-button>
<c-col :span="24"> <c-button size="small" type="primary" disabled>Use</c-button>
<c-ptap <c-button size="small" type="primary" disabled>Loginfo</c-button>
:model="model" <c-button size="small" type="primary">Exit</c-button>
:argadr="{ </div>
title: '第一通知行',
grp: 'ledgrp',
rol: 'adv',
}"
@onSeainf="onSeainf"
@onAplpDet="onAdvpDet"
>
</c-ptap>
</c-col>
<!-- <c-col :span="12">
<el-form-item label="Applicant's Bank" prop="ledgrp.apb.pts.ref">
<c-input v-model="model.ledgrp.apb.pts.ref" maxlength="16" placeholder="请输入Applicant's Bank"></c-input>
</el-form-item>
</c-col> -->
<c-col :span="24">
<c-ptap
:model="model"
:argadr="{
title: '申请人银行',
grp: 'ledgrp',
rol: 'a2b',
}"
@onSeainf="onSeainf"
@onAplpDet="onA2bpDet"
>
</c-ptap>
</c-col>
<!-- Confirm. Instruct -->
<c-col :span="24">
<el-form-item label="第二通知行确认指令" prop="ledgrp.rec.cnfins">
<c-select
v-model="model.ledgrp.rec.cnfins"
style="width:100%"
placeholder="第二通知行确认指令"
>
</c-select>
</el-form-item>
</c-col>
</c-col>
<c-col :span="11" :offset="1"> <c-row class="infrow" style="margin-top:50px;">
<c-col :span="24"> <c-col :span="11" :offset="1">
<c-ptap <c-row>
:model="model" <!-- 1st Advising Bank Ref. -->
:argadr="{ <c-col :span="24">
title: '申请人银行', <c-ptap
grp: 'ledgrp', :model="model"
rol: 'apb', :argadr="{
}" title: '第一通知行',
@onSeainf="onSeainf" grp: 'ledgrp',
@onAplpDet="onApbpDet" rol: 'adv',
> }"
</c-ptap> @onSeainf="onSeainf"
@onAplpDet="onAdvpDet"
>
</c-ptap>
</c-col>
<c-col :span="24">
<c-ptap
:model="model"
:argadr="{
title: '第二通知行',
grp: 'ledgrp',
rol: 'a2b',
}"
@onSeainf="onSeainf"
@onAplpDet="onA2bpDet"
>
</c-ptap>
</c-col>
<!-- Confirm. Instruct -->
<c-col :span="24">
<el-form-item label="第二通知行确认指令" prop="ledgrp.rec.cnfins">
<c-select
v-model="model.ledgrp.rec.cnfins"
style="width:100%"
placeholder="第二通知行确认指令"
>
</c-select>
</el-form-item>
</c-col>
</c-row>
</c-col> </c-col>
<c-col :span="24"> <c-col :span="10" :offset="1">
<c-ptap <c-row>
:model="model" <!-- Applicant's Bank Ref.-->
:argadr="{ <c-col :span="24">
title: '偿付银行', <c-ptap
grp: 'ledgrp', :model="model"
rol: 'rmb', :argadr="{
}" title: '申请人银行',
@onSeainf="onSeainf" grp: 'ledgrp',
@onAplpDet="onRmbpDet" rol: 'apb',
> }"
</c-ptap> @onSeainf="onSeainf"
</c-col> @onAplpDet="onApbpDet"
<c-col :span="24"> >
<c-ptap </c-ptap>
:model="model" </c-col>
:argadr="{
title: '第二通知行', <!-- Send Directly -->
grp: 'ledgrp', <c-col :span="12">
rol: 'con', <c-checkbox v-model="model.ledgrp.rec.aplbnkdirsnd">Send Directly to Applicant's Bank</c-checkbox>
}" </c-col>
:onlySearch="true" <!-- Reimbursement Bank 偿付行-->
@onSeainf="onSeainf" <c-col :span="24">
@onAplpDet="onRmbpDet" <c-ptap
> :model="model"
</c-ptap> :argadr="{
</c-col> title: '偿付银行',
<!-- Name of Party --> grp: 'ledgrp',
<c-col :span="24"> rol: 'rmb',
<el-form-item label="第二通知行名称" prop="ledgrp.con.pts.nam"> }"
<c-input @onSeainf="onSeainf"
v-model="model.ledgrp.con.pts.nam" @onAplpDet="onRmbpDet"
maxlength="40" >
placeholder="请输入第二通知行名称" </c-ptap>
></c-input> </c-col>
</el-form-item> <!-- Confirmation Bank 保兑行 -->
<c-col :span="24">
<c-ptap
:model="model"
:argadr="{
title: '保兑行',
grp: 'ledgrp',
rol: 'con',
}"
@onSeainf="onSeainf"
@onAplpDet="onConpDet"
>
</c-ptap>
</c-col>
</c-row>
</c-col> </c-col>
</c-col> </c-row>
<c-edit-table :model="model" v-bind="ptsaddg"> <c-edit-table :model="model" v-bind="ptsaddg">
<el-table-column label="操作" align="center"> <el-table-column label="操作" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
...@@ -115,251 +120,8 @@ ...@@ -115,251 +120,8 @@
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
</c-edit-table> </c-edit-table>
</c-row> </c-content>
<!--
<c-col :span="12">
<el-form-item label="Drag Drop Sender" prop="recpan.advp.ptsget.sdamod.dadsnd">
<c-input v-model="model.recpan.advp.ptsget.sdamod.dadsnd" placeholder="请输入Drag Drop Sender"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Drag Drop Sender" prop="recpan.apbp.ptsget.sdamod.dadsnd">
<c-input v-model="model.recpan.apbp.ptsget.sdamod.dadsnd" placeholder="请输入Drag Drop Sender"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="External Key of Address" prop="ledgrp.adv.pts.extkey">
<c-input v-model="model.ledgrp.adv.pts.extkey" maxlength="16" placeholder="请输入External Key of Address"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="" prop="recpan.advp.ptsget.sdamod.seainf">
<c-input v-model="model.recpan.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="External Key of Address" prop="ledgrp.apb.pts.extkey">
<c-input v-model="model.ledgrp.apb.pts.extkey" maxlength="16" placeholder="请输入External Key of Address"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="" prop="recpan.apbp.ptsget.sdamod.seainf">
<c-input v-model="model.recpan.apbp.ptsget.sdamod.seainf" placeholder="请输入"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onApbpDet">
Details
</c-button>
</c-col>
<c-col :span="12">
<el-form-item label="名称" prop="ledgrp.adv.namelc">
<c-input type="textarea" v-model="model.ledgrp.adv.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="名称" prop="ledgrp.apb.namelc">
<c-input type="textarea" v-model="model.ledgrp.apb.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.ledgrp.rec.aplbnkdirsnd">Send Directly to Applicant's Bank</c-checkbox>
</c-col>
<c-col :span="12">
<el-form-item label="Address Block" prop="ledgrp.adv.pts.adrblk">
<c-input type="textarea" v-model="model.ledgrp.adv.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Chinese address" prop="ledgrp.adv.dbfadrblkcn">
<c-input type="textarea" v-model="model.ledgrp.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="Address Block" prop="ledgrp.apb.pts.adrblk">
<c-input type="textarea" v-model="model.ledgrp.apb.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Chinese address" prop="ledgrp.apb.dbfadrblkcn">
<c-input type="textarea" v-model="model.ledgrp.apb.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="ledgrp.adv.adrelc">
<c-input type="textarea" v-model="model.ledgrp.adv.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="地址" prop="ledgrp.apb.adrelc">
<c-input type="textarea" v-model="model.ledgrp.apb.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="2nd Advising Bank" prop="ledgrp.a2b.pts.ref">
<c-input v-model="model.ledgrp.a2b.pts.ref" maxlength="16" placeholder="请输入2nd Advising Bank"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Reimbursement Bank" prop="ledgrp.rmb.pts.ref">
<c-input v-model="model.ledgrp.rmb.pts.ref" maxlength="16" placeholder="请输入Reimbursement Bank"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Drag Drop Sender" prop="recpan.a2bp.ptsget.sdamod.dadsnd">
<c-input v-model="model.recpan.a2bp.ptsget.sdamod.dadsnd" placeholder="请输入Drag Drop Sender"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Drag Drop Sender" prop="recpan.rmbp.ptsget.sdamod.dadsnd">
<c-input v-model="model.recpan.rmbp.ptsget.sdamod.dadsnd" placeholder="请输入Drag Drop Sender"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="External Key of Address" prop="ledgrp.a2b.pts.extkey">
<c-input v-model="model.ledgrp.a2b.pts.extkey" maxlength="16" placeholder="请输入External Key of Address"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="" prop="recpan.a2bp.ptsget.sdamod.seainf">
<c-input v-model="model.recpan.a2bp.ptsget.sdamod.seainf" placeholder="请输入"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onA2bpDet">
Details
</c-button>
</c-col>
<c-col :span="12">
<el-form-item label="External Key of Address" prop="ledgrp.rmb.pts.extkey">
<c-input v-model="model.ledgrp.rmb.pts.extkey" maxlength="16" placeholder="请输入External Key of Address"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="" prop="recpan.rmbp.ptsget.sdamod.seainf">
<c-input v-model="model.recpan.rmbp.ptsget.sdamod.seainf" placeholder="请输入"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onRmbpDet">
Details
</c-button>
</c-col>
<c-col :span="12">
<el-form-item label="名称" prop="ledgrp.a2b.namelc">
<c-input type="textarea" v-model="model.ledgrp.a2b.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="名称" prop="ledgrp.rmb.namelc">
<c-input type="textarea" v-model="model.ledgrp.rmb.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Address Block" prop="ledgrp.a2b.pts.adrblk">
<c-input type="textarea" v-model="model.ledgrp.a2b.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Chinese address" prop="ledgrp.a2b.dbfadrblkcn">
<c-input type="textarea" v-model="model.ledgrp.a2b.dbfadrblkcn" maxlength="35" show-word-limit placeholder="请输入Chinese address" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Address Block" prop="ledgrp.rmb.pts.adrblk">
<c-input type="textarea" v-model="model.ledgrp.rmb.pts.adrblk" maxlength="35" show-word-limit placeholder="请输入Address Block" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Chinese address" prop="ledgrp.rmb.dbfadrblkcn">
<c-input type="textarea" v-model="model.ledgrp.rmb.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="ledgrp.a2b.adrelc">
<c-input type="textarea" v-model="model.ledgrp.a2b.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="地址" prop="ledgrp.rmb.adrelc">
<c-input type="textarea" v-model="model.ledgrp.rmb.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Confirmation Bank" prop="ledgrp.con.pts.ref">
<c-input v-model="model.ledgrp.con.pts.ref" maxlength="16" placeholder="请输入Confirmation Bank"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="Drag Drop Sender" prop="recpan.conp.ptsget.sdamod.dadsnd">
<c-input v-model="model.recpan.conp.ptsget.sdamod.dadsnd" placeholder="请输入Drag Drop Sender"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="External Key of Address" prop="ledgrp.con.pts.extkey">
<c-input v-model="model.ledgrp.con.pts.extkey" maxlength="16" placeholder="请输入External Key of Address"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="" prop="recpan.conp.ptsget.sdamod.seainf">
<c-input v-model="model.recpan.conp.ptsget.sdamod.seainf" placeholder="请输入"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onConpDet">
Details
</c-button>
</c-col>
-->
</div>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
......
<template> <template>
<div class="eibs-tab"> <c-content class="eibs-tab" :height="200">
<c-row> <div class="infTopBtn">
<c-col :span="24"> <c-button size="small" type="primary">toSearch</c-button>
<el-form-item label="Temporary Settlement"> <el-button-group>
</el-form-item> <c-button size="small" type="primary" icon="el-icon-arrow-left" disabled></c-button>
<c-button size="small" type="primary" icon="el-icon-arrow-right" disabled></c-button>
</el-button-group>
<c-button size="small" type="primary">Print</c-button>
<c-button size="small" type="primary" disabled>Use</c-button>
<c-button size="small" type="primary" disabled>Loginfo</c-button>
<c-button size="small" type="primary">Exit</c-button>
</div>
<c-row class="infrow" style="margin-top:30px;">
<c-col :span="23" :offset="1">
Temporary Settlement
</c-col> </c-col>
<c-col :span="12"> </c-row>
<c-checkbox v-model="model.infcon.setflg">
show temporary settlement that already settled <c-row class="infrow">
</c-checkbox> <c-col :span="11" :offset="1">
<el-form-item label="" prop="infcon.setflg" label-width="0">
<c-checkbox v-model="model.infcon.setflg">
show temporary settlement that already settled
</c-checkbox>
</el-form-item>
</c-col> </c-col>
<c-col :span="12"> <c-col :span="10" :offset="1">
<c-checkbox v-model="model.infcon.sepdelflg"> <el-form-item label="" prop="infcon.sepdelflg" label-width="0">
show temporary settlement that already deleted <c-checkbox v-model="model.infcon.sepdelflg">
</c-checkbox> show temporary settlement that already deleted
</c-checkbox>
</el-form-item>
</c-col> </c-col>
</c-row> </c-row>
<!-- stream of SEPs --> <!-- stream of SEPs -->
<c-col :span="24"></c-col> <c-row class="infrow" style="margin-top:20px;">
<c-col :span="22"> <c-col :span="22" :offset="1">
<el-form-item label="" label-width="20px" prop="infcon.sepstm"> <c-istream-table :list="stmData.data" :columns="stmData.columns">
<c-input <el-table-column prop="op" label="OP" width="100">
type="textarea" <template slot-scope="scope">
:rows="20" <a href="javascript:void(0)" @click="continueEdit(scope.row)">操作</a>
v-model="model.infcon.sepstm" </template>
placeholder="请输入stream of SEPs" </el-table-column>
></c-input> </c-istream-table>
</el-form-item> </c-col>
</c-col> </c-row>
</div> </c-content>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
...@@ -42,7 +60,21 @@ export default { ...@@ -42,7 +60,21 @@ export default {
mixins: [CommonProcess], mixins: [CommonProcess],
data(){ data(){
return { return {
stmData: {
columns: [
"1 1 \"Cre.Date\" 0 ",
"1 2 \"Reference\" 0 ",
"1 3 \"Cur\" 0 ",
"1 4 \"Amount\" 115",
"1 5 \"Cre.TRNINR\" 115",
"1 6 \"Cre.TRN\" 115",
"1 7 \"Settl.TRNINR\" 115",
"1 8 \"Settl.Date\" 115",
],
data: [
]
}
} }
}, },
methods:{...Event}, methods:{...Event},
......
<template> <template>
<div class="eibs-tab"> <c-content class="eibs-tab" :height="200">
<c-row> <div class="infTopBtn">
<c-col :span="24"> <c-button size="small" type="primary">toSearch</c-button>
<c-col :span="12"> <el-button-group>
<c-col :span="24"> <c-button size="small" type="primary" icon="el-icon-arrow-left" disabled></c-button>
<el-form-item label="Type of Document" prop="infcon.smhcortyp"> <c-button size="small" type="primary" icon="el-icon-arrow-right" disabled></c-button>
<c-select </el-button-group>
v-model="model.infcon.smhcortyp" <c-button size="small" type="primary">Print</c-button>
style="width:100%" <c-button size="small" type="primary" disabled>Use</c-button>
placeholder="请选择Type of Document" <c-button size="small" type="primary" disabled>Loginfo</c-button>
> <c-button size="small" type="primary">Exit</c-button>
</c-select> </div>
</el-form-item>
</c-col> <c-row class="infrow" style="margin-top:30px;">
<c-col :span="11" :offset="1">
<c-row>
<c-col :span="18">
<el-form-item label="Type of Document" label-width="130px" prop="infcon.smhcortyp">
<c-select v-model="model.infcon.smhcortyp"
style="width:100%"
placeholder="请选择Type of Document"
:code="codes.cortyp"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="5" :offset="1">
<el-form-item label="" prop="infcon.chktrn" label-width="0">
<c-checkbox v-model="model.infcon.chktrn">
Active only
</c-checkbox>
</el-form-item>
</c-col>
</c-row>
</c-col> </c-col>
<c-col :span="8" :offset="3"> <c-col :span="10" :offset="1">
<c-col :span="24"> <c-row>
<c-checkbox v-model="model.infcon.chktrn"> <c-col :span="20">
Active only <el-form-item label="Direction" label-width="130px" prop="infcon.smhdir">
</c-checkbox> <c-select
</c-col> v-model="model.infcon.smhdir"
style="width:100%"
placeholder="请选择Direction"
>
</c-select>
</el-form-item>
</c-col>
</c-row>
</c-col> </c-col>
<c-col :span="24"> </c-row>
<c-col :span="7">
<el-form-item label="Created between " prop="infcon.smhdatfrom"> <c-row class="infrow">
<c-date-picker type="date" v-model="model.infcon.smhdatfrom" style="width:100%" placeholder="请选择Created between "></c-date-picker> <c-col :span="11" :offset="1">
</el-form-item> <c-row>
<c-col :span="12">
<el-form-item label="Created between " label-width="130px" prop="infcon.smhdatfrom">
<c-date-picker type="date"
v-model="model.infcon.smhdatfrom"
style="width:100%"
placeholder="请选择Created between "
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="10" :offset="1">
<el-form-item label="and" prop="infcon.smhdatto" label-width="40px">
<c-date-picker
type="date"
v-model="model.infcon.smhdatto"
style="width:100%"
placeholder="请选择created till"
></c-date-picker>
</el-form-item>
</c-col>
</c-row>
</c-col> </c-col>
<c-col :span="11" :offset="1">
<c-col :span="4" :offset="1">
<el-form-item label="and" label-width="30px" prop="infcon.smhdatto">
<c-date-picker
type="date"
v-model="model.infcon.smhdatto"
style="width:100%"
placeholder="请选择created till"
></c-date-picker>
</el-form-item>
</c-col> </c-col>
</c-col> </c-row>
<c-col :span="12"> <c-row class="infrow" style="margin-top:20px;">
<el-form-item label="Direction" prop="infcon.smhdir"> <c-col :span="22" :offset="1">
<c-select <c-istream-table :list="stmData.data" :columns="stmData.columns">
v-model="model.infcon.smhdir" <el-table-column prop="op" label="OP" width="80">
style="width:100%" <template slot-scope="scope">
placeholder="请选择Direction" <a href="javascript:void(0)" @click="continueEdit(scope.row)">操作</a>
></c-select> </template>
</el-form-item> </el-table-column>
</c-col> </c-istream-table>
</c-col> </c-col>
<c-col :span="22"> </c-row>
<el-form-item label="" label-width="20px" prop="infcon.smhstm"> </c-content>
<c-input
type="textarea"
:rows="20"
v-model="model.infcon.smhstm"
placeholder="请输入stream of documents to selected contract"
></c-input>
</el-form-item>
</c-col>
</c-row>
</div>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
...@@ -75,7 +104,18 @@ export default { ...@@ -75,7 +104,18 @@ export default {
mixins: [CommonProcess], mixins: [CommonProcess],
data(){ data(){
return { return {
stmData: {
columns: [
"1 1 \"Type\" 0 ",
"1 2 \"Document\" 0 ",
"1 3 \"Created\" 0 ",
"1 4 \"Direction\" 0 ",
"1 5 \"SMHINR\" 0 ",
],
data: [
]
}
} }
}, },
methods:{...Event}, methods:{...Event},
......
<template> <template>
<div class="eibs-tab"> <c-content class="eibs-tab" :height="200">
<c-col :span="10"> <div class="infTopBtn">
<c-checkbox v-model="model.infcon.chksubcon">incl. all subcontracts</c-checkbox> <c-button size="small" type="primary">toSearch</c-button>
</c-col> <el-button-group>
<c-button size="small" type="primary" icon="el-icon-arrow-left" disabled></c-button>
<c-col :span="14"> <c-button size="small" type="primary" icon="el-icon-arrow-right" disabled></c-button>
<c-checkbox v-model="model.infcon.chktrnsta">only active transactions</c-checkbox> </el-button-group>
</c-col> <c-button size="small" type="primary">Print</c-button>
<c-button size="small" type="primary" disabled>Use</c-button>
<c-col :span="22"> <c-button size="small" type="primary" disabled>Loginfo</c-button>
<el-form-item label="stream for TRN to selected contract" prop="infcon.trnstm"> <c-button size="small" type="primary">Exit</c-button>
<c-input </div>
type="textarea"
:rows="12" <c-row class="infrow" style="margin-top:50px;">
v-model="model.infcon.trnstm" <c-col :span="8" :offset="1">
placeholder="请输入stream for TRN to selected contract" <c-checkbox v-model="model.infcon.chksubcon">
></c-input> incl. all subcontracts
</el-form-item> </c-checkbox>
</c-col> </c-col>
<!-- <c-col :span="12"> <c-col :span="14">
<c-button size="small" type="primary" @click="onInfconButshw"> <c-checkbox v-model="model.infcon.chktrnsta">
&Display only active transactions
</c-button> </c-checkbox>
</c-col> --> </c-col>
</div>
<!-- stream for TRN to selected contract -->
<c-col :span="22" :offset="1">
<el-form-item label-width="10px" prop="infcon.trnstm">
<c-input
type="textarea"
:rows="12"
v-model="model.infcon.trnstm"
placeholder="请输入stream for TRN to selected contract"
></c-input>
</el-form-item>
</c-col>
</c-row>
</c-content>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api"
......
<template> <template>
<c-page title="出口信用证查询"> <c-page title="出口信用证查询">
<div class="eContainer"> <div class="eContainer">
<c-bus-button :$pntvm="this"></c-bus-button> <!-- <c-bus-button :$pntvm="this"></c-bus-button> -->
<el-form <el-form
:model="model" :model="model"
:rules="rules" :rules="rules"
...@@ -14,10 +14,10 @@ ...@@ -14,10 +14,10 @@
<c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="tabClick"> <c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="tabClick">
<!--PD000006 Selection --> <!--PD000006 Selection -->
<el-tab-pane label="出口信用证查询" name="infsea"> <el-tab-pane label="查询信息" name="infsea">
<!-- <c-content> --> <c-content>
<m-infsea :model="model" :codes="codes"/> <m-infsea :model="model" :codes="codes"/>
<!-- </c-content> --> </c-content>
</el-tab-pane> </el-tab-pane>
<!--PD000017 Overview --> <!--PD000017 Overview -->
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
</el-tab-pane> </el-tab-pane>
<!--PD000055 Goods --> <!--PD000055 Goods -->
<el-tab-pane label="货物说明" name="dogp"> <el-tab-pane label="货物描述" name="dogp">
<c-content> <c-content>
<m-dogp :model="model" :codes="codes"/> <m-dogp :model="model" :codes="codes"/>
</c-content> </c-content>
......
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