Spcrcvp.vue 1.17 KB
Newer Older
huangxin committed
1 2 3 4
<template>
  <div class="eibs-tab">
                                               
       <c-col :span="18">
jianglong committed
5
        <el-form-item label="仅适用于指定银行的特殊付款条款" prop="lidgrp.blk.spcrcb">
6 7 8 9 10 11 12 13
            <c-input 
            disabled 
            type="textarea" 
            v-model="model.lidgrp.blk.spcrcb" 
            maxlength="52000" 
            :autosize="{ minRows: 30, maxRows: 800}"  
            show-word-limit 
            placeholder="请输入Special Payment " ></c-input>
huangxin committed
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
        </el-form-item>
        </c-col>
                  
       <c-col :span="3">
        <c-button disabled size="small" type="primary" icon="el-icon-search" @click="onSpcrcbButtxmsel">
            ...
        </c-button>
       </c-col>
                   </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Litopn/Event"

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

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

    }
}
</script>
<style>

</style>