Spcrcvp.vue 915 Bytes
Newer Older
xionglin committed
1 2 3 4 5 6 7 8 9 10
<template>
  <div class="eibs">
                                               
       <c-col :span="18">
        <el-form-item label="仅适用于指定银行的特殊付款条件" prop="lidgrp.blk.spcrcb">
            <c-input disabled type="textarea" v-model="model.lidgrp.blk.spcrcb" maxlength="65" :rows="30" show-word-limit placeholder="请输入仅适用于指定银行的特殊付款条件" ></c-input>
        </el-form-item>
        </c-col>
                  
       <c-col :span="3">
huxi committed
11
        <c-button disabled size="small" type="primary" icon="el-icon-search">
xionglin committed
12 13 14 15 16 17
            ...
        </c-button>
       </c-col>
                   </div>
</template>
<script>
huxi committed
18
import event from "../event"
xionglin committed
19 20 21 22

export default {
    inject: ['root'],
    props:["model","codes"],
huxi committed
23
    mixins: [event],
xionglin committed
24 25 26 27
    data(){
        return {
        }
    },
huxi committed
28
    methods:{},
xionglin committed
29 30 31 32 33 34 35 36
    created:function(){

    }
}
</script>
<style>

</style>