Spcrcvp.vue 1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<template>
  <div class="eibs-tab">
                                               
       <c-col :span="18">
        <el-form-item label="Special Payment " prop="lidgrp.blk.spcrcb">
            <c-input type="textarea" v-model="model.lidgrp.blk.spcrcb" maxlength="65" :rows="30" show-word-limit placeholder="请输入Special Payment " ></c-input>
        </el-form-item>
        </c-col>
                  
       <c-col :span="3">
        <c-button size="small" type="primary" icon="el-icon-search" @click="onSpcrcbButtxmsel">
            ...
        </c-button>
       </c-col>
                   </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
19
import commonProcess from "~/mixin/commonProcess";
20 21 22 23 24 25
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Litopn/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
26
    mixins: [commonProcess],
27 28 29 30 31 32 33 34 35 36 37 38 39 40
    data(){
        return {

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

    }
}
</script>
<style>

</style>