Commit a7e2500f by liaoxing

码表显示问题

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