Opnp.vue 1.71 KB
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
<template>
  <div class="eibs-tab">
    <c-col :span="12" style="padding-right: 20px;">
      <c-col :span="24">
        <c-col :span="model.nidgrp.cbs.max.cur == 'CNY'? 20 : 24">
          <el-form-item :label="$t('nitopn.对外担保类型')" prop="nidgrp.rec.cfaguatyp">
            <c-select
              :disabled="model.nidgrp.rec.fingua == 'N' || model.nidgrp.rec.fingua == ''"
              v-model="model.nidgrp.rec.cfaguatyp"
							@change="calcName"
              :style="model.nidgrp.cbs.max.cur == 'CNY'? 'width: 90%' :'width: 100%'"
              placeholder="请选择对外担保类型"
              dbCode="CFAGUT"
            >
            </c-select>
          </el-form-item>
        </c-col>
        <c-col :span="4" class="centerLable"  v-if="model.nidgrp.cbs.max.cur == 'CNY'">
          <c-checkbox v-model="model.nidgrp.rec.cmtflg" @change="defaultVouflgN1000">跨境人民币保函</c-checkbox>
        </c-col>
      </c-col>
    </c-col>

    <c-col :span="12" style="padding-left: 20px;">
      <c-col :span="24">
        <el-form-item :label="$t('nitopn.是否对外担保')" prop="nidgrp.rec.fingua">
          <c-select
            v-model="model.nidgrp.rec.fingua"
            style="width: 100%"
            placeholder="请选择是否对外担保"
            dbCode="fingua"
            @change="handleChangeFingua"
          >
          </c-select>
        </el-form-item>
      </c-col>
    </c-col>
  </div>
</template>
<script>
import event from "../event";
import Default from "../model/default";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event,Default],
  data() {
    return {};
  },
  computed: {},
  methods: {
  },
  created: function() {}
};
</script>
<style>
</style>