Dxzfp.vue 2.22 KB
Newer Older
panziyi committed
1
<template>
hewei committed
2
  <div class="eibs">
panziyi committed
3 4
                             <!-- SG000148 : 收款账号 -->

hewei committed
5
    <c-col :span="12" style="padding-right: 20px">
panziyi committed
6 7 8 9 10 11 12 13 14 15 16 17 18
       <c-col :span="24">
        <c-form-item label="收款人账号" prop="trtcre.trdgrp.rec.recaccount">
            <c-input  v-model="model.trtcre.trdgrp.rec.recaccount" maxlength="35"  placeholder=""></c-input>
        </c-form-item>
       </c-col>
                 <!-- SG000152 : 收款人名称 -->
                  
       <c-col :span="24">
        <c-form-item label="收款人名称" prop="trtcre.trtp.recname">
            <c-input  v-model="model.trtcre.trtp.recname" maxlength="80"  placeholder=""></c-input>
        </c-form-item>
       </c-col>
                  
hewei committed
19
       <c-col :span="24">
panziyi committed
20
        <c-form-item label="收款人国别代码" prop="trtcre.trdgrp.rec.reccountrycode">
hewei committed
21
          <c-fullbox>
panziyi committed
22
            <c-input  v-model="model.trtcre.trdgrp.rec.reccountrycode" maxlength="3"  placeholder=""
hewei committed
23
                      @keyup.enter.native="showGridPromptDialog('trtcre.trdgrp.rec.reccountrycode')"
panziyi committed
24
            ></c-input>
hewei committed
25 26 27 28 29
            <template slot="footer">
              <c-button size="small" type="primary" icon="el-icon-search" @click="onRecctySelbut1">
              </c-button>
            </template>
          </c-fullbox>
panziyi committed
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
        </c-form-item>
       </c-col>
                 <!-- SG000150 : 收款人国别代码 -->
                 <!-- SG000151 : 收款人国内地区码 -->
                  
       <c-col :span="24">
        <c-form-item label="收款人国内地区码" prop="trtcre.trdgrp.rec.recdistrictcode">
            <c-input  v-model="model.trtcre.trdgrp.rec.recdistrictcode" maxlength="6"  placeholder=""></c-input>
        </c-form-item>
       </c-col>
       </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"
hewei committed
48
import T23E from "@/widget/SwfMessage/Tags/T23E";
panziyi committed
49 50

export default {
hewei committed
51 52
  components: {T23E},
  inject: ['root'],
panziyi committed
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

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

    }
}
</script>
<style>

</style>