Cfap.vue 3.47 KB
Newer Older
wanggang_yf 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
<template>
  <div class="eibs-tab">
                             <!-- S0000008 : 数据采集标志 -->
                  
       <c-col :span="12">
        <el-form-item :label="$t('cfabpt.S0000008')" prop="cfabpt.cfaflg">
            <c-select v-model="model.cfabpt.cfaflg" style="width:100%" :placeholder="$t('other.please_enter')+$t('cfabpt.S0000008')">
              </c-select>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.cfabpt.basflg">{{$t('cfabpt.CG000006')}}</c-checkbox>
       </c-col>
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.cfabpt.dclflg">{{$t('cfabpt.CG000007')}}</c-checkbox>
       </c-col>
                 <!-- S0000009 : 地区机构号 -->
                  
       <c-col :span="12">
        <el-form-item :label="$t('cfabpt.S0000009')" prop="cfabpt.ownextkey">
            <c-select v-model="model.cfabpt.ownextkey" style="width:100%" :placeholder="$t('other.please_enter')+$t('cfabpt.S0000009')">
              </c-select>
        </el-form-item>
       </c-col>
                 <!-- S0000017 : 是否外保内贷 -->
                  
       <c-col :span="12">
        <el-form-item :label="$t('cfabpt.S0000017')" prop="cfabpt.cdaflg">
            <c-select v-model="model.cfabpt.cdaflg" style="width:100%" :placeholder="$t('other.please_enter')+$t('cfabpt.S0000017')">
              </c-select>
        </el-form-item>
       </c-col>
                 <!-- S0000016 : 资金用途 -->
                  
       <c-col :span="12">
        <el-form-item :label="$t('cfabpt.S0000016')" prop="cfabpt.cda.useofunds">
            <c-select v-model="model.cfabpt.cda.useofunds" style="width:100%" :placeholder="$t('other.please_enter')+$t('cfabpt.S0000016')">
              </c-select>
        </el-form-item>
       </c-col>
                 <!-- S0000014 : 中资企业境外担保项下境内贷款额度币种 -->
                  
       <c-col :span="12">
        <el-form-item :label="$t('cfabpt.S0000014')" prop="cfabpt.cda.cfeogudcurr">
            <c-select v-model="model.cfabpt.cda.cfeogudcurr" style="width:100%" :placeholder="$t('other.please_enter')+$t('cfabpt.S0000014')">
              </c-select>
        </el-form-item>
       </c-col>
                 <!-- S0000015 : 中资企业境外担保项下境内贷款额度金额 -->
                  
       <c-col :span="12">
        <c-form-item :label="$t('cfabpt.S0000015')" prop="cfabpt.cda.cfeogudamount">
            <c-input  v-model="model.cfabpt.cda.cfeogudamount"  :placeholder="$t('other.please_enter')+$t('cfabpt.S0000015')"></c-input>
        </c-form-item>
       </c-col>
                 <!-- S0000013 : 中资企业境外担保项下贷款业务批准文件号 -->
                  
       <c-col :span="12">
        <c-form-item :label="$t('cfabpt.S0000013')" prop="cfabpt.cda.cfeogudad">
            <c-input type="textarea" v-model="model.cfabpt.cda.cfeogudad" maxlength="32" show-word-limit :placeholder="$t('other.please_enter')+$t('cfabpt.S0000013')" ></c-input>
        </c-form-item>
        </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Bptset/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>