Cips2.vue 1.91 KB
Newer Older
panziyi 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
<template>
  <div class="eibs-tab">
                             <!-- SG000227 : 收款直接参与者行号 -->
                  
       <c-col :span="12">
        <c-form-item :label="$t('trnmod.SG000227')" prop="trnmod.reconebch">
            <c-input  v-model="model.trnmod.reconebch" maxlength="35"  :placeholder="$t('other.please_enter')+$t('trnmod.SG000227')"></c-input>
        </c-form-item>
       </c-col>
                 <!-- SG000228 : 收款直接参与者名称 -->
                  
       <c-col :span="12">
        <c-form-item :label="$t('trnmod.SG000228')" prop="trnmod.reconebchnam">
            <c-input type="textarea" v-model="model.trnmod.reconebchnam" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+$t('trnmod.SG000228')" ></c-input>
        </c-form-item>
        </c-col>
                 <!-- SG000229 : 附言 -->
                  
       <c-col :span="12">
        <c-form-item label="附言" prop="trnmod.commen">
            <c-input type="textarea" v-model="model.trnmod.commen" maxlength="30" show-word-limit :placeholder="$t('other.please_enter')+'附言'" ></c-input>
        </c-form-item>
        </c-col>
                 <!-- SG000230 : 业务种类 -->
                  
       <c-col :span="12">
        <el-form-item label="业务种类" prop="trnmod.bustyp">
            <c-select v-model="model.trnmod.bustyp" style="width:100%" :placeholder="$t('other.please_enter')+'业务种类'">
              </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/Bctset/Event"

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

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

    }
}
</script>
<style>

</style>