Rgfdet.vue 3.68 KB
Newer Older
1 2
<template>
  <div class="eibs-tab">
3 4
                                               
       <!-- <c-col :span="12">
5
        <el-form-item label="远期单据指示" prop="bfdsnd.usadet">
6
            <c-input type="textarea" v-model="model.bfdsnd.usadet" maxlength="65" show-word-limit placeholder="请输入远期单据指示" ></c-input>
7
        </el-form-item>
8 9 10 11 12 13
        </c-col>
        <c-col :span="12">
        <c-button size="small" type="primary" icon="el-icon-search" @click="onUsatxtButtxmsel">
            ...
        </c-button>
       </c-col> -->
zhoubaojian committed
14

15 16 17 18 19
        <c-col :span="24">
        <el-form-item
          label="远期单据指示"
          prop="bfdsnd.usadet"
          style="width: 100%"
zhoubaojian committed
20
        >
21 22 23 24 25 26 27 28 29 30 31 32 33 34
          <c-fullbox>
            <c-input
              type="textarea"
              v-model="model.bfdsnd.usadet"
              maxlength="65"
              show-word-limit
              placeholder="请输入远期单据指示"
              disabled
            ></c-input>
            <template slot="footer">
              <c-button
                style="margin-left: 10px; padding: 0 10px"
                size="small"
                type="primary"
35
                disabled
36 37 38 39 40 41
              >
                ...
              </c-button>
            </template>
          </c-fullbox>
        </el-form-item>
zhoubaojian committed
42
      </c-col>
43 44 45 46
                  
       
                                   
       <!-- <c-col :span="12">
47
        <el-form-item label="偿付条款" prop="bfdsnd.addphr">
48
            <c-input type="textarea" v-model="model.bfdsnd.addphr" maxlength="65" show-word-limit placeholder="请输入偿付条款" ></c-input>
49
        </el-form-item>
50 51 52 53 54 55 56
        </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary" icon="el-icon-search" @click="onRgfphrButtxmsel">
            ...
        </c-button>
       </c-col> -->
zhoubaojian committed
57

58 59 60 61 62
       <c-col :span="24">
        <el-form-item
          label="偿付条款"
          prop="bfdsnd.addphr"
          style="width: 100%"
zhoubaojian committed
63
        >
64 65 66 67 68 69 70 71 72 73 74 75 76 77
          <c-fullbox>
            <c-input
              type="textarea"
              v-model="model.bfdsnd.addphr"
              maxlength="65"
              show-word-limit
              placeholder="请输入偿付条款"
              disabled
            ></c-input>
            <template slot="footer">
              <c-button
                style="margin-left: 10px; padding: 0 10px"
                size="small"
                type="primary"
78
                disabled
79 80 81 82 83 84
              >
                ...
              </c-button>
            </template>
          </c-fullbox>
        </el-form-item>
zhoubaojian committed
85
      </c-col>
86 87
                                   
       <c-col :span="24">
88
        <el-form-item label="新受益人地址" prop="bfdsnd.newbenadr">
89
            <c-input type="textarea" v-model="model.bfdsnd.newbenadr" maxlength="150" show-word-limit placeholder="请输入新受益人地址" disabled></c-input>
90
        </el-form-item>
91 92 93
        </c-col>
                                   
       <c-col :span="24">
94
        <el-form-item label="新受益人编号" prop="bfdgrp.blk.benref">
95
            <c-input type="textarea" v-model="model.bfdgrp.blk.benref" maxlength="16" show-word-limit placeholder="请输入新受益人编号" ></c-input>
96
        </el-form-item>
97
        </c-col>
98 99 100
  </div>
</template>
<script>
101
import Api from "~/service/Api"
wangren committed
102
import commonProcess from "~/mixin/commonProcess";
103 104
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Bftsnd/Event"
105 106

export default {
107 108 109 110 111 112 113 114 115 116 117 118 119
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

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

    }
}
120 121
</script>
<style>
122

123
</style>