Commit f055bcc6 by liuxin
parents 85498724 526df765
...@@ -284,10 +284,10 @@ export default { ...@@ -284,10 +284,10 @@ export default {
{max: 60,message:"长度不能超过60"} {max: 60,message:"长度不能超过60"}
], ],
"recpan.actnum":[ // "recpan.actnum":[
{type: "number", required: false, message: "必输项"}, // {type: "number", required: false, message: "必输项"},
{max: 6,message:"长度不能超过6"} // {max: 6,message:"长度不能超过6"}
], // ],
......
...@@ -133,7 +133,8 @@ export default class Dbipty{ ...@@ -133,7 +133,8 @@ export default class Dbipty{
inflev:"", // Infotext Level .recpan.ptystp.oit.inflev inflev:"", // Infotext Level .recpan.ptystp.oit.inflev
}, },
}, },
actnum:"", // Total Number of Accounts .recpan.actnum actnum:"", // Total Number of Accounts .recpan.actnum
act:"", // IDEA后台添加 前端也要添加该数据
ptssub:{ ptssub:{
oited2:{ oited2:{
labinftxt:"", // Label for INFTXT .recpan.ptssub.oited2.labinftxt labinftxt:"", // Label for INFTXT .recpan.ptssub.oited2.labinftxt
......
...@@ -157,7 +157,7 @@ export default class Infpty{ ...@@ -157,7 +157,7 @@ export default class Infpty{
}, },
}, },
actnum:0, // Total Number of Accounts .recpan.actnum actnum:0, // Total Number of Accounts .recpan.actnum
act:"", //后加进来的LIst 后端IDEA act:"", //后加进来的LIst 后端IDEA 前端也需要手动添加
ptssub:{ ptssub:{
oited2:{ oited2:{
labinftxt:"", // Label for INFTXT .recpan.ptssub.oited2.labinftxt labinftxt:"", // Label for INFTXT .recpan.ptssub.oited2.labinftxt
......
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<c-col :span="8" style="height: 24px" >
<c-col :span="12"> <el-form-item label="Accounts Defined" class="messageLabel">
<el-form-item label="Total Number of Accounts" prop="recpan.actnum"> </el-form-item>
<c-input v-model="model.recpan.actnum" placeholder="请输入Total Number of Accounts"></c-input> </c-col>
</el-form-item>
</c-col> <c-table
:border="true"
:list="data"
ref="table"
style="width:80%,text-aligen:center"
height="500"
:paginationShow="false"
>
<el-table-column label="Type"
width="auto"
prop="typ"
sortable
></el-table-column>
<el-table-column
label="Cur."
width="auto"
prop="cur"
sortable
></el-table-column>
<el-table-column
label="Account No."
width="auto"
prop="extkey"
sortable
></el-table-column>
<el-table-column
label="科目代码"
width="auto"
prop="trmtyp"
sortable
></el-table-column>
<el-table-column
label=" "
width="auto"
prop="nam"
sortable
></el-table-column>
</c-table>
</div> </div>
</template> </template>
<script> <script>
...@@ -20,15 +58,34 @@ export default { ...@@ -20,15 +58,34 @@ export default {
mixins: [commonProcess], mixins: [commonProcess],
data(){ data(){
return { return {
data:[],
} };
}, },
methods:{...Event}, methods:{...Event},
created:function(){ created:function(){},
watch: {
} "model.recpan.act": function () {
this.data = this.model.recpan.act;
this.$nextTick(() => {
for (let i = 0; i < this.data.length; i++) {
if (this.data[i].exeflg == "Y") {
this.$refs.table.$refs.table.toggleRowSelection(
this.data[i],
true
);
}
}
});
},
},
} }
</script> </script>
<style> <style>
</style> </style>
<!-- <c-col :span="12">
<el-form-item label="Total Number of Accounts" prop="recpan.actnum">
<c-input v-model="model.recpan.actnum" placeholder="请输入Total Number of Accounts"></c-input>
</el-form-item>
</c-col> -->
\ No newline at end of file
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<c-col :span="24" style="height: 24px" text-align=justify>
<c-col :span="12"> <el-form-item label="Additional Addresses" class="messageLabel">
</el-form-item>
</c-col>
<!-- <c-col :span="24">
<el-divider></el-divider>
</c-col> -->
<c-table :border="true" :list="data" ref="table"
style="width:80%,text-aligen:center" height="500"
:paginationShow="false">
<el-table-column
label="Key"
width="auto"
prop="extkey"
sortable></el-table-column>
<el-table-column
label="Address"
width="auto"
prop="nam"
sortable
></el-table-column>
<el-table-column
label="BIC"
width="auto"
prop="bic"
sortable
></el-table-column>
<el-table-column
label="Location"
width="auto"
prop="loctxt"
sortable
></el-table-column>
</c-table>
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onRecpanDspadr"> <c-button size="small" type="primary" @click="onRecpanDspadr">
Display Display
</c-button> </c-button>
...@@ -11,7 +45,7 @@ ...@@ -11,7 +45,7 @@
<c-button size="small" type="primary" @click="onRecpanLnkdbmpty"> <c-button size="small" type="primary" @click="onRecpanLnkdbmpty">
&Make Main &Make Main
</c-button> </c-button>
</c-col> </c-col> -->
</div> </div>
</template> </template>
<script> <script>
...@@ -26,7 +60,7 @@ export default { ...@@ -26,7 +60,7 @@ export default {
mixins: [commonProcess], mixins: [commonProcess],
data(){ data(){
return { return {
data:[]
} }
}, },
methods:{...Event}, methods:{...Event},
......
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<c-col :span="12" style="height: 24px" >
<c-col :span="12"> <el-form-item label="Available Info of Party " class="messageLabel">
</el-form-item>
</c-col>
<c-table :border="true" :list="data" ref="table"
style="width:80%,text-aligen:center" height="500"
:paginationShow="false">
<el-table-column
label="Type"
width="auto"
prop="subtyp"
sortable
>
</el-table-column>
<el-table-column
label="Business Sector"
width="auto"
prop="subbus"
sortable></el-table-column>
<el-table-column
label="Display Level"
width="auto"
prop="inflev"
sortable
></el-table-column>
<el-table-column
label="Text"
width="auto"
prop="shttxt"
sortable
></el-table-column>
<c-table-column fixed="right" prop="op" label="操作" width="65px">
<template slot-scope="{ scope }">
<c-button
style="margin-left: 0"
size="small"
@click="onInfbutDsp(scope.$index, scope.row)"
>
Details
</c-button>
</template>
</c-table-column>
</c-table>
<!-- <c-col :span="12">
<span v-text="model.recpan.ptssub.oited2.labinftxt" data-path=".recpan.ptssub.oited2.labinftxt" > </span> <span v-text="model.recpan.ptssub.oited2.labinftxt" data-path=".recpan.ptssub.oited2.labinftxt" > </span>
</c-col> </c-col> -->
</div> </div>
</template> </template>
<script> <script>
...@@ -18,7 +61,7 @@ export default { ...@@ -18,7 +61,7 @@ export default {
mixins: [commonProcess], mixins: [commonProcess],
data(){ data(){
return { return {
data:[]
} }
}, },
methods:{...Event}, methods:{...Event},
......
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
</div> <c-col :span="8" style="height: 24px" >
<el-form-item label="Contact Persons" class="messageLabel">
</el-form-item>
</c-col>
<c-table :border="true" :list="data" ref="table"
style="width:80%,text-aligen:center" height="500"
:paginatonShow="false">
<el-table-column
label="Gender"
width="auto"
prop="gen"
></el-table-column>
<el-table-column
label="Name"
width="auto"
prop="nam"
sortable
></el-table-column>
<el-table-column
label="Department"
width="auto"
prop="dep"
sortable
></el-table-column>
<el-table-column
label="Office Phone"
width="auto"
prop="teloff"
sortable
></el-table-column>
<el-table-column
label="E-mail"
width="auto"
prop="eml"
sortable
></el-table-column>
<el-table-column
label="Telefax"
width="auto"
prop="telfax"
sortable
></el-table-column>
</c-table>
</div>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable";
import Event from "~/model/Dbipty/Event" import Event from "~/model/Dbipty/Event";
export default { export default {
inject: ['root'], inject: ["root"],
props:["model","codes"], props: ["model", "codes"],
mixins: [commonProcess], mixins: [commonProcess],
data(){ data() {
return { return {
data:[]
} };
}, },
methods:{...Event}, methods: { ...Event },
created:function(){ created: function () {},
};
}
}
</script> </script>
<style> <style>
</style> </style>
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<c-col :span="12"> <c-col :span="8" style="height: 24px" >
<c-button size="small" type="primary" @click="onRecpanLnkinfptm"> <el-form-item label="Authentication of Address" class="messageLabel" label-width="200px">
Info </el-form-item>
</c-button> </c-col>
</c-col> <c-table :border="true" :list="data" ref="table"
style="width:80%,text-aligen:center" height="500"
:paginationShow="false"
>
<el-table-column
label="Corr.Type"
width="auto"
prop="cortyp"
sortable
></el-table-column>
<el-table-column
label="Address of Message "
width="auto"
prop="coradr"
sortable
></el-table-column>
<el-table-column
label="Authenticator "
width="auto"
prop="autflg"
sortable
></el-table-column>
<el-table-column
label="Public key"
width="auto"
prop="autdet"
sortable
></el-table-column>
</c-table>
</div> </div>
</template> </template>
<script> <script>
...@@ -20,7 +49,7 @@ export default { ...@@ -20,7 +49,7 @@ export default {
mixins: [commonProcess], mixins: [commonProcess],
data(){ data(){
return { return {
data:[]
} }
}, },
methods:{...Event}, methods:{...Event},
...@@ -32,3 +61,9 @@ export default { ...@@ -32,3 +61,9 @@ export default {
<style> <style>
</style> </style>
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onRecpanLnkinfptm">
Info
</c-button>
</c-col> -->
\ No newline at end of file
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<c-content> <c-content>
<!--------- 左 ---------> <!--------- 左 --------->
<c-col :span="11"> <c-col :span="11">
<c-col :span="24"> <c-col :span="24">
<el-form-item <el-form-item
label="Party No." label="Party No."
prop="recgrp.rec.extkey" prop="recgrp.rec.extkey"
style="width: 100%" style="width: 100%"
> >
<c-fullbox> <c-fullbox>
<c-input <c-input
v-model="model.recgrp.rec.extkey" v-model="model.recgrp.rec.extkey"
maxlength="24" maxlength="24"
placeholder="请输入" placeholder="请输入Party No."
> @keyup.enter.native="showGridPromptDialog('recgrp.rec.extkey')"
</c-input>
<template slot="footer">
<c-button
style="margin: 0px 10px 0 10; padding: 0 12px"
size="small"
type="primary"
@click="onSeainf"
> >
<span style="font-family: '宋体'; font-weight: bold">i</span> </c-input>
</c-button> <template slot="footer">
<c-button
style="margin: 0px 10px 0 10; padding: 0 12px"
size="small"
type="primary"
@click="onSeainf"
>
<span style="font-family: '宋体'; font-weight: bold">i</span>
</c-button>
<c-button size="small" type="primary" @click="onRecpanGetpty"> <!-- <c-button size="small" type="primary" @click="onRecpanGetpty">
获取 获取
</c-button> </c-button> -->
</template> </template>
</c-fullbox> </c-fullbox>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="组织机构代码" prop="recgrp.rec.juscod"> <el-form-item label="组织机构代码" prop="recgrp.rec.juscod">
<c-fullbox> <c-fullbox>
<c-input
v-model="model.recgrp.rec.juscod"
maxlength="10"
placeholder="请输入组织机构代码"
disabled
></c-input>
<template slot="footer">
<c-checkbox v-model="model.recgrp.rec.dshflg" disabled
>是否电商</c-checkbox
>
</template>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="Type">
<c-checkbox v-model="model.recgrp.typb" disabled>Bank</c-checkbox>
<c-checkbox v-model="model.recgrp.typc" disabled>Client</c-checkbox>
<c-checkbox v-model="model.recgrp.typa" disabled
>Own Address</c-checkbox
>
<c-checkbox v-model="model.recgrp.typo" disabled>Other</c-checkbox>
<c-checkbox v-model="model.recgrp.typh" disabled>海关</c-checkbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="Name 1" prop="recgrp.adrmaa.nam1">
<c-input <c-input
v-model="model.recgrp.rec.juscod" v-model="model.recgrp.adrmaa.nam1"
maxlength="10" maxlength="35"
placeholder="请输入组织机构代码" placeholder="请输入Name 1/SWIFT Line 1"
disabled
></c-input> ></c-input>
<template slot="footer"> </el-form-item>
<c-checkbox v-model="model.recgrp.rec.dshflg" </c-col>
>是否电商</c-checkbox <c-col :span="24">
> <el-form-item label="Name 2" prop="recgrp.adrmaa.nam2">
</template> <c-input
</c-fullbox> v-model="model.recgrp.adrmaa.nam2"
</el-form-item> maxlength="35"
</c-col> placeholder="请输入Name 2/SWIFT Line 2"
<c-col :span="24"> disabled
<el-form-item label="Type"> ></c-input>
<c-checkbox v-model="model.recgrp.typb">Bank</c-checkbox> </el-form-item>
<c-checkbox v-model="model.recgrp.typc">Client</c-checkbox> </c-col>
<c-checkbox v-model="model.recgrp.typa">Own Address</c-checkbox>
<c-checkbox v-model="model.recgrp.typo">Other</c-checkbox>
<c-checkbox v-model="model.recgrp.typh">海关</c-checkbox>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="Name 1" prop="recgrp.adrmaa.nam1">
<c-input
v-model="model.recgrp.adrmaa.nam1"
maxlength="35"
placeholder="请输入Name 1/SWIFT Line 1"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="Name 2" prop="recgrp.adrmaa.nam2">
<c-input
v-model="model.recgrp.adrmaa.nam2"
maxlength="35"
placeholder="请输入Name 2/SWIFT Line 2"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="Name 3" prop="recgrp.adrmaa.nam3"> <el-form-item label="Name 3" prop="recgrp.adrmaa.nam3">
<c-input <c-input
v-model="model.recgrp.adrmaa.nam3" v-model="model.recgrp.adrmaa.nam3"
maxlength="35" maxlength="35"
placeholder="请输入Name 3" placeholder="请输入Name 3"
></c-input> disabled
</el-form-item> ></c-input>
</c-col> </el-form-item>
<c-col :span="24"> </c-col>
<el-form-item label="Street" prop="recgrp.adrmaa.str1"> <c-col :span="24">
<c-input <el-form-item label="Street" prop="recgrp.adrmaa.str1">
v-model="model.recgrp.adrmaa.str1" <c-input
maxlength="35" v-model="model.recgrp.adrmaa.str1"
placeholder="请输入Street/SWIFT Line 3" maxlength="35"
></c-input> placeholder="请输入Street/SWIFT Line 3"
</el-form-item> disabled
</c-col> ></c-input>
<c-col :span="24"> </el-form-item>
<el-form-item label="Second Street" prop="recgrp.adrmaa.str2"> </c-col>
<c-input <c-col :span="24">
v-model="model.recgrp.adrmaa.str2" <el-form-item label="Second Street" prop="recgrp.adrmaa.str2">
maxlength="35" <c-input
placeholder="请输入Optional Second Line of Street" v-model="model.recgrp.adrmaa.str2"
></c-input> maxlength="35"
</el-form-item> placeholder="请输入Optional Second Line of Street"
</c-col> disabled
<c-col :span="24"> ></c-input>
<el-form-item label="Post Code" prop="recgrp.adrmaa.loczip"> </el-form-item>
<c-input </c-col>
v-model="model.recgrp.adrmaa.loczip" <c-col :span="24">
maxlength="10" <el-form-item label="Post Code" prop="recgrp.adrmaa.loczip">
placeholder="请输入ZIP Code/First Part of SWIFT Line 4" <c-input
></c-input> v-model="model.recgrp.adrmaa.loczip"
</el-form-item> maxlength="10"
</c-col> placeholder="请输入ZIP Code/First Part of SWIFT Line 4"
<c-col :span="24"> disabled
<el-form-item label="Textpart of City" prop="recgrp.adrmaa.loctxt"> ></c-input>
<c-input </el-form-item>
v-model="model.recgrp.adrmaa.loctxt" </c-col>
maxlength="25" <c-col :span="24">
placeholder="请输入Textpart of City/Second Part of SWIFT Line 4" <el-form-item label="Textpart of City" prop="recgrp.adrmaa.loctxt">
></c-input> <c-input
</el-form-item> v-model="model.recgrp.adrmaa.loctxt"
</c-col> maxlength="25"
<c-col :span="24"> placeholder="请输入Textpart of City/Second Part of SWIFT Line 4"
<el-form-item label="Second Line of City" prop="recgrp.adrmaa.loc2"> disabled
<c-input ></c-input>
v-model="model.recgrp.adrmaa.loc2" </el-form-item>
maxlength="35" </c-col>
placeholder="请输入Optional Second Line of City" <c-col :span="24">
></c-input> <el-form-item label="Second Line of City" prop="recgrp.adrmaa.loc2">
</el-form-item> <c-input
</c-col> v-model="model.recgrp.adrmaa.loc2"
<c-col :span="24"> maxlength="35"
<el-form-item label="P O Box" prop="recgrp.adrmaa.pob"> placeholder="请输入Optional Second Line of City"
<c-input disabled
v-model="model.recgrp.adrmaa.pob" ></c-input>
maxlength="35" </el-form-item>
placeholder="请输入Line with Postbox" </c-col>
></c-input> <c-col :span="24">
</el-form-item> <el-form-item label="P O Box" prop="recgrp.adrmaa.pob">
</c-col> <c-input
<c-col :span="24"> v-model="model.recgrp.adrmaa.pob"
<el-form-item maxlength="35"
label="Textpart of City Used " placeholder="请输入Line with Postbox"
prop="recgrp.adrmaa.pobtxt" disabled
> ></c-input>
<c-input </el-form-item>
v-model="model.recgrp.adrmaa.pobtxt" </c-col>
maxlength="25" <c-col :span="24">
placeholder="请输入Textpart of City Used when Addressing Postbox" <el-form-item
></c-input> label="Textpart of City Used "
</el-form-item> prop="recgrp.adrmaa.pobtxt"
</c-col>
<c-col :span="24">
<el-form-item label="Country or region" prop="recgrp.adrmaa.loccty">
<c-select
v-model="model.recgrp.adrmaa.loccty"
style="width: 100%"
placeholder="请选择Country"
> >
</c-select> <c-input
</el-form-item> v-model="model.recgrp.adrmaa.pobtxt"
</c-col> maxlength="25"
<c-col :span="24"> placeholder="请输入Textpart of City Used when Addressing Postbox"
<el-form-item label="E-mail" prop="recgrp.adrmaa.eml"> disabled
<c-input ></c-input>
v-model="model.recgrp.adrmaa.eml" </el-form-item>
maxlength="80" </c-col>
placeholder="请输入eMail/Internet" <c-col :span="24">
></c-input> <el-form-item label="Country or region" prop="recgrp.adrmaa.loccty">
</el-form-item> <c-select
</c-col> v-model="model.recgrp.adrmaa.loccty"
<c-col :span="24"> style="width: 100%"
<el-form-item label="Housebank" prop="recgrp.hbk.extkey"> placeholder="请选择Country"
<c-input disabled
v-model="model.recgrp.hbk.extkey" >
maxlength="24" </c-select>
placeholder="请输入Address Number" </el-form-item>
></c-input> </c-col>
</el-form-item> <c-col :span="24">
</c-col> <el-form-item label="E-mail" prop="recgrp.adrmaa.eml">
<c-col :span="24"> <c-input
<el-form-item label="Headquarter" prop="recgrp.heq.extkey"> v-model="model.recgrp.adrmaa.eml"
<c-input maxlength="80"
v-model="model.recgrp.heq.extkey" placeholder="请输入eMail/Internet"
maxlength="24" disabled
placeholder="请输入Address Number" ></c-input>
></c-input> </el-form-item>
</el-form-item> </c-col>
</c-col> <c-col :span="24">
<c-col :span="13"> <el-form-item label="Housebank" prop="recgrp.hbk.extkey">
<el-form-item label="Account M." prop="recgrp.rec.accusr"> <c-input
<c-input v-model="model.recgrp.hbk.extkey"
v-model="model.recgrp.rec.accusr" maxlength="24"
maxlength="8" placeholder="请输入Address Number"
placeholder="请输入User ID of Account Officer" disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="11"> <c-col :span="24">
<el-form-item label="支行" prop="recpan.bchkey"> <el-form-item label="Headquarter" prop="recgrp.heq.extkey">
<c-select <c-input
v-model="model.recpan.bchkey" v-model="model.recgrp.heq.extkey"
style="width: 100%" maxlength="24"
placeholder="请选择Branch Key" placeholder="请输入Address Number"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="14">
<el-form-item label="Account M." prop="recgrp.rec.accusr">
<c-input
v-model="model.recgrp.rec.accusr"
maxlength="8"
placeholder="请输入User ID of Account Officer"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="10">
<el-form-item
label="支行"
prop="recpan.bchkey"
label-width="45px"
style="margin-left: 12px"
disabled
> >
</c-select> <c-select
</el-form-item> v-model="model.recpan.bchkey"
</c-col> style="width: 100%"
<c-col :span="24"> placeholder="请选择Branch Key"
<el-form-item label="中文地址1" prop="recgrp.adrmaa.adr1"> disabled
<c-input >
v-model="model.recgrp.adrmaa.adr1" </c-select>
maxlength="40" </el-form-item>
placeholder="请输入Chinese Address" </c-col>
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="" prop="recgrp.adrmaa.adr2">
<c-input
v-model="model.recgrp.adrmaa.adr2"
maxlength="40"
placeholder="请输入"
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="" prop="recgrp.adrmaa.adr3">
<c-input
v-model="model.recgrp.adrmaa.adr3"
maxlength="40"
placeholder="请输入"
></c-input>
</el-form-item>
</c-col> </c-col>
</c-col>
<!--------- 右 ----------> <!--------- 右 ---------->
<c-col :span="11" :offset="1"> <c-col :span="11" :offset="1">
<c-col :span="24"> <c-col :span="24">
<el-form-item label="Party Name" prop="recgrp.rec.nam"> <el-form-item label="Party Name" prop="recgrp.rec.nam">
<c-input <c-input
v-model="model.recgrp.rec.nam" v-model="model.recgrp.rec.nam"
maxlength="40" maxlength="40"
placeholder="请输入Party Name" placeholder="请输入Party Name"
></c-input> disabled
</el-form-item> ></c-input>
</c-col> </el-form-item>
<c-col :span="24"> </c-col>
<el-form-item label="Chinese name" prop="recgrp.rec.nam1"> <c-col :span="24">
<c-input <el-form-item label="Chinese name" prop="recgrp.rec.nam1">
type="textarea" <c-input
v-model="model.recgrp.rec.nam1" type="textarea"
maxlength="50" v-model="model.recgrp.rec.nam1"
show-word-limit maxlength="50"
placeholder="请输入Chinese name" show-word-limit
></c-input> placeholder="请输入Chinese name"
</el-form-item> disabled
</c-col> ></c-input>
<c-col :span="24"> </el-form-item>
<el-form-item label="Address Status" prop="recgrp.rec.adrsta"> </c-col>
<c-select <c-col :span="24">
v-model="model.recgrp.rec.adrsta" <el-form-item label="Address Status" prop="recgrp.rec.adrsta">
style="width: 100%" <c-select
placeholder="请选择Address Status" v-model="model.recgrp.rec.adrsta"
:code="codes.adrsta" style="width: 100%"
placeholder="请选择Address Status"
:code="codes.adrsta"
disabled
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="14">
<c-form-item label="电话1" prop="recgrp.adrmaa.tel1">
<c-input
v-model="model.recgrp.adrmaa.tel1"
maxlength="20"
placeholder="请输入Telephone 1"
disabled
></c-input>
</c-form-item>
</c-col>
<c-col :span="10">
<c-form-item
label="电话2"
prop="recgrp.adrmaa.tel2"
label-width="45px"
style="margin-left: 12px"
> >
</c-select> <c-input
</el-form-item> v-model="model.recgrp.adrmaa.tel2"
</c-col> maxlength="20"
<c-col :span="14"> placeholder="请输入Telephone 2"
<c-form-item label="电话1" prop="recgrp.adrmaa.tel1"> disabled
<c-input ></c-input>
v-model="model.recgrp.adrmaa.tel1" </c-form-item>
maxlength="20" </c-col>
placeholder="请输入Telephone 1" <c-col :span="14">
></c-input> <el-form-item label="传真1" prop="recgrp.adrmaa.fax1">
</c-form-item> <c-input
</c-col> v-model="model.recgrp.adrmaa.fax1"
<c-col :span="10"> maxlength="20"
<c-form-item label="电话2" prop="recgrp.adrmaa.tel2" placeholder="请输入Telefax 1"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="10">
<el-form-item
label="传真2"
prop="recgrp.adrmaa.fax2"
label-width="45px" label-width="45px"
style="margin-left: 12px" style="margin-left: 12px"
> >
<c-input <c-input
v-model="model.recgrp.adrmaa.tel2" v-model="model.recgrp.adrmaa.fax2"
maxlength="20" maxlength="20"
placeholder="请输入Telephone 2" placeholder="请输入Telefax 2"
></c-input> disabled
</c-form-item> ></c-input>
</c-col> </el-form-item>
<c-col :span="14"> </c-col>
<el-form-item label="传真1" prop="recgrp.adrmaa.fax1"> <c-col :span="14">
<c-input <el-form-item label="Telex " prop="recgrp.adrmaa.tlx">
v-model="model.recgrp.adrmaa.fax1" <c-input
maxlength="20" v-model="model.recgrp.adrmaa.tlx"
placeholder="请输入Telefax 1" maxlength="20"
></c-input> placeholder="请输入Telex Number"
</el-form-item> disabled
</c-col> ></c-input>
</el-form-item>
</c-col>
<c-col :span="10"> <c-col :span="10">
<el-form-item label="传真2" <el-form-item
prop="recgrp.adrmaa.fax2" label="BIC "
label-width="45px" prop="recgrp.adrmaa.bic"
style="margin-left: 12px" label-width="45px"
> style="margin-left: 12px"
<c-input >
v-model="model.recgrp.adrmaa.fax2" <c-input
maxlength="20" v-model="model.recgrp.adrmaa.bic"
placeholder="请输入Telefax 2" maxlength="11"
></c-input> placeholder="请输入BIC of Address Optional"
</el-form-item> disabled
</c-col> ></c-input>
<c-col :span="14"> </el-form-item>
<el-form-item label="Telex " prop="recgrp.adrmaa.tlx" </c-col>
>
<c-input
v-model="model.recgrp.adrmaa.tlx"
maxlength="20"
placeholder="请输入Telex Number"
></c-input>
</el-form-item>
</c-col>
<c-col :span="10"> <c-col :span="24">
<el-form-item label="BIC " prop="recgrp.adrmaa.bic" <el-form-item label="Bank Code" prop="recgrp.adrmaa.blz">
label-width="45px" <c-input
style="margin-left: 12px"> v-model="model.recgrp.adrmaa.blz"
<c-input maxlength="8"
v-model="model.recgrp.adrmaa.bic" placeholder="请输入Bankleitzahl German Clearing Code"
maxlength="11" disabled
placeholder="请输入BIC of Address Optional" ></c-input>
></c-input> </el-form-item>
</el-form-item> </c-col>
</c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="Bank Code" prop="recgrp.adrmaa.blz"> <el-form-item label="Branch ID" prop="recgrp.adrmaa.bid">
<c-input <c-input
v-model="model.recgrp.adrmaa.blz" v-model="model.recgrp.adrmaa.bid"
maxlength="8" maxlength="35"
placeholder="请输入Bankleitzahl German Clearing Code" placeholder="请输入Branch Identification Used in Option B of SWIFT Fieldtags"
></c-input> disabled
</el-form-item> ></c-input>
</c-col> </el-form-item>
</c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="Branch ID" prop="recgrp.adrmaa.bid"> <el-form-item label="TradeConnect ID" prop="recgrp.adrmaa.tid">
<c-fullbox>
<c-input <c-input
v-model="model.recgrp.adrmaa.bid" v-model="model.recgrp.adrmaa.tid"
maxlength="35" maxlength="23"
placeholder="请输入Branch Identification Used in Option B of SWIFT Fieldtags" placeholder="请输入TradeConnect ID"
></c-input> disabled
</el-form-item> ></c-input>
</c-col> <!-- <c-button size="small" type="primary" @click="onRecpanGet">
Get
</c-button> -->
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="TradeConnect ID" prop="recgrp.adrmaa.tid"> <el-form-item label="Clearing" prop="recgrp.adrmaa.clc">
<c-fullbox>
<c-input <c-input
v-model="model.recgrp.adrmaa.tid" v-model="model.recgrp.adrmaa.clc"
maxlength="23" maxlength="35"
placeholder="请输入TradeConnect ID" placeholder="请输入Clearing Code for Banks"
disabled
></c-input> ></c-input>
<c-button size="small" type="primary" @click="onRecpanGet"> </el-form-item>
Get </c-col>
</c-button>
</c-fullbox>
</el-form-item>
</c-col>
<c-col :span="12"> <c-col :span="14">
<el-form-item label="Clearing" prop="recgrp.adrmaa.clc"> <el-form-item label="Language" prop="recgrp.adrmaa.uil">
<c-input <c-select
v-model="model.recgrp.adrmaa.clc" v-model="model.recgrp.adrmaa.uil"
maxlength="35" style="width: 100%"
placeholder="请输入Clearing Code for Banks" placeholder="请选择Default Language Code"
></c-input> disabled
</el-form-item> >
</c-col> </c-select>
</el-form-item>
</c-col>
<c-col :span="12"> <c-col :span="10">
<el-form-item label="Language" prop="recgrp.adrmaa.uil"> <el-form-item
<c-select label="Messages"
v-model="model.recgrp.adrmaa.uil" prop="recgrp.adrmaa.cortyp"
style="width: 100%" label-width="48px"
placeholder="请选择Default Language Code" style="margin-left: 12px"
> >
</c-select> <c-select
</el-form-item> v-model="model.recgrp.adrmaa.cortyp"
</c-col> style="width: 100%"
placeholder="请选择Primary Output Chanel of Messages SWT, LET, TLX, TCO"
disabled
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="12"> <c-col :span="24">
<el-form-item label="Messages" prop="recgrp.adrmaa.cortyp"> <el-form-item label="Department" prop="recgrp.adrmaa.dpt">
<c-select <c-input
v-model="model.recgrp.adrmaa.cortyp" v-model="model.recgrp.adrmaa.dpt"
style="width: 100%" maxlength="35"
placeholder="请选择Primary Output Chanel of Messages SWT, LET, TLX, TCO" placeholder="请输入Department"
> disabled
</c-select> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="12"> <c-col :span="24">
<el-form-item label="Department" prop="recgrp.adrmaa.dpt"> <el-form-item label="开户行信息" prop="recgrp.ptamaa.issbchinf">
<c-input <c-input
v-model="model.recgrp.adrmaa.dpt" v-model="model.recgrp.ptamaa.issbchinf"
maxlength="35" maxlength="40"
placeholder="请输入Department" placeholder="请输入Info of bank"
></c-input> disabled
</el-form-item> ></c-input>
</c-col> </el-form-item>
</c-col>
<c-col :span="12"> <c-col :span="16">
<el-form-item label="开户行信息" prop="recgrp.ptamaa.issbchinf"> <el-form-item label="External Visible Name" prop="recgrp.hbk.nam">
<c-input <c-input
v-model="model.recgrp.ptamaa.issbchinf" v-model="model.recgrp.hbk.nam"
maxlength="40" maxlength="40"
placeholder="请输入Info of bank" placeholder="请输入External Visible Name"
></c-input> disabled
</el-form-item> ></c-input>
</c-col> </el-form-item>
</c-col>
<c-col :span="12"> <c-col :span="8">
<el-form-item label="External Visible Name" prop="recgrp.hbk.nam"> <c-checkbox v-model="model.recgrp.rec.hbkaccflg" disabled
<c-input >Use Accounting of House Bank</c-checkbox
v-model="model.recgrp.hbk.nam" >
maxlength="40" </c-col>
placeholder="请输入External Visible Name"
></c-input>
</el-form-item>
</c-col>
<c-col :span="12"> <c-col :span="16">
<c-checkbox v-model="model.recgrp.rec.hbkaccflg" <el-form-item label="External Visible Name" prop="recgrp.heq.nam">
>Use Accounting of House Bank</c-checkbox <c-input
> v-model="model.recgrp.heq.nam"
</c-col> maxlength="40"
placeholder="请输入External Visible Name"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="12"> <c-col :span="8">
<el-form-item label="External Visible Name" prop="recgrp.heq.nam"> <c-checkbox v-model="model.recgrp.rec.heqaccflg" disabled
<c-input >Use Accounting of Headquarters</c-checkbox
v-model="model.recgrp.heq.nam" >
maxlength="40" </c-col>
placeholder="请输入External Visible Name"
></c-input>
</el-form-item>
</c-col>
<c-col :span="12"> <c-col :span="24">
<c-checkbox v-model="model.recgrp.rec.heqaccflg" <el-form-item label="中文邮编" prop="recgrp.adrmaa.pobzip" disabled>
>Use Accounting of Headquarters</c-checkbox <c-input
> v-model="model.recgrp.adrmaa.pobzip"
</c-col> maxlength="10"
placeholder="请输入ZIP Code Used when Addressing Postbox"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="中文地址1" prop="recgrp.adrmaa.adr1">
<c-input
v-model="model.recgrp.adrmaa.adr1"
maxlength="40"
placeholder="请输入Chinese Address"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="中文地址2" prop="recgrp.adrmaa.adr2">
<c-input
v-model="model.recgrp.adrmaa.adr2"
maxlength="40"
placeholder="请输入"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="中文地址3" prop="recgrp.adrmaa.adr3">
<c-input
v-model="model.recgrp.adrmaa.adr3"
maxlength="40"
placeholder="请输入"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="中文邮编" prop="recgrp.adrmaa.pobzip">
<c-input
v-model="model.recgrp.adrmaa.pobzip"
maxlength="10"
placeholder="请输入ZIP Code Used when Addressing Postbox"
></c-input>
</el-form-item>
</c-col> </c-col>
</c-col> </c-content>
</c-content>
</div> </div>
</template> </template>
<script> <script>
...@@ -484,7 +545,8 @@ export default { ...@@ -484,7 +545,8 @@ export default {
return {}; return {};
}, },
computed: {}, computed: {},
methods: { ...Event, onSeainf() {} }, methods: { ...Event, onSeainf() {},
},
created: function () {}, created: function () {},
}; };
</script> </script>
......
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<c-content>
<c-col :span="12"> <!--------- 左 --------->
<el-form-item label="Credit Class" prop="recgrp.rec.rskcls"> <c-col :span="11">
<c-select v-model="model.recgrp.rec.rskcls" style="width:100%" placeholder="请选择Credit Class"> <c-col :span="24">
</c-select> <el-form-item label="Credit Class" prop="recgrp.rec.rskcls">
</el-form-item> <c-select
</c-col> v-model="model.recgrp.rec.rskcls"
style="width: 100%"
<c-col :span="12"> placeholder="请选择Credit Class"
<el-form-item label="Risk Country" prop="recgrp.rec.rskcty"> disabled
<c-select v-model="model.recgrp.rec.rskcty" style="width:100%" placeholder="请选择Risk Country"> >
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="12"> <c-col :span="24">
<el-form-item label="Risk Description" prop="recgrp.rec.rsktxt"> <el-form-item label="Risk Country" prop="recgrp.rec.rskcty">
<c-input v-model="model.recgrp.rec.rsktxt" maxlength="35" placeholder="请输入Risk Description"></c-input> <c-select
</el-form-item> v-model="model.recgrp.rec.rskcty"
</c-col> style="width: 100%"
placeholder="请选择Risk Country"
<c-col :span="12"> disabled
<el-form-item label="DTA Import L/C ID" prop="recgrp.adrmaa.dtacid"> >
<c-input v-model="model.recgrp.adrmaa.dtacid" maxlength="23" placeholder="请输入DTA Import L/C ID"></c-input> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="12"> <c-col :span="24">
<el-form-item label="DTA Export L/C ID" prop="recgrp.adrmaa.dtecid"> <el-form-item label="Risk Description" prop="recgrp.rec.rsktxt">
<c-input v-model="model.recgrp.adrmaa.dtecid" maxlength="23" placeholder="请输入DTA Export L/C ID"></c-input> <c-input
</el-form-item> v-model="model.recgrp.rec.rsktxt"
</c-col> maxlength="35"
placeholder="请输入Risk Description"
<c-col :span="12"> disabled
<el-form-item label="Currency" prop="recgrp.ptyrat.cur"> ></c-input>
<c-select v-model="model.recgrp.ptyrat.cur" style="width:100%" placeholder="请选择Currency"> </el-form-item>
</c-select> </c-col>
</el-form-item>
</c-col> <c-col :span="24">
<el-form-item label="DTA Import L/C ID" prop="recgrp.adrmaa.dtacid">
<c-col :span="12"> <c-input
<el-form-item label="Customer Specific Buying Rate Type" prop="recgrp.ptyrat.buytyp"> v-model="model.recgrp.adrmaa.dtacid"
<c-select v-model="model.recgrp.ptyrat.buytyp" style="width:100%" placeholder="请选择Customer Specific Buying Rate Type"> maxlength="23"
</c-select> placeholder="请输入DTA Import L/C ID"
</el-form-item> disabled
</c-col> ></c-input>
</el-form-item>
<c-col :span="12"> </c-col>
<el-form-item label="Buy rate discount" prop="recgrp.ptyrat.buyrat">
<c-input v-model="model.recgrp.ptyrat.buyrat" placeholder="请输入Buy rate discount"></c-input> <c-col :span="24">
</el-form-item> <el-form-item label="DTA Export L/C ID" prop="recgrp.adrmaa.dtecid">
</c-col> <c-input
v-model="model.recgrp.adrmaa.dtecid"
<c-col :span="12"> maxlength="23"
<c-button size="small" type="primary" @click="onRecpanUpd"> placeholder="请输入DTA Export L/C ID"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="DTA Guarantees ID" prop="recgrp.adrmaa.dtgcid">
<c-input
v-model="model.recgrp.adrmaa.dtgcid"
maxlength="23"
placeholder="请输入DTA Guarantees ID"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="电证名称" prop="recgrp.adrmaa.namelc">
<c-input
type="textarea"
v-model="model.recgrp.adrmaa.namelc"
maxlength="35"
show-word-limit
placeholder="请输入名称"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="流动资金贷款利率档次" prop="recgrp.rec.cunqii">
<c-select
v-model="model.recgrp.rec.cunqii"
style="width: 100%"
placeholder="请选择流动资金贷款利率档次"
disabled
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="上浮比率" prop="recgrp.rec.bilvvv">
<c-input
v-model="model.recgrp.rec.bilvvv"
placeholder="请输入上浮比率"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="企业海关十位制编码" prop="recgrp.rec.bngcod">
<c-input
v-model="model.recgrp.rec.bngcod"
maxlength="10"
placeholder="请输入企业海关十位制编码"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="国内地区码" prop="recgrp.adrmaa.discod">
<c-input
v-model="model.recgrp.adrmaa.discod"
maxlength="6"
placeholder="请输入国内地区码"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="ECIFNO" prop="recgrp.rec.ecifno">
<c-input
v-model="model.recgrp.rec.ecifno"
maxlength="24"
placeholder="请输入ECIFNO"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="ECIFNO中文名称" prop="recgrp.rec.ecifnam1">
<c-input
v-model="model.recgrp.rec.ecifnam1"
maxlength="100"
placeholder="请输入ECIFNO中文名称"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="组织机构代码" prop="recgrp.rec.ecifjuscod">
<c-input
v-model="model.recgrp.rec.ecifjuscod"
maxlength="50"
placeholder="请输入组织机构代码"
disabled
></c-input>
</el-form-item>
</c-col>
</c-col>
<!--------- 右 --------->
<c-col :span="11" :offset="1">
<c-col :span="24">
<el-form-item label="币种" prop="recgrp.ptyrat.cur">
<c-select
v-model="model.recgrp.ptyrat.cur"
style="width: 100%"
placeholder="请选择Currency"
disabled
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="买价优惠" prop="recgrp.ptyrat.buytyp">
<c-select
v-model="model.recgrp.ptyrat.buytyp"
style="width: 100%"
placeholder="请选择Customer Specific Buying Rate Type"
:code="codes.buytyp"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="19">
<el-form-item label="Buy rate discount" prop="recgrp.ptyrat.buyrat">
<c-input
v-model="model.recgrp.ptyrat.buyrat"
placeholder="请输入Buy rate discount"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="5">
<c-button size="small" type="primary" @click="onRecpanUpd" disabled>
Update one Update one
</c-button> </c-button>
</c-col> </c-col>
<c-col :span="12"> <c-col :span="24">
<el-form-item label="DTA Guarantees ID" prop="recgrp.adrmaa.dtgcid"> <el-form-item label="卖价优惠" prop="recgrp.ptyrat.seltyp">
<c-input v-model="model.recgrp.adrmaa.dtgcid" maxlength="23" placeholder="请输入DTA Guarantees ID"></c-input> <c-select
</el-form-item> v-model="model.recgrp.ptyrat.seltyp"
</c-col> style="width: 100%"
placeholder="请选择Customer Specific Selling Rate Type"
<c-col :span="12"> disabled
<el-form-item label="Customer Specific Selling Rate Type" prop="recgrp.ptyrat.seltyp"> >
<c-select v-model="model.recgrp.ptyrat.seltyp" style="width:100%" placeholder="请选择Customer Specific Selling Rate Type"> </c-select>
</c-select> </el-form-item>
</el-form-item> </c-col>
</c-col>
<c-col :span="19">
<c-col :span="12"> <el-form-item label="Sell rate discount" prop="recgrp.ptyrat.selrat">
<el-form-item label="Sell rate discount" prop="recgrp.ptyrat.selrat"> <c-input
<c-input v-model="model.recgrp.ptyrat.selrat" placeholder="请输入Sell rate discount"></c-input> v-model="model.recgrp.ptyrat.selrat"
</el-form-item> placeholder="请输入Sell rate discount"
</c-col> disabled
></c-input>
<c-col :span="12"> </el-form-item>
<c-button size="small" type="primary" @click="onRecpanUpdall"> </c-col>
<c-col :span="5">
<c-button
size="small"
type="primary"
@click="onRecpanUpdall"
disabled
>
Update All Update All
</c-button> </c-button>
</c-col> </c-col>
<c-col :span="12"> <c-col :span="24">
<el-form-item label="Service Level" prop="recgrp.rec.sla"> <el-form-item label="Service Level" prop="recgrp.rec.sla">
<c-select v-model="model.recgrp.rec.sla" style="width:100%" placeholder="请选择Service Level"> <c-select
</c-select> v-model="model.recgrp.rec.sla"
</el-form-item> style="width: 100%"
</c-col> placeholder="请选择Service Level"
disabled
<c-col :span="12"> >
<el-form-item label="Rate Stream" prop="recpan.ratstm"> </c-select>
<c-input v-model="model.recpan.ratstm" placeholder="请输入Rate Stream"></c-input> </el-form-item>
</el-form-item> </c-col>
</c-col> <c-col :span="24">
<el-form-item label="电证地址" prop="recgrp.adrmaa.adrelc">
<c-col :span="12"> <c-input
<span v-text="model.recpan.selpct" data-path=".recpan.selpct" > </span> type="textarea"
</c-col> v-model="model.recgrp.adrmaa.adrelc"
maxlength="35"
<c-col :span="12"> show-word-limit
<el-form-item label="名称" prop="recgrp.adrmaa.namelc"> placeholder="请输入地址"
<c-input type="textarea" v-model="model.recgrp.adrmaa.namelc" maxlength="35" show-word-limit placeholder="请输入名称" ></c-input> disabled
</el-form-item> ></c-input>
</c-col> </el-form-item>
</c-col>
<c-col :span="12"> <c-col :span="24">
<span v-text="model.recpan.buypct" data-path=".recpan.buypct" > </span> <el-form-item label="客户类型" prop="recgrp.rec.idtype">
</c-col> <c-select
v-model="model.recgrp.rec.idtype"
<c-col :span="12"> style="width: 100%"
<el-form-item label="地址" prop="recgrp.adrmaa.adrelc"> placeholder="请选择客户类型"
<c-input type="textarea" v-model="model.recgrp.adrmaa.adrelc" maxlength="35" show-word-limit placeholder="请输入地址" ></c-input> disabled
</el-form-item> >
</c-col> </c-select>
</el-form-item>
<c-col :span="12"> </c-col>
<el-form-item label="流动资金贷款利率档次" prop="recgrp.rec.cunqii">
<c-select v-model="model.recgrp.rec.cunqii" style="width:100%" placeholder="请选择流动资金贷款利率档次"> <c-col :span="24">
</c-select> <el-form-item label="金融机构类型" prop="recgrp.rec.akkcom">
</el-form-item> <c-input
</c-col> v-model="model.recgrp.rec.akkcom"
maxlength="8"
<c-col :span="12"> placeholder="请输入金融机构类型"
<el-form-item label="客户类型" prop="recgrp.rec.idtype"> disabled
<c-select v-model="model.recgrp.rec.idtype" style="width:100%" placeholder="请选择客户类型"> ></c-input>
</c-select> </el-form-item>
</el-form-item> </c-col>
</c-col>
<c-col :span="24">
<c-col :span="12"> <el-form-item label="身份证号码" prop="recgrp.rec.idcode">
<el-form-item label="上浮比率" prop="recgrp.rec.bilvvv"> <c-input
<c-input v-model="model.recgrp.rec.bilvvv" placeholder="请输入上浮比率"></c-input> v-model="model.recgrp.rec.idcode"
</el-form-item> maxlength="32"
</c-col> placeholder="请输入身份证号码"
disabled
<c-col :span="12"> ></c-input>
<el-form-item label="金融机构类型" prop="recgrp.rec.akkcom"> </el-form-item>
<c-input v-model="model.recgrp.rec.akkcom" maxlength="8" placeholder="请输入金融机构类型"></c-input> </c-col>
</el-form-item> <c-col :span="24">
</c-col> <el-form-item label="交易主体" prop="recgrp.rec.trnman">
<c-select
<c-col :span="12"> v-model="model.recgrp.rec.trnman"
<el-form-item label="企业海关十位制编码" prop="recgrp.rec.bngcod"> style="width: 100%"
<c-input v-model="model.recgrp.rec.bngcod" maxlength="10" placeholder="请输入企业海关十位制编码"></c-input> placeholder="请选择交易主体"
</el-form-item> disabled
</c-col> >
</c-select>
<c-col :span="12"> </el-form-item>
<el-form-item label="身份证号码" prop="recgrp.rec.idcode"> </c-col>
<c-input v-model="model.recgrp.rec.idcode" maxlength="32" placeholder="请输入身份证号码"></c-input>
</el-form-item> <!-- <c-col :span="24">
</c-col> <c-button size="small" type="primary" @click="onRecpanEcif">
<c-col :span="12">
<span v-text="model.recpan.idnam" data-path=".recpan.idnam" > </span>
</c-col>
<c-col :span="12">
<el-form-item label="国内地区码" prop="recgrp.adrmaa.discod">
<c-input v-model="model.recgrp.adrmaa.discod" maxlength="6" placeholder="请输入国内地区码"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="交易主体" prop="recgrp.rec.trnman">
<c-select v-model="model.recgrp.rec.trnman" style="width:100%" placeholder="请选择交易主体">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label="ECIFNO" prop="recgrp.rec.ecifno">
<c-input v-model="model.recgrp.rec.ecifno" maxlength="24" placeholder="请输入ECIFNO"></c-input>
</el-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" @click="onRecpanEcif">
ECIF ECIF
</c-button> </c-button>
</c-col> </c-col> -->
<c-col :span="12"> <c-col :span="12">
<el-form-item label="ocrm日期" prop="recgrp.rec.khbsdt"> <el-form-item label="ocrm日期" prop="recgrp.rec.khbsdt">
<c-date-picker type="date" v-model="model.recgrp.rec.khbsdt" style="width:100%" placeholder="请选择ocrm日期"></c-date-picker> <c-date-picker
</el-form-item> type="date"
</c-col> v-model="model.recgrp.rec.khbsdt"
style="width: 100%"
<c-col :span="12"> placeholder="请选择ocrm日期"
<c-checkbox v-model="model.recgrp.rec.speeco">特殊经济区域</c-checkbox> disabled
</c-col> ></c-date-picker>
</el-form-item>
<c-col :span="12"> </c-col>
<el-form-item label="ECIFNO中文名称" prop="recgrp.rec.ecifnam1">
<c-input v-model="model.recgrp.rec.ecifnam1" maxlength="100" placeholder="请输入ECIFNO中文名称"></c-input> <c-col :span="12" >
</el-form-item> <c-checkbox v-model="model.recgrp.rec.speeco" disabled
</c-col> >特殊经济区域</c-checkbox
>
<c-col :span="12"> </c-col>
<el-form-item label="组织机构代码" prop="recgrp.rec.ecifjuscod">
<c-input v-model="model.recgrp.rec.ecifjuscod" maxlength="50" placeholder="请输入组织机构代码"></c-input> <c-col :span="24">
</el-form-item> <el-form-item label="企业规模(国标)" prop="recgrp.rec.qygmgb">
</c-col> <c-select
v-model="model.recgrp.rec.qygmgb"
<c-col :span="12"> style="width: 100%"
<el-form-item label="贸金客户类别" prop="recgrp.rec.crmtyp"> placeholder="请选择企业规模(国标)"
<c-select v-model="model.recgrp.rec.crmtyp" style="width:100%" placeholder="请选择贸金客户类别"> disabled
</c-select> >
</el-form-item> </c-select>
</c-col> </el-form-item>
</c-col>
<c-col :span="12"> <c-col :span="24">
<el-form-item label="企业规模(国标)" prop="recgrp.rec.qygmgb"> <el-form-item label="贸金客户类别" prop="recgrp.rec.crmtyp">
<c-select v-model="model.recgrp.rec.qygmgb" style="width:100%" placeholder="请选择企业规模(国标)"> <c-select
</c-select> v-model="model.recgrp.rec.crmtyp"
</el-form-item> style="width: 100%"
</c-col> placeholder="请选择贸金客户类别"
</div> disabled
>
</c-select>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-istream-table
:list="stmData.data"
:columns="stmData.columns"
:showButtonFlg="true"
>
</c-istream-table>
</c-col>
</c-content>
</div>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable";
import Event from "~/model/Dbipty/Event" import Event from "~/model/Dbipty/Event";
export default { export default {
inject: ['root'], inject: ["root"],
props:["model","codes"], props: ["model", "codes"],
mixins: [commonProcess], mixins: [commonProcess],
data(){ data() {
return { return {
stmData: {
} columns: [
}, "0 1 \"Cur\" 200",
methods:{...Event}, "2 2 \"Buy Type\" 250 1 0 1 PTYRAT:BUYTYP",
created:function(){ "3 3 \"Discount\" 250 2 0 1 0",
"4 4 \"Sell Type\" 250 1 0 1 PTYRAT:SELTYP",
} "5 5 \"Discount\" 250 2 0 1 0"
} ],
data: [],
},
};
},
methods: { ...Event },
created: function () {},
};
</script> </script>
<style> <style>
</style> </style>
<!-- <c-col :span="24">
<el-form-item label="Rate Stream" prop="recpan.ratstm">
<c-input
v-model="model.recpan.ratstm"
placeholder="请输入Rate Stream"
></c-input>
</el-form-item>
</c-col> -->
<!-- <c-col :span="24">
<span v-text="model.recpan.selpct" data-path=".recpan.selpct" > </span>
</c-col> -->
<!-- <c-col :span="24">
<span v-text="model.recpan.buypct" data-path=".recpan.buypct" > </span>
</c-col> -->
<!-- <c-col :span="24">
<span v-text="model.recpan.idnam" data-path=".recpan.idnam"> </span>
</c-col> -->
\ No newline at end of file
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<!-- 左 -->
<c-col :span="12"> <c-col :span="11">
<c-col :span="24">
<el-form-item label="客户号" prop="recpan.epty.extkey"> <el-form-item label="客户号" prop="recpan.epty.extkey">
<c-input v-model="model.recpan.epty.extkey" maxlength="24" placeholder="请输入客户号"></c-input> <c-input
</el-form-item> v-model="model.recpan.epty.extkey"
</c-col> maxlength="24"
placeholder="请输入客户号"
<c-col :span="12"> ></c-input>
<c-button size="small" type="primary" @click="onEptyPtyget">
查询
</c-button>
</c-col>
<c-col :span="12">
<el-form-item label="组织机构'码" prop="recpan.epty.juscod">
<c-input v-model="model.recpan.epty.juscod" maxlength="10" placeholder="请输入组织机构'码"></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="12"> <c-col :span="24">
<el-form-item label="外汇许可证号" prop="recpan.epty.whzno"> <el-form-item label="组织机构代码" prop="recpan.epty.juscod">
<c-input v-model="model.recpan.epty.whzno" maxlength="50" placeholder="请输入外汇许可证号"></c-input> <c-input
v-model="model.recpan.epty.juscod"
maxlength="10"
placeholder="请输入组织机构'码"
></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col>
<c-col :span="12">
<c-col :span="11" :offset="1">
<c-col :span="24">
<el-form-item label="客户名称" prop="recpan.epty.ptynam"> <el-form-item label="客户名称" prop="recpan.epty.ptynam">
<c-input v-model="model.recpan.epty.ptynam" maxlength="100" placeholder="请输入客户名称"></c-input> <c-input
v-model="model.recpan.epty.ptynam"
maxlength="100"
placeholder="请输入客户名称"
></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="24">
<c-col :span="12"> <el-form-item label="外汇许可证号" prop="recpan.epty.whzno">
<el-form-item label="ECIF pty info" prop="recpan.epty.eptystream"> <c-input
<c-input v-model="model.recpan.epty.eptystream" placeholder="请输入ECIF pty info"></c-input> v-model="model.recpan.epty.whzno"
maxlength="50"
placeholder="请输入外汇许可证号"
></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="24">
<c-col :span="12"> <c-button
<c-button size="small" type="primary" @click="onEptyPtyext"> size="small"
&Exit type="primary"
@click="onEptyPtyget"
style="float: right"
>
查询
</c-button> </c-button>
</c-col> </c-col>
</c-col>
<c-col :span="24">
<c-istream-table :list="trnData.data" :columns="trnData.columns">
</c-istream-table>
</c-col>
</div> </div>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable";
import Event from "~/model/Dbipty/Event" import Event from "~/model/Dbipty/Event";
export default { export default {
inject: ['root'], inject: ["root"],
props:["model","codes"], props: ["model", "codes"],
mixins: [commonProcess], mixins: [commonProcess],
data(){ data() {
return { return {
trnData: {
} columns: [
}, '0 1 "客户号" 80 1 20:2 1',
methods:{...Event}, '1 2 "客户类别" 80 1 20:2 1 TransKhTyp',
created:function(){ '2 3 "客户名称" 130 1 20:0 1',
'3 4 "英文名称" 100 1 20:0 1',
} '4 5 "所属国家地区代码" 100 1 20:2 1',
} '5 6 "组织机构代码" 80 1 20:2 1',
'6 7 "组织机构代码有效日期" 80 1 20:2 1',
'7 8 "营业执照号" 80 1 20:2 1',
'8 9 "外汇许可证号" 80 1 20:2 1 TransIf',
'9 10 "企业外管代码" 100 1 20:2 1 TransIf',
'10 11 "进出口经营权许可证书" 100 1 20:2 1',
'11 12 "是否自贸区客户" 80 1 20:2 1 TransIf',
'12 13 "是否正式客户" 80 1 20:2 1 TransIf',
'13 14 "所属地区代码" 80 1 20:2 1',
'14 15 "角色的ECIF客户号" 80 1 20:2 1',
'15 16 "是否为光大集团股东客户" 80 1 20:2 1 TransIf',
'16 17 "是否为光大集团关联单位" 80 1 20:2 1 TransIf',
'17 18 "客户状态" 80 1 20:2 1 TransKhSta',
'18 19 "是否为NRA账户" 80 1 20:2 1 TransIf',
'19 20 "Swift编号" 80 1 20:2 1 TransIf',
'20 21 "统一社会信用代码" 130 1 20:2 1 TransIf',
'21 22 "金融机构类型" 180 1 20:2 1 TransFinOrg',
],
data: [],
},
};
},
methods: { ...Event },
created: function () {},
};
</script> </script>
<style> <style>
</style> </style>
<!-- <c-col :span="12">
<el-form-item label="ECIF pty info" prop="recpan.epty.eptystream">
<c-input v-model="model.recpan.epty.eptystream" placeholder="请输入ECIF pty info"></c-input>
</el-form-item>
</c-col> -->
<!-- <c-col :span="12">
<c-button size="small" type="primary" @click="onEptyPtyext">
&Exit
</c-button>
</c-col> -->
\ No newline at end of file
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<c-col :span="11">
<c-col :span="12"> <c-col :span="24">
<span v-text="model.recpan.ptyinf.labinftxt" data-path=".recpan.ptyinf.labinftxt" > </span> <el-form-item label="LABINFTXT" prop="recpan.ptyinf.oit.inftxt">
</c-col> <c-input
type="textarea"
<c-col :span="12"> v-model="model.recpan.ptyinf.oit.inftxt"
<el-form-item label="Infotext" prop="recpan.ptyinf.oit.inftxt"> maxlength="60"
<c-input type="textarea" v-model="model.recpan.ptyinf.oit.inftxt" maxlength="60" show-word-limit placeholder="请输入Infotext" ></c-input> show-word-limit
</el-form-item> placeholder="请输入Infotext"
</c-col> disabled
></c-input>
<c-col :span="12">
<el-form-item label="Infotext Level" prop="recpan.ptyinf.oit.inflev">
<c-select v-model="model.recpan.ptyinf.oit.inflev" style="width:100%" placeholder="请选择Infotext Level">
</c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="12"> <c-col :span="24">
<span v-text="model.recpan.ptystp.labinftxt" data-path=".recpan.ptystp.labinftxt" > </span> <el-form-item label="Display Type" prop="recpan.ptyinf.oit.inflev">
</c-col> <c-select
v-model="model.recpan.ptyinf.oit.inflev"
<c-col :span="12"> style="width: 100%"
<el-form-item label="Infotext" prop="recpan.ptystp.oit.inftxt"> placeholder="请选择Infotext Level"
<c-input type="textarea" v-model="model.recpan.ptystp.oit.inftxt" maxlength="60" show-word-limit placeholder="请输入Infotext" ></c-input> :code="codes.inflev"
>
</c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="12"> </c-col>
<el-form-item label="Infotext Level" prop="recpan.ptystp.oit.inflev">
<c-select v-model="model.recpan.ptystp.oit.inflev" style="width:100%" placeholder="请选择Infotext Level">
</c-select> <c-col :span="11" :offset="1">
<c-col :span="24">
<el-form-item label="LABINFTXT" prop="recpan.ptystp.oit.inftxt">
<c-input
type="textarea"
v-model="model.recpan.ptystp.oit.inftxt"
maxlength="60"
show-word-limit
placeholder="请输入Infotext"
disabled
></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="Display Type" prop="recpan.ptystp.oit.inflev">
<c-select
v-model="model.recpan.ptystp.oit.inflev"
style="width: 100%"
placeholder="请选择Infotext Level"
:code="codes.inflev"
>
</c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col>
<!-- <c-col :span="12">
<span v-text="model.recpan.ptyinf.labinftxt" data-path=".recpan.ptyinf.labinftxt" > </span>
</c-col> -->
<!-- <c-col :span="12">
<span v-text="model.recpan.ptystp.labinftxt" data-path=".recpan.ptystp.labinftxt" > </span>
</c-col> -->
</div> </div>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable";
import Event from "~/model/Dbipty/Event" import Event from "~/model/Dbipty/Event";
export default { export default {
inject: ['root'], inject: ["root"],
props:["model","codes"], props: ["model", "codes"],
mixins: [commonProcess], mixins: [commonProcess],
data(){ data() {
return { return {};
},
} methods: { ...Event },
}, created: function () {},
methods:{...Event}, };
created:function(){
}
}
</script> </script>
<style> <style>
</style> </style>
...@@ -54,6 +54,9 @@ ...@@ -54,6 +54,9 @@
<el-tab-pane label="ECIF客户信息" name="ptyp2"> <el-tab-pane label="ECIF客户信息" name="ptyp2">
<m-ptyp2 :model="model" :codes="codes" /> <m-ptyp2 :model="model" :codes="codes" />
</el-tab-pane> </el-tab-pane>
<c-grid-ety-prompt-dialog ref="etyDialog" :promptData="promptData" v-on:select-ety="selectEty">
</c-grid-ety-prompt-dialog>
</c-tabs> </c-tabs>
</el-form> </el-form>
</div> </div>
...@@ -108,12 +111,10 @@ export default { ...@@ -108,12 +111,10 @@ export default {
}; };
}, },
methods: { methods: {
tabClick(tab) { // tabClick(tab) {
this.tabClick(tab); // this.tabClick();
/**
* do it yourself // }
**/
},
}, },
created: async function () { created: async function () {
console.log("进入dbipty交易"); console.log("进入dbipty交易");
......
...@@ -13,7 +13,9 @@ ...@@ -13,7 +13,9 @@
<el-table-column <el-table-column
label="Key" label="Key"
width="auto" width="auto"
prop="extkey"></el-table-column> prop="extkey"
sortable
></el-table-column>
<el-table-column <el-table-column
label="Address" label="Address"
width="auto" width="auto"
......
...@@ -150,7 +150,7 @@ ...@@ -150,7 +150,7 @@
size="small" size="small"
type="primary" type="primary"
@click="onExcel" @click="onExcel"
style="float: right; margin-right: 10px" style="float: right"
> >
导出Excel 导出Excel
</c-button> </c-button>
......
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<c-col :span="8" style="height: 24px" :pull="1"> <c-col :span="8" style="height: 24px" >
<el-form-item label="Contact Persons" class="messageLabel"> <el-form-item label="Contact Persons" class="messageLabel">
</el-form-item> </el-form-item>
</c-col> </c-col>
......
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<c-col :span="8" style="height: 24px" > <c-col :span="8" style="height: 24px" >
<el-form-item label="Authentication of Address" class="messageLabel"> <el-form-item label="Authentication of Address" class="messageLabel" label-width="200px">
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-table :border="true" :list="data" ref="table" <c-table :border="true" :list="data" ref="table"
......
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
<c-input <c-input
v-model="model.ptysea.extkey" v-model="model.ptysea.extkey"
placeholder="请输入" placeholder="请输入"
disabled
></c-input> ></c-input>
<template slot="footer"> <template slot="footer">
...@@ -20,11 +21,12 @@ ...@@ -20,11 +21,12 @@
size="small" size="small"
type="primary" type="primary"
@click="onSeainf" @click="onSeainf"
disabled
> >
<span style="font-family: '宋体'; font-weight: bold">i</span> <span style="font-family: '宋体'; font-weight: bold">i</span>
</c-button> </c-button>
<c-button size="small" type="primary" @click="onRecpanGetpty"> <c-button size="small" type="primary" @click="onRecpanGetpty" disabled>
获取 获取
</c-button> </c-button>
</template> </template>
...@@ -37,9 +39,10 @@ ...@@ -37,9 +39,10 @@
v-model="model.recgrp.rec.juscod" v-model="model.recgrp.rec.juscod"
maxlength="10" maxlength="10"
placeholder="请输入组织机构代码" placeholder="请输入组织机构代码"
disabled
></c-input> ></c-input>
<template slot="footer"> <template slot="footer">
<c-checkbox v-model="model.recgrp.rec.dshflg" <c-checkbox v-model="model.recgrp.rec.dshflg" disabled
>是否电商</c-checkbox >是否电商</c-checkbox
> >
</template> </template>
...@@ -47,7 +50,7 @@ ...@@ -47,7 +50,7 @@
</el-form-item> </el-form-item>
<el-form-item label="Type"> <el-form-item label="Type">
<el-radio-group v-model="radio"> <el-radio-group v-model="radio" disabled>
<el-radio :label="0" v-model="model.seatypb">Bank</el-radio> <el-radio :label="0" v-model="model.seatypb">Bank</el-radio>
<el-radio :label="1" v-model="model.seatypc">Client</el-radio> <el-radio :label="1" v-model="model.seatypc">Client</el-radio>
<el-radio :label="2" v-model="model.seatypa">Own Address</el-radio> <el-radio :label="2" v-model="model.seatypa">Own Address</el-radio>
...@@ -56,11 +59,12 @@ ...@@ -56,11 +59,12 @@
</el-radio-group> </el-radio-group>
</el-form-item> </el-form-item>
<el-form-item label="Name 1" prop="recgrp.adrmaa.nam1"> <el-form-item label="Name 1" prop="recgrp.adrmaa.nam1" >
<c-input <c-input
v-model="model.recgrp.adrmaa.nam1" v-model="model.recgrp.adrmaa.nam1"
maxlength="35" maxlength="35"
placeholder="请输入Name 1/SWIFT Line 1" placeholder="请输入Name 1/SWIFT Line 1"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -69,6 +73,7 @@ ...@@ -69,6 +73,7 @@
v-model="model.recgrp.adrmaa.nam2" v-model="model.recgrp.adrmaa.nam2"
maxlength="35" maxlength="35"
placeholder="请输入Name 2/SWIFT Line 2" placeholder="请输入Name 2/SWIFT Line 2"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -76,7 +81,7 @@ ...@@ -76,7 +81,7 @@
<c-input <c-input
v-model="model.recgrp.adrmaa.nam3" v-model="model.recgrp.adrmaa.nam3"
maxlength="35" maxlength="35"
placeholder="请输入Name 3" placeholder="请输入Name 3" disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -84,7 +89,7 @@ ...@@ -84,7 +89,7 @@
<c-input <c-input
v-model="model.recgrp.adrmaa.str1" v-model="model.recgrp.adrmaa.str1"
maxlength="35" maxlength="35"
placeholder="请输入Street/SWIFT Line 3" placeholder="请输入Street/SWIFT Line 3" disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -92,7 +97,7 @@ ...@@ -92,7 +97,7 @@
<c-input <c-input
v-model="model.recgrp.adrmaa.str2" v-model="model.recgrp.adrmaa.str2"
maxlength="35" maxlength="35"
placeholder="请输入Optional Second Line of Street" placeholder="请输入Optional Second Line of Street" disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
<c-col :sapn="24"> <c-col :sapn="24">
...@@ -101,7 +106,7 @@ ...@@ -101,7 +106,7 @@
<c-input <c-input
v-model="model.recgrp.adrmaa.loczip" v-model="model.recgrp.adrmaa.loczip"
maxlength="10" maxlength="10"
placeholder="请输入ZIP Code/First Part of SWIFT Line 4" placeholder="请输入ZIP Code/First Part of SWIFT Line 4" disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -111,6 +116,7 @@ ...@@ -111,6 +116,7 @@
v-model="model.recgrp.adrmaa.loctxt" v-model="model.recgrp.adrmaa.loctxt"
maxlength="25" maxlength="25"
placeholder="请输入Textpart of City/Second Part of SWIFT Line 4" placeholder="请输入Textpart of City/Second Part of SWIFT Line 4"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -121,6 +127,7 @@ ...@@ -121,6 +127,7 @@
v-model="model.recgrp.adrmaa.loc2" v-model="model.recgrp.adrmaa.loc2"
maxlength="35" maxlength="35"
placeholder="请输入Optional Second Line of City" placeholder="请输入Optional Second Line of City"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -130,6 +137,7 @@ ...@@ -130,6 +137,7 @@
v-model="model.recgrp.adrmaa.pobtxt" v-model="model.recgrp.adrmaa.pobtxt"
maxlength="25" maxlength="25"
placeholder="请输入Textpart of City Used when Addressing Postbox" placeholder="请输入Textpart of City Used when Addressing Postbox"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -139,6 +147,7 @@ ...@@ -139,6 +147,7 @@
v-model="model.recgrp.adrmaa.loccty" v-model="model.recgrp.adrmaa.loccty"
style="width: 100%" style="width: 100%"
placeholder="请选择Country" placeholder="请选择Country"
disabled
> >
</c-select> </c-select>
</el-form-item> </el-form-item>
...@@ -149,6 +158,7 @@ ...@@ -149,6 +158,7 @@
v-model="model.recgrp.adrmaa.eml" v-model="model.recgrp.adrmaa.eml"
maxlength="80" maxlength="80"
placeholder="请输入eMail/Internet" placeholder="请输入eMail/Internet"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -159,12 +169,13 @@ ...@@ -159,12 +169,13 @@
v-model="model.recgrp.hbk.nam" v-model="model.recgrp.hbk.nam"
maxlength="40" maxlength="40"
placeholder="请输入External Visible Name" placeholder="请输入External Visible Name"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item> <el-form-item>
<c-checkbox v-model="model.recgrp.rec.hbkaccflg" <c-checkbox v-model="model.recgrp.rec.hbkaccflg" disabled
>Use Accounting of HouseBank</c-checkbox >Use Accounting of HouseBank</c-checkbox
> >
</el-form-item> </el-form-item>
...@@ -175,6 +186,7 @@ ...@@ -175,6 +186,7 @@
v-model="model.recgrp.rec.accusr" v-model="model.recgrp.rec.accusr"
maxlength="8" maxlength="8"
placeholder="请输入User ID of Account Officer" placeholder="请输入User ID of Account Officer"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -185,6 +197,7 @@ ...@@ -185,6 +197,7 @@
v-model="model.recpan.bchkey" v-model="model.recpan.bchkey"
style="width: 100%" style="width: 100%"
placeholder="请选择Branch Key" placeholder="请选择Branch Key"
disabled
> >
</c-select> </c-select>
</el-form-item> </el-form-item>
...@@ -195,6 +208,7 @@ ...@@ -195,6 +208,7 @@
v-model="model.recgrp.adrmaa.adr1" v-model="model.recgrp.adrmaa.adr1"
maxlength="40" maxlength="40"
placeholder="请输入Chinese Address" placeholder="请输入Chinese Address"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -205,6 +219,7 @@ ...@@ -205,6 +219,7 @@
v-model="model.recgrp.adrmaa.adr2" v-model="model.recgrp.adrmaa.adr2"
maxlength="40" maxlength="40"
placeholder="请输入" placeholder="请输入"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -215,6 +230,7 @@ ...@@ -215,6 +230,7 @@
v-model="model.recgrp.adrmaa.adr3" v-model="model.recgrp.adrmaa.adr3"
maxlength="40" maxlength="40"
placeholder="请输入" placeholder="请输入"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -224,6 +240,7 @@ ...@@ -224,6 +240,7 @@
v-model="model.recgrp.adrmaa.pobzip" v-model="model.recgrp.adrmaa.pobzip"
maxlength="10" maxlength="10"
placeholder="请输入ZIP Code Used when Addressing Postbox" placeholder="请输入ZIP Code Used when Addressing Postbox"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -236,6 +253,7 @@ ...@@ -236,6 +253,7 @@
v-model="model.recgrp.rec.nam" v-model="model.recgrp.rec.nam"
maxlength="40" maxlength="40"
placeholder="请输入Party Name" placeholder="请输入Party Name"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
<el-form-item label="Chinese name" prop="recgrp.rec.nam1"> <el-form-item label="Chinese name" prop="recgrp.rec.nam1">
...@@ -246,6 +264,7 @@ ...@@ -246,6 +264,7 @@
maxlength="50" maxlength="50"
show-word-limit show-word-limit
placeholder="请输入Chinese name" placeholder="请输入Chinese name"
disabled
></c-input> ></c-input>
<template slot="footer"> <template slot="footer">
<c-button size="small" type="primary" @click="onRecpanAltnam"> <c-button size="small" type="primary" @click="onRecpanAltnam">
...@@ -260,6 +279,7 @@ ...@@ -260,6 +279,7 @@
v-model="model.recgrp.rec.adrsta" v-model="model.recgrp.rec.adrsta"
style="width: 100%" style="width: 100%"
placeholder="请选择Address Status" placeholder="请选择Address Status"
disabled
> >
</c-select> </c-select>
</el-form-item> </el-form-item>
...@@ -270,6 +290,7 @@ ...@@ -270,6 +290,7 @@
v-model="model.recgrp.adrmaa.tel1" v-model="model.recgrp.adrmaa.tel1"
maxlength="20" maxlength="20"
placeholder="请输入Telephone 1" placeholder="请输入Telephone 1"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -278,6 +299,7 @@ ...@@ -278,6 +299,7 @@
v-model="model.recgrp.adrmaa.tel2" v-model="model.recgrp.adrmaa.tel2"
maxlength="20" maxlength="20"
placeholder="请输入Telephone 2" placeholder="请输入Telephone 2"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -288,6 +310,7 @@ ...@@ -288,6 +310,7 @@
v-model="model.recgrp.adrmaa.fax1" v-model="model.recgrp.adrmaa.fax1"
maxlength="20" maxlength="20"
placeholder="请输入Telefax 1" placeholder="请输入Telefax 1"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -296,6 +319,7 @@ ...@@ -296,6 +319,7 @@
v-model="model.recgrp.adrmaa.fax2" v-model="model.recgrp.adrmaa.fax2"
maxlength="20" maxlength="20"
placeholder="请输入Telefax 2" placeholder="请输入Telefax 2"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -305,6 +329,7 @@ ...@@ -305,6 +329,7 @@
v-model="model.recgrp.adrmaa.tlx" v-model="model.recgrp.adrmaa.tlx"
maxlength="20" maxlength="20"
placeholder="请输入Telex Number" placeholder="请输入Telex Number"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -313,6 +338,7 @@ ...@@ -313,6 +338,7 @@
v-model="model.recgrp.adrmaa.bic" v-model="model.recgrp.adrmaa.bic"
maxlength="11" maxlength="11"
placeholder="请输入BIC of Address Optional" placeholder="请输入BIC of Address Optional"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -321,6 +347,7 @@ ...@@ -321,6 +347,7 @@
v-model="model.recgrp.adrmaa.clc" v-model="model.recgrp.adrmaa.clc"
maxlength="35" maxlength="35"
placeholder="请输入Clearing Code for Banks" placeholder="请输入Clearing Code for Banks"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -329,6 +356,7 @@ ...@@ -329,6 +356,7 @@
v-model="model.recgrp.adrmaa.bid" v-model="model.recgrp.adrmaa.bid"
maxlength="35" maxlength="35"
placeholder="请输入Branch Identification Used in Option B of SWIFT Fieldtags" placeholder="请输入Branch Identification Used in Option B of SWIFT Fieldtags"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -337,6 +365,7 @@ ...@@ -337,6 +365,7 @@
v-model="model.recgrp.adrmaa.tid" v-model="model.recgrp.adrmaa.tid"
maxlength="23" maxlength="23"
placeholder="请输入TradeConnect ID" placeholder="请输入TradeConnect ID"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -345,6 +374,7 @@ ...@@ -345,6 +374,7 @@
v-model="model.recgrp.adrmaa.blz" v-model="model.recgrp.adrmaa.blz"
maxlength="8" maxlength="8"
placeholder="请输入Bankleitzahl German Clearing Code" placeholder="请输入Bankleitzahl German Clearing Code"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -353,6 +383,7 @@ ...@@ -353,6 +383,7 @@
v-model="model.recgrp.adrmaa.pob" v-model="model.recgrp.adrmaa.pob"
maxlength="35" maxlength="35"
placeholder="请输入Line with Postbox" placeholder="请输入Line with Postbox"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -363,6 +394,7 @@ ...@@ -363,6 +394,7 @@
v-model="model.recgrp.adrmaa.uil" v-model="model.recgrp.adrmaa.uil"
style="width: 100%" style="width: 100%"
placeholder="请选择 Language " placeholder="请选择 Language "
disabled
> >
</c-select> </c-select>
</c-col> </c-col>
...@@ -375,6 +407,7 @@ ...@@ -375,6 +407,7 @@
v-model="model.recgrp.adrmaa.cortyp" v-model="model.recgrp.adrmaa.cortyp"
style="width: 100%" style="width: 100%"
placeholder="Messages SWT, LET, TLX, TCO" placeholder="Messages SWT, LET, TLX, TCO"
disabled
> >
</c-select> </c-select>
</c-col> </c-col>
...@@ -386,6 +419,7 @@ ...@@ -386,6 +419,7 @@
v-model="model.recgrp.adrmaa.dpt" v-model="model.recgrp.adrmaa.dpt"
maxlength="35" maxlength="35"
placeholder="请输入Department" placeholder="请输入Department"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -395,6 +429,7 @@ ...@@ -395,6 +429,7 @@
v-model="model.recgrp.ptamaa.issbchinf" v-model="model.recgrp.ptamaa.issbchinf"
maxlength="40" maxlength="40"
placeholder="请输入Info of bank" placeholder="请输入Info of bank"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
...@@ -405,12 +440,13 @@ ...@@ -405,12 +440,13 @@
v-model="model.recgrp.heq.nam" v-model="model.recgrp.heq.nam"
maxlength="40" maxlength="40"
placeholder="请输入External Visible Name" placeholder="请输入External Visible Name"
disabled
></c-input> ></c-input>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<c-col :span="24"> <c-col :span="24">
<c-checkbox v-model="model.recgrp.rec.heqaccflg" <c-checkbox v-model="model.recgrp.rec.heqaccflg" disabled
>Use Accounting of Headquarters</c-checkbox >Use Accounting of Headquarters</c-checkbox
> >
</c-col> </c-col>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment