Rskpan.vue 3.34 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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
<template>
  <div class="eibs-tab">
    <c-col :span="12" style="padding-right: 20px">
      <!-- S0000002 : 风险分类 -->

      <c-col :span="24">
        <el-form-item label="风险分类" prop="rskmod.fentyp">
          <c-select
            v-model="model.rskmod.fentyp"
            style="width: 100%"
            placeholder="请输入风险分类"
            dbCode="fentyp"
          >
          </c-select>
        </el-form-item>
      </c-col>
      <!-- S0000003 : 分类说明 -->

      <c-col :span="24">
        <el-form-item label="分类说明" prop="rskmod.inftxt">
          <c-input
            type="textarea"
            v-model="model.rskmod.inftxt"
            :rows="3"
            maxlength="30"
            show-word-limit
            placeholder="请输入分类说明"
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <el-form-item label="" prop="">
          <c-checkbox v-model="model.rskmod.cdaflg" disabled>补录暴露分类</c-checkbox>
        </el-form-item>
      </c-col>

      <!-- S0000005 : 资金用途 -->

      <c-col :span="24">
        <el-form-item label="资金用途" prop="rskmod.cda.useofunds">
          <c-select
            v-model="model.rskmod.cda.useofunds"
            style="width: 100%"
            dbCode="useofunds"
            placeholder="请输入资金用途"
            disabled
          >
          </c-select>
        </el-form-item>
      </c-col>
      <!-- S0000007 : 中资企业境外担保项下 -->

      <c-col :span="24">
        <el-form-item
          label="中资企业境外担保项下境内贷款额度币种"
          prop="rskmod.cda.cfeogudcurr"
        >
          <c-select
            v-model="model.rskmod.cda.cfeogudcurr"
            style="width: 100%"
            dbCode="curtxt"
            placeholder="请输入币种"
            disabled
          >
          </c-select>
        </el-form-item>
      </c-col>
      <!-- S0000009 : 境内贷款额度币种 -->
      <!-- S0000008 : 中资企业境外担保项下 -->

      <c-col :span="24">
        <el-form-item
          label="中资企业境外担保项下境内贷款额度金额"
          prop="rskmod.cda.cfeogudamount"
        >
          <c-input-currency
          :currency="model.rskmod.cda.cfeogudamount"
            v-model="model.rskmod.cda.cfeogudamount"
            placeholder="请输入金额"
            disabled
          ></c-input-currency>
        </el-form-item>
      </c-col>
      <!-- S0000010 : 境内贷款额度金额 -->
      <!-- S0000006 : 中资企业境外担保项下 -->

      <c-col :span="24">
        <el-form-item
          label="中资企业境外担保项下贷款业务批准文件号"
          prop="rskmod.cda.cfeogudad"
        >
          <c-input
            type="textarea"
            v-model="model.rskmod.cda.cfeogudad"
            :rows="3"
            maxlength="32"
            show-word-limit
            placeholder="请输入批准文件号"
            disabled
          ></c-input>
        </el-form-item>
      </c-col>
      <!-- S0000011 : 贷款业务批准文件号 -->
    </c-col>
  </div>
</template>
<script>
import event from "../event";

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