Dorp.vue 1.05 KB
Newer Older
孟冬雪 committed
1 2
<template>
  <div class="eibs-tab">
jianglong committed
3
                             <!-- SF000251 : 单据要求 -->
4 5 6 7 8
                  
       <c-col :span="12">
        <c-form-item :label="$t('lttp.SF000251')" prop="ltdgrp.blk.lcrdoc">
            <c-input type="textarea" v-model="model.ltdgrp.blk.lcrdoc" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('lttp.SF000251')" ></c-input>
        </c-form-item>
孟冬雪 committed
9 10
        </c-col>
                  
11
       <c-col :span="12">
孟冬雪 committed
12
        <c-button size="small" type="primary" icon="el-icon-search" @click="onLcrdocButtxmsel">
13
             {{$t('lttp.CF000250')}}
孟冬雪 committed
14 15 16 17 18 19
        </c-button>
       </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
20
import commonProcess from "~/mixin/commonProcess";
孟冬雪 committed
21 22 23 24 25 26
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Lttopn/Event"

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

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

    }
}
</script>
<style>

</style>