Opnp.vue 3.96 KB
Newer Older
liyixun committed
1 2
<template>
  <div class="eibs-tab">
liyixun committed
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
    <c-col :span="12">
                      <el-form-item label="是否SWIFT格式" prop="gitp.swiftflg">
                          <c-select v-model="model.gitp.swiftflg" style="width:100%" placeholder="请选择是否SWIFT格式">
                              <el-option
                                v-for="item in codes.swiftflg"
                                :key="item.value"
                                :label="item.label"
                                :value="item.value"
                              >
                              </el-option>
                          </c-select>
                      </el-form-item>
         </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="是否对外担保" prop="gidgrp.rec.fingua">
            <c-select disabled v-model="model.gidgrp.rec.fingua" style="width:100%" placeholder="请选择是否对外担保">
              <el-option
                    v-for="item in codes.fingua"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
                  >
              </el-option>
            </c-select>
        </el-form-item>
       </c-col>
liyixun committed
30 31
                  
       <c-col :span="12">
liyixun committed
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
         <c-col :span="20">
            <el-form-item  label="对外担保类型" prop="gidgrp.rec.cfaguatyp">
                 <c-select disabled v-model="model.gidgrp.rec.cfaguatyp" style="width:90%" placeholder="请选择对外担保类型">
                    <el-option
                     v-for="item in codes.cfaguatyp"
                     :key="item.value"
                     :label="item.label"
                     :value="item.value"
                    >
                    </el-option>
                   </c-select>
                    </el-form-item>
          </c-col>
                      <c-col :span="4" class="centerLable">
                          <c-checkbox v-if="model.gidgrp.cbs.max.cur=='CNY'" disabled v-model="model.gidgrp.rec.cmtflg">跨境人民币保函</c-checkbox>
                      </c-col>
                      <!-- <c-checkbox v-if="model.gidgrp.rec.fingua=='Y'" disabled v-model="model.gidgrp.rec.cmtflg">跨境人民币保函</c-checkbox> -->
       </c-col>
                             <!-- SG001294 : 是否SWIFT格式 -->
                  
       <!-- <c-col :span="12">
liyixun committed
53 54 55 56
        <el-form-item :label="$t('gitp.SG001294')" prop="gitp.swiftflg">
            <c-select v-model="model.gitp.swiftflg" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.SG001294')">
              </c-select>
        </el-form-item>
liyixun committed
57
       </c-col> -->
liyixun committed
58 59
                 <!-- S0001304 : 是否对外担保 -->
                  
liyixun committed
60
       <!-- <c-col :span="12">
liyixun committed
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
        <el-form-item :label="$t('gitp.S0001256')" prop="gidgrp.rec.fingua">
            <c-select v-model="model.gidgrp.rec.fingua" style="width:100%" :placeholder="$t('other.please_enter')+$t('gitp.S0001256')">
              </c-select>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
        <el-form-item label="对外担保类型" prop="gidgrp.rec.cfaguatyp">
            <c-select v-model="model.gidgrp.rec.cfaguatyp" style="width:100%" :placeholder="$t('other.please_enter')+'对外担保类型'">
              </c-select>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.gidgrp.rec.cmtflg">{{$t('gitp.CG001233')}}</c-checkbox>
liyixun committed
76
       </c-col> -->
liyixun committed
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
                 <!-- S0001305 : 担保类型 -->
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Getopn/Event"

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

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

    }
}
</script>
<style>

</style>