Commit 18b96589 by SunJie

ditsel

parent 7f19c1af
......@@ -20,6 +20,7 @@
maxlength="16"
placeholder="请输入External Key of Address"
@keyup.enter.native="advPtsExtkeyEvent"
disabled
></c-input>
</el-form-item>
<el-form-item label="通知行联行行号" prop="didgrp.adv.pts.bankno">
......@@ -28,6 +29,7 @@
maxlength="20"
placeholder="请输入Number of bank"
@keyup.enter.native="advPtsBanknoEvent"
disabled
></c-input>
</el-form-item>
......
......@@ -59,13 +59,13 @@
</el-col>
</el-col>
<el-col :span="12">
<!-- <el-col :span="12">
<span
v-text="model.trnmod.trndoc.doclbl"
data-path=".trnmod.trndoc.doclbl"
>
</span>
</el-col>
</el-col> -->
<el-col :offset="8" :span="4">
<c-checkbox v-model="model.trnmod.trndoc.shwinc"
......
<template>
<div class="eibs-tab">
<el-col >
<el-form-item>
<span>Instructions to Paying/Accepting/Negotiating Bank</span>
</el-form-item>
</el-col>
<el-col :span="14">
<el-form-item
label="Instructions to Paying/Accepting/Negotiating Bank"
>
<el-form-item label="Original Text">
<c-input
type="textarea"
v-model="model.didgrp.blk.insbnk"
......
......@@ -99,6 +99,7 @@
v-model="model.didgrp.cbs.nom1.amt"
style="text-align: left; width: 100%"
placeholder="请输入信用证金额"
disabled
></c-input>
</el-form-item>
</el-col>
......@@ -118,6 +119,7 @@
v-model="model.didgrp.rec.nomtop"
maxlength="9"
placeholder="请输入Amount Tolerance - Positive"
disabled
></c-input>
</el-form-item>
</el-col>
......@@ -132,6 +134,7 @@
v-model="model.didgrp.rec.nomton"
maxlength="9"
placeholder="请输入Amount Tolerance - Negative"
disabled
></c-input>
</el-form-item>
</el-col>
......@@ -215,6 +218,7 @@
v-model="model.didgrp.rec.opndat"
style="width: 45%"
placeholder="请选择Date L/C Opened/Issued"
disabled
></c-date-picker>
</el-form-item>
</el-col>
......@@ -226,6 +230,7 @@
value-format="yyyy-MM-dd"
style="width: 100%"
placeholder="请选择Shipment Date"
disabled
></c-date-picker>
</el-form-item>
<el-form-item v-if="model.didgrp.rec.mytype == 'F'" label="最迟服务提供日" prop="didgrp.rec.shpdat">
......@@ -255,6 +260,7 @@
value-format="yyyy-MM-dd"
style="width: 100%"
placeholder="请选择Date of Expiry"
disabled
></c-date-picker>
</el-form-item>
</el-col>
......@@ -276,6 +282,7 @@
v-model="model.didgrp.rec.elcflg"
style="width: 100%"
placeholder="请选择是否通过电证系统"
disabled
>
<el-option
v-for="item in codes.elcflg"
......@@ -294,6 +301,7 @@
style="width: 100%"
disabled
placeholder="请选择开证类型"
>
<el-option
v-for="item in codes.dkflg"
......@@ -313,7 +321,7 @@
<c-input
v-model="model.didgrp.rec.idcode"
maxlength="18"
disabled
placeholder="请输入申请人统一社会信用代码"
></c-input>
</el-form-item>
......@@ -390,6 +398,7 @@
maxlength="16"
placeholder="请输入External Key of Address"
@keyup.enter.native="aplExtkeyEvent"
disabled
></c-input>
</el-form-item>
</el-col>
......@@ -580,6 +589,7 @@
maxlength="35"
show-word-limit
placeholder="请输入名称"
disabled
></c-input>
</el-form-item>
</el-col>
......@@ -617,6 +627,7 @@
maxlength="35"
show-word-limit
placeholder="请输入地址"
disabled
></c-input>
</el-form-item>
</el-col>
......@@ -677,7 +688,7 @@
maxlength="35"
show-word-limit
placeholder="请输入联行名称 电证用"
:disabled="this.jigomcFlag"
disabled
></c-input>
</el-form-item>
</el-col>
......
This source diff could not be displayed because it is too large. You can view the blob instead.
<template>
<el-table
:data="data"
border
stripe
:show-header="false"
:cell-style="cellSttyle"
>
<el-table-column prop="title" align="center">
<template slot-scope="scope">
<el-link
:disabled="scope.row.disabled"
:href="scope.row.url"
v-if="scope.row.title"
>{{ scope.row.title }}</el-link
>
</template>
</el-table-column>
</el-table>
</template>
<script>
export default {
props:["data"],
data() {
return {
cellSttyle: { height: "25px" },
};
},
};
</script>
<style>
a {
text-decoration-line: none;
color: #606266;
}
a:hover {
color: blue;
}
</style>
\ No newline at end of file
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