Docpre.vue 4.22 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
<template>
  <div class="eibs-tab">
                             <!-- S0000065 : 不符点 -->
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.brdgrp.rec.igndisflg">{{$t('brtp.CF000074')}}</c-checkbox>
       </c-col>
                  
       <c-col :span="12">
        <c-form-item :label="$t('brtp.S0000145')" prop="brdgrp.blk.docdis">
            <c-input type="textarea" v-model="model.brdgrp.blk.docdis" maxlength="50" show-word-limit :placeholder="$t('other.please_enter')+$t('brtp.S0000145')" ></c-input>
        </c-form-item>
        </c-col>
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.brdgrp.blk.docdisflg">{{$t('brtp.CF000220')}}</c-checkbox>
       </c-col>
                 <!-- SF000222 : 收到的通知类型 -->
                  
       <c-col :span="12">
        <el-form-item label="Type of Advice Received" prop="brdgrp.rec.advtyp">
            <c-select v-model="model.brdgrp.rec.advtyp" style="width:100%" :placeholder="$t('other.please_enter')+'Type of Advice Received'">
              </c-select>
        </el-form-item>
       </c-col>
                 <!-- S0000067 : 付款日期 -->
                  
       <c-col :span="12">
        <el-form-item :label="$t('brtp.SF000190')" prop="brdgrp.rec.totdat">
            <c-date-picker type="date"  v-model="model.brdgrp.rec.totdat" style="width:100%"  :placeholder="$t('other.please_enter')+$t('brtp.SF000190')"></c-date-picker>
        </el-form-item>
       </c-col>
                 <!-- S0000064 : 注释和结论 -->
                 <!-- SF000163 : Discrepancy Advice Dated -->
                  
       <c-col :span="12">
        <el-form-item :label="$t('brtp.SF000163')" prop="brdgrp.rec.disdat">
            <c-date-picker type="date"  v-model="model.brdgrp.rec.disdat" style="width:100%"  :placeholder="$t('other.please_enter')+$t('brtp.SF000163')"></c-date-picker>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
        <c-form-item label="Comments and Conclusions" prop="brdgrp.blk.comcon">
            <c-input type="textarea" v-model="model.brdgrp.blk.comcon" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+'Comments and Conclusions'" ></c-input>
        </c-form-item>
        </c-col>
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.brdgrp.rec.approvcod">{{$t('brtp.CF000073')}}</c-checkbox>
       </c-col>
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.brtp.cre752flg">{{$t('brtp.CF000159')}}</c-checkbox>
       </c-col>
                 <!-- SF000164 : Further Identification -->
                  
       <c-col :span="12">
        <el-form-item :label="$t('brtp.SF000164')" prop="brtp.furide">
            <c-select v-model="model.brtp.furide" style="width:100%" :placeholder="$t('other.please_enter')+$t('brtp.SF000164')">
              </c-select>
        </el-form-item>
       </c-col>
                 <!-- S0000063 : 结算指示 -->
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.brtp.cre732flg">{{$t('brtp.CF000166')}}</c-checkbox>
       </c-col>
                  
       <c-col :span="12">
        <c-form-item label="Settlement Instructions BR" prop="brdgrp.blk.setinsbr">
            <c-input type="textarea" v-model="model.brdgrp.blk.setinsbr" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+'Settlement Instructions BR'" ></c-input>
        </c-form-item>
        </c-col>
                
                  
<c-col :span="12">
    <span  v-text="model.brtp.docgrdm.docdsclab"   data-path=".brtp.docgrdm.docdsclab" > </span>
</c-col>
                  
       <c-col :span="12">
        <c-form-item :label="$t('brtp.SG000242')" prop="brtp.countrycode">
            <c-input  v-model="model.brtp.countrycode" maxlength="3"  :placeholder="$t('other.please_enter')+$t('brtp.SG000242')"></c-input>
        </c-form-item>
       </c-col>
                 <!-- SG000242 : Country or Region Code -->
  </div>
</template>
<script>
import Event from '../event';

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

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

    }
}
</script>
<style>

</style>