Commit 221dfd12 by liaoxing

码表显示问题

parent 04b695ca
...@@ -33,6 +33,8 @@ export default class Gitatt{ ...@@ -33,6 +33,8 @@ export default class Gitatt{
purpos:"", purpos:"",
exptyp:"", exptyp:"",
liatypc:"", liatypc:"",
purposin: "",
purpos: "",
}, },
cbs:{ cbs:{
max:{ max:{
......
...@@ -29,6 +29,8 @@ export default class Gitfee { ...@@ -29,6 +29,8 @@ export default class Gitfee {
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
purposin: "",
purpos: "",
}, },
cbs: { cbs: {
max: { max: {
......
...@@ -279,7 +279,9 @@ export default { ...@@ -279,7 +279,9 @@ export default {
mixins: [commonProcess], mixins: [commonProcess],
data(){ data(){
return { return {
codes: {
...CodeTable,
},
} }
}, },
methods:{...Event}, methods:{...Event},
......
...@@ -69,7 +69,7 @@ ...@@ -69,7 +69,7 @@
<c-col :span="24"> <c-col :span="24">
<el-form-item label="保函种类" prop="gidgrp.rec.gartyp"> <el-form-item label="保函种类" prop="gidgrp.rec.gartyp">
<c-select disabled v-model="model.gidgrp.rec.gartyp" style="width: 100%" placeholder="请选择保函种类" <c-select disabled v-model="model.gidgrp.rec.gartyp" style="width: 100%" placeholder="请选择保函种类"
:code="codes.typgar2"> :code="codes.typgar">
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -139,13 +139,18 @@ ...@@ -139,13 +139,18 @@
<script> <script>
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import Event from "~/model/Gitfee/Event" import Event from "~/model/Gitfee/Event"
import CodeTable from "~/config/CodeTable";
export default { export default {
inject: ['root'], inject: ['root'],
props: ["model", "codes"], props: ["model", "codes"],
mixins: [commonProcess], mixins: [commonProcess],
data() { data() {
return {} return {
codes: {
...CodeTable,
},
}
}, },
methods: {...Event}, methods: {...Event},
created: function () { created: function () {
......
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