Cnyp.vue 2.38 KB
Newer Older
liyixun 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
<template>
  <div class="eibs-tab">
                             <!-- S0000042 : 是否报送跨境人民币2101表 -->
                  
       <c-col :span="12">
        <el-form-item :label="$t('cnybop.S0000042')" prop="cnybop.cnyflg">
            <c-select v-model="model.cnybop.cnyflg" style="width:100%" :placeholder="$t('other.please_enter')+$t('cnybop.S0000042')">
              </c-select>
        </el-form-item>
       </c-col>
                 <!-- S0000045 : 是否报送跨境人民币2107表 -->
                  
       <c-col :span="12">
        <el-form-item :label="$t('cnybop.S0000045')" prop="cnybop.traflg">
            <c-select v-model="model.cnybop.traflg" style="width:100%" :placeholder="$t('other.please_enter')+$t('cnybop.S0000045')">
              </c-select>
        </el-form-item>
       </c-col>
                 <!-- S0000077 : 是否报送跨境人民币2111表 -->
                  
       <c-col :span="12">
        <el-form-item :label="$t('cnybop.S0000077')" prop="cnybop.outflg">
            <c-select v-model="model.cnybop.outflg" style="width:100%" :placeholder="$t('other.please_enter')+$t('cnybop.S0000077')">
              </c-select>
        </el-form-item>
       </c-col>
                 <!-- S0000113 : 是否报送跨境人民币2106表 -->
                  
       <c-col :span="12">
        <el-form-item :label="$t('cnybop.S0000113')" prop="cnybop.libflg">
            <c-select v-model="model.cnybop.libflg" style="width:100%" :placeholder="$t('other.please_enter')+$t('cnybop.S0000113')">
              </c-select>
        </el-form-item>
       </c-col>
                 <!-- S0000142 : 是否报送跨境人民币2122表 -->
                  
       <c-col :span="12">
        <el-form-item :label="$t('cnybop.S0000142')" prop="cnybop.vouflg">
            <c-select v-model="model.cnybop.vouflg" style="width:100%" :placeholder="$t('other.please_enter')+$t('cnybop.S0000142')">
              </c-select>
        </el-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/Bttset/Event"

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

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

    }
}
</script>
<style>

</style>