Commit a7e2500f by liaoxing

码表显示问题

parent 08a31462
...@@ -7286,7 +7286,12 @@ const CodeTable = { ...@@ -7286,7 +7286,12 @@ const CodeTable = {
{ label: "保函(标准)", value: "STD" }, { label: "保函(标准)", value: "STD" },
{ label: "见索即付保函", value: "DGAR" }, { label: "见索即付保函", value: "DGAR" },
{ label: "备用信用证", value: "STBY" }, { label: "备用信用证", value: "STBY" },
{ label: "其他", value: "DEPU" }, { label: "其他", value: "UNDK" },
],
legfrm3: [
{ label: "见索即付保函", value: "DGAR" },
{ label: "备用信用证", value: "STBY" },
{ label: "Undertaking (for example guarantee, surety)", value: "DEPU" },
], ],
deloric: [ deloric: [
{ label: "用集合", value: "COLL" }, { label: "用集合", value: "COLL" },
......
...@@ -30,6 +30,7 @@ export default class Gitfre{ ...@@ -30,6 +30,7 @@ export default class Gitfre{
gartyp:"", // Type of Undertaking .gidgrp.rec.gartyp gartyp:"", // Type of Undertaking .gidgrp.rec.gartyp
expdat:"", // Valid until .gidgrp.rec.expdat expdat:"", // Valid until .gidgrp.rec.expdat
liadat:"", // Liability until .gidgrp.rec.liadat liadat:"", // Liability until .gidgrp.rec.liadat
purpos:"",
}, },
cbs:{ cbs:{
max:{ max:{
......
...@@ -128,13 +128,14 @@ ...@@ -128,13 +128,14 @@
<c-col :span="24"> <c-col :span="24">
<el-form-item label="目的信息" prop="gidgrp.rec.purpos"> <el-form-item label="目的信息" prop="gidgrp.rec.purpos">
<c-input <c-select
disabled disabled
v-model="model.gidgrp.rec.purpos" v-model="model.gidgrp.rec.purpos"
style="width: 100%" style="width: 100%"
placeholder="请选择目的信息" placeholder="请选择目的信息"
:code="codes.purpos"
> >
</c-input> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -502,7 +503,9 @@ export default { ...@@ -502,7 +503,9 @@ export default {
props: ["model", "codes"], props: ["model", "codes"],
mixins: [commonProcess], mixins: [commonProcess],
data() { data() {
return {}; return {
codes:{...CodeTable}
};
}, },
methods: { ...Event, methods: { ...Event,
async flg() { async flg() {
......
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